libuser-0.60~dfsg/0000755000175000017500000000000012226342606014075 5ustar tzafrirtzafrirlibuser-0.60~dfsg/ChangeLog0000644000175000017500000035722312226342567015671 0ustar tzafrirtzafrir2013-10-12 Miloslav Trmač * configure.ac: Release 0.60. * NEWS: Update. * po/*: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. * apps/luserdel.c (main) * python/admin.c (libuser_admin_remove_home): Use lu_homedir_remove_for_user() instead of looking up LU_HOMEDIRECTORY manually. * lib/error.h (lu_status): New value lu_error_homedir_not_owned. * lib/error.c (lu_strerror, lu_error_is_error): Support lu_error_homedir_not_owned. * lib/fs.c (remove_subdirectory): New parameter required_toplevel_uid. All users updated. (homedir_remove_for_user, lu_homedir_remove_for_user) (lu_homedir_remove_for_user_if_owned): New functions. * lib/fs.h (lu_homedir_remove_for_user) (lu_homedir_remove_for_user_if_owned): New declarations. * docs/reference/libuser-sections.txt: Add lu_homedir_remove_for_user and lu_homedir_remove_for_user_if_owned. * python/admin.c (libuser_admin_remove_home_if_owned): New function. (libuser_admin_methods): New entry for removeHomeIfOwned. * tests/fs_test.py (main): New option --remove-if-owned. * tests/fs_test: Test lu_homedir_remove_for_user_if_owned(). * python/modules.txt: Document createHome, moveHome, removeHome, removeHomeIfOwned, createMail, removeMail. Based on a smaller patch by Robin Hack . * lib/user.c (lu_default_int): Precompute the replacement strings instead of computing it for each key. This is a little faster, and more importantly, we can be sure that the %d replacement value will be the same for all keys. * lib/util.c (lu_util_shadow_current_date): Rename to... * lib/util.c (lu_util_shadow_current_date_or_minus_1): ... this. Return -1 if the time is not available, or if the time would result in special-cased LU_SHADOW* values. All users updated. 2013-09-20 Miloslav Trmač * libuser.pc.in: Use Libs.private for @CRYPT_LIBS@, Requires.private for gmodule-no-export-2.0. glib-2.0 and gobject-2.0 stay in Requires: because applications usually need both of them, and there are known cases of applications that don't ask pkg-config for them explicitly. (We might consider removing gobject-2.0 if all users use the non-GValueArray helpers; removing glib-2.0 is pointless.) 2013-07-08 Miloslav Trmač * docs/reference/Makefile.am (AUTOMAKE_OPTIONS): Workaround a bug in automake-1.13-4. * configure.ac: Update gettext version, which avoids autoconf warnings. * configure.ac: Use AM_PROG_AR to shut up automake. This required moving AC_USE_SYSTEM_EXTENSIONS up. 2013-06-28 Miloslav Trmač * tests/fs_test: Skip the test if fakeroot is not available. * .tx/config: Update configuration for hosted Transifex changes. 2013-03-28 Miloslav Trmač * configure.ac: Release 0.59. * NEWS: Update. * po/*: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. (EXTRA_DIST): Fix a typo that broke (make distcheck). * lib/user_private.h (lu_util_fscreate_from_fd): Fix the non-SELinux macro. * tests/fs_test: Create temporary files only in a temporary directory. 2013-03-26 Miloslav Trmač * lib/fs.c (lu_homedir_populate): Fix typo in docstring. Noticed by Viktor Hercinger . 2013-03-22 Miloslav Trmač * tests/fs_test: Set umask because it affects test output. Patch by Viktor Hercinger . 2013-02-20 Miloslav Trmač * configure.ac: Enable large file support, in particular to enable working with 64-bit inode numbers. 2013-02-09 Miloslav Trmač * lib/fs.c (struct copy_access_options): Remove member ignore_eexist. (copy_symlink, copy_regular_file, lu_copy_dir_and_close): Remove the possibility to ignore EEXIST, always fail on pre-existing contents. (lu_homedir_populate): Incompatible change: Refuse to populate pre-existing directories. (lu_homedir_move): Stop setting access_options.ignore_eexist. * tests/fs_test.py (main): Beautify output on createHome failure to help checking the output. * tests/fs_test: Fix mv2_output check. Test that attempts to populate a pre-existing home directory are refused. 2013-02-08 Miloslav Trmač * lib/fs.c (copy_regular_file): Rename from... (copy_regular_file_and_close): ... this, and stop closing src_fd; we don't really need to use this irregular model here. (copy_dir_entry): Update. * lib/fs.c (lu_homedir_populate, lu_homedir_move) (lu_nscd_flush_cache, lu_mail_spool_create) (lu_mail_spool_remove): These functions are public API, add g_return_*_if_fail() checks for input parameters. * lib/fs.c (copy_symlink): Fix comments. * lib/fs.c (copy_symlink, copy_regular_file_and_close) (copy_dir_entry, lu_homedir_copy, lu_homedir_populate) (mail_spool_path, lu_mail_spool_remove): Add LU_ERROR_CHECK calls. * lib/fs.c (copy_symlink, copy_regular_file_and_close): Use simpler parameter names. * lib/fs.c (copy_dir_entry): Split from ... (lu_copy_dir_and_close): ... to simplify handling of src_path_buf and dest_path_buf. * lib/fs.c (lu_copy_dir_and_close, lu_homedir_copy): Use GString buffers to build paths, removing the PATH_MAX limit and reducing O(N^2) memory use to O(N). * lib/fs.c (remove_subdirectory, lu_homedir_remove): Use a single GString to build all paths, removing the PATH_MAX limit and reducing O(N^2) memory use to O(N). * lib/fs.c (lu_copy_dir_and_close): Simplify the control flow a little. * lib/fs.c (copy_symlink, copy_regular_file_and_close): Split from ... (lu_copy_dir_and_close): ... this. 2013-02-04 Miloslav Trmač * configure.ac: Define GLIB_VERSION_MIN_REQUIRED to shut up warnings about GValueArray being deprecated. * lib/common.c: #include first, to let the GLIB_VERSION_MIN_REQUIRED take effect. * configure.ac: Rename from ... * configure.in: ... the obsolete name. * configure.in: Enable system extensions, in particular the secure_getenv() declaration. Check for secure_getenv() in addition to __secure_getenv(). * lib/config.c: Use secure_getenv() if __secure_getenv() is not available, abort build if neither is available. Patch by Viktor Hercinger . 2012-12-20 Miloslav Trmač * apps/lnewusers.c (main) * apps/luseradd.c (main): Only set the user's password after the home directory is created. * lib/fs.c (struct copy_access_options): New member ignore_eexist. (lu_copy_dir_and_close): Use access_options->ignore_eexist. (lu_homedir_populate, lu_homedir_move): Set access_options.ignore_eexist. * tests/fs_test.py (main): Don't output a full traceback if moveHome fails. * tests/fs_test: Test that moving onto an existing directory is prohibited. * lib/fs.c (lu_copy_dir_and_close): Only set the ownership and mode of newly created files after the content is copied. This is better because 1) write(3) is allowed to reset the S_ISUID and S_ISGID bits, and 2) if write() didn't reset the bits, having a set-uid/set-gid executable with partial content might be a security risk. 2012-12-13 Miloslav Trmač * tests/fs_test: Add tests for lu_homedir_populate() and lu_homedir_move(). Make sure even inaccessible files are removed on exit. Actually test code from the current build instead of the system installation. Make the existing tests locale-independent. * tests/fs_test.py: New modes --move and --populate. * tests/fs_test: Check the final situation more thoroughly. * tests/fs.conf.in * tests/fs_test * tests/fs_test.py: New files. * Makefile.am (TESTS): Add tests/fs_test. (EXTRA_DIST): Add tests/fs_test and dependencies. 2012-12-11 Miloslav Trmač * lib/fs.c (lu_copy_dir_and_close): Don't unnecessarily ftruncate() a file we just created. * lib/fs.c (lu_copy_dir_and_close): Only make the directory accessible to the target user after all work in it is done. Still doesn't handle pre-existing directories. 2012-12-08 Miloslav Trmač * lib/fs.c (lu_homedir_copy): Allow src_dir to be a symlink again. This fixes an API incompatibility. * lib/fs.c (lu_copy_dir_and_close): Rename again from... (lu_homedir_copy_and_close): ... this. (lu_homedir_copy): New helper function. (lu_homedir_populate, lu_homedir_move): Simplify by using the new lu_homedir_copy(). Better document security assumptios. * lib/fs.c (copy_access_options): Rename member preserve_contexts to preserve_source. Document that other fields apply only if !preserve_source. (uid_for_copy): Implement preserve_source. Fix a spectacular typo. (gid_for_copy, mode_for_copy): Implement preserve_srouce. (lu_homedir_copy_and_close, (lu_homedir_populate): Update for renamed field preserve_source. (lu_homedir_move): Update for renamed field preserve source. This also means that while moving the directory we do not override the original owner in the copy, fixing a security hole (the user could have a had hardlink to a file they couldn't read, and we would helpfully create a copy owned by them). * lib/fs.c (copy_access_options): Fix description of member umask. (mode_for_copy): New helper function. (lu_homedir_copy_and_close): Use mode_for_copy(). * lib/fs.c (lu_homedir_copy_and_close): Rename from ... (lu_homedir_copy) ... this. When scanning a directory, open() each entry and then fstat() instead of fstatat() + possible openat(), which is racy. (lu_homedir_populate, lu_homedir_move): Update for lu_homedir_copy_and_close(). * lib/user_private.h (lu_util_fscreate_from_fd) (lu_util_fscreate_from_lfile): New declarations and fallback macros. * lib/util.c (lu_util_fscreate_from_fd, lu_util_fscreate_from_lfile): New functions. * lib/fs.c (lu_homedir_copy): Set SELinux context immediately before creating a new file, based on the file descriptor we will be using, removing another path lookup race and avoiding the top-level-directory special case. Use lu_util_fscreate_from_lfile() for symbolic links, fixing a bug. (lu_homedir_populate, lu_homedir_move): Stop setting SELinux contexts manually. * lib/fs.c (lu_homedir_copy): Modify file times through existing descriptors if possible. * lib/fs.c (lu_homedir_copy): When creating copies, start with minimal permissions, set owner, then set the desired permissions. Thus, start preserving S_IS[UG]ID flags on copied regular files, and make sure they aren't even momentarily undesirably acessible. * lib/fs.c (copy_access_options): Drop member is_toplevel again. (gid_for_copy): Don't use options->is_toplevel. (lu_homedir_populate): Don't make a special case for the top-level directory: just use the mode of the source directory for the copy, and the same rules for the group. All users updated. (lu_homedir_populate): Manually set ownership and group to handle the special case of a new home directory. * lib/fs.c (copy_access_options): New members is_toplevel, uid and gid. (uid_for_copy, gid_for_copy): New functions. (lu_homedir_copy): Use access_options to pass around ownership information. All users updated, no change in semantics. * lib/fs.c (copy_access_options): New structure. (lu_homedir_copy): Use struct copy_access_options for keep_contexts and umask. All users updated, no change in semantics. * lib/fs.c (lu_homedir_copy): Use a (parent FD, entry name) pair when creating the existing directory to start avoiding symlink races. Start preserving nanosecond timestamp in the process. * lib/fs.c (lu_homedir_copy): Rename path to dest_ent_path for consistency. * lib/fs.c (lu_homedir_copy): Use a (parent FD, entry name) pair when reading the existing directory to avoid symlink races. * lib/fs.c (lu_homedir_copy): Rename srcpath to src_ent_path to avoid confusion with names added in the future. * lib/fs.c (remove_subdirectory): Split from lu_homedir_remove(). Use openat(), fstatat(), and unlinkat() to avoid symlink races. 2012-11-29 Miloslav Trmač * lib/util.c (fill_urandom): Don't use g_return_val_if_fail(), glib can be configured so that it does nothing. * lib/user.c (lu_dispatch): Add a comment about unreachable code. 2012-11-21 Miloslav Trmač * tests/default_pw_test: * tests/ldap_test: Use 1024-bit RSA keys instead of 512-bit, to run correctly in FIPS mode. 2012-11-08 Miloslav Trmač * lib/entity.h (LU_SHADOWLASTCHANGE, LU_SHADOWMIN, LU_SHADOWMAX) (LU_SHADOWWARNING): Document that -1 should be treated the same as a missing value. * modules/files.c (format_shadow): Treat most missing fields as default value "-1", and suppress it on output, to stop deviating from shadow(5). * apps/lchage.c (read_ndays): Move lu_ent_get() call from the callers. Handle missing value and value -1 equivalently. All callers updated. (main): Always print all fields, even if the account attributes are missing. Output missing minimum password age, and missing passwod warning period, as 0. Output missing maximum password age as "None". Output missing password inactivity period as "Never". Output missing last password change and missing account expiration date as "Never". Consistently report "Must change password on next login" in all fields affected by this setting, and "Never" if the respective password expiration feature is disabled. * apps/lchage.1 (--date): Document values 0 and -1. (--inactive): Document value -1. (--mindays): Document value -1, and interaction with --maxdays. (--maxdays): Document value -1, don't recommend 99999 to disable password expiration. (--warndays): Document values 0 and -1. (NOTES): New section. * tests/files_test: Test also empty sp_lstchg. * tests/files_test.py (Tests.testUserLookupName2) (Tests.testUserMod4): Update expected values to follow lib/entity.h and shadow(5), and for updated empty_user contents. * tests/utils_test (lchage): Test handling of -d 0, and handling of -1 for all fields. * tests/utils_shadow: Verify that -1 values are correctly suppressed on output. * tests/utils_group * tests/utils_gshadow * tests/utils_passwd: Add user4_2 added by tests/utils_test. * configure.in: Release 0.58. * NEWS: Update. * po/*: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. 2012-11-01 Miloslav Trmač * lib/entity.h (LU_USERPASSWORD, LU_GROUPPASSWORD, LU_SHADOWPASSWORD): Document that users shouldn't modify these values directly. 2012-10-25 Miloslav Trmač * lib/user.c (lu_default_int): Simplify. We don't need to clear previous values because the entity is completely wiped at the beginning of the function. * lib/entity.c (lu_ent_set_long_int, lu_ent_set_long) (lu_ent_set_long_current): New functions. * lib/entity.h (lu_ent_set_long, lu_ent_set_long_current): New declarations. * docs/reference/libuser-sections.txt: Add lu_ent_set_long and and lu_ent_set_long_current. * apps/lchage.c (main) * lib/common.c (lu_common_suser_default) * lib/util.c (lu_util_update_shadow_last_change): Use lu_ent_set_long(). * apps/lgroupmod.c (main): Drop unnecessary variable. * modules/ldap.c (lu_ldap_lookup, lu_ldap_user_default): Use the new interfaces instead of manipulating GValues manually. * lib/entity.c (lu_ent_set_id_int, lu_ent_set_id) (lu_ent_set_id_current): New functions. * lib/entity.h (lu_ent_set_id, lu_ent_set_id_current): New declarations. * docs/reference/libuser-sections.txt: Add lu_ent_set_id and and lu_ent_set_id_current. * apps/lgroupadd.c (main) * apps/lgroupmod.c (main) * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/lusermod.c (main) * lib/user.c (lu_default_int): Use lu_ent_set_id(). * lib/entity.c (lu_ent_set_string_int, lu_ent_set_string) (lu_ent_set_string_current): New functions. * lib/entity.h (lu_ent_set_string, lu_ent_set_string_current): New declarations. * docs/reference/libuser-sections.txt: Add lu_ent_set_string and and lu_ent_set_string_current. * apps/lchfn.c (main) * apps/lchsh.c (main) * apps/lgroupmod.c (main) * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/lusermod.c (main) * lib/common.c (lu_common_user_default, lu_common_group_default) (lu_common_suser_default) * lib/user.c (lu_default_int) * modules/files.c (lu_shadow_user_add_prep) (lu_shadow_group_add_prep): Use lu_ent_set_string(). * lib/entity.c (lu_ent_set_prepare): Split from lu_ent_set_int(). * modules/files.c (module_filename): New function. (generic_lookup, generic_add, generic_mod, generic_del) (generic_lock, generic_is_locked, generic_setpass) (lu_files_enumerate, lu_files_users_enumerate_by_group) (lu_files_groups_enumerate_by_user, lu_files_enumerate_full) (lu_files_uses_elevated_privileges) (lu_shadow_uses_elevated_privileges): Use module_filename(). * modules/files.c (generic_lock, generic_is_locked) (generic_setpass): Use `name' instead of `namestring' for better readability. * modules/ldap.c (lu_ldap_del, lu_ldap_handle_lock) (lu_ldap_is_locked, lu_ldap_setpass): Use `name' instead of `name_string' for better readability. * lib/entity.c (lu_ent_get_first_value_strdup_int) (lu_ent_get_first_value_strdup) (lu_ent_get_first_value_strdup_current): New functions. * lib/entity.h (lu_ent_get_first_value_strdup) (lu_ent_get_first_value_strdup_current): New declarations. * docs/reference/libuser-sections.txt: Add lu_ent_get_first_value_strdup and lu_ent_get_first_value_strdup_current. * apps/lchfn.c (main) * apps/lchsh.c (main) * apps/lusermod.c (main) * lib/fs.c (mail_spool_path) * lib/user.c (merge_ent_array_duplicates) * modules/files.c (lu_shadow_user_lookup_id) (lu_shadow_group_lookup_id, generic_mod, generic_del) (generic_lock, generic_is_locked, generic_setpass) * modules/ldap.c (get_ent_adds, lu_ldap_del) (lu_ldap_handle_lock, lu_ldap_is_locked, lu_ldap_setpass) * modules/sasldb.c (lu_sasldb_user_is_locked): Use lu_ent_get_first_value_strdup() and lu_ent_get_first_value_strdup_current(). * apps/luserdel.c (main): Don't use the same entity for groups and users (potentially looking up LU_HOMEDIR_COPY in the group data). * lib/entity.c (lu_ent_get_first_id) (lu_ent_get_first_id_current): Fix value returned on invalid arguments. * lib/entity.c (lu_ent_get_first_current_string): Rename to ... (lu_ent_get_first_string_current): ... this. All references updated. (lu_ent_get_first_current_id): Rename to ... (lu_ent_get_first_id_current): ... this. All references updated. 2012-10-24 Miloslav Trmač * lib/entity.c (lu_ent_get_first_id_int, lu_ent_get_first_id) (lu_ent_get_first_current_id): New functions. Fix some comments. * lib/entity.h (lu_ent_get_first_id, lu_ent_get_first_current_id): New declarations. * docs/reference/libuser-sections.txt: Add lu_ent_get_first_id and lu_ent_get_first_current_id. * apps/lgroupmod.c (main) * apps/lid.c (do_full) * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/luserdel.c (main) * lib/fs.c (lu_mail_spool_create) * lib/user.c (extract_id) * python/admin.c (libuser_admin_create_home): Use lu_ent_get_first_id(). * lib/entity.c (lu_ent_get_first_string_int) (lu_ent_get_first_string, lu_ent_get_first_current_string): New functions. * lib/entity.h (lu_ent_get_first_string) (lu_ent_get_first_current_string): New declarations. * docs/reference/libuser-sections.txt: Add lu_ent_get_first_string and lu_ent_get_first_current_string. * apps/lid.c (do_full) * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/luserdel.c (main) * apps/lusermod.c (main) * lib/user.c (extract_name, lu_dispatch, lu_user_add) * python/admin.c (libuser_admin_create_home) (libuser_admin_remove_home, libuser_admin_move_home): Use lu_ent_get_first_string() and lu_ent_get_first_current_string(). * lib/fs.h (LU_NSCD_CACHE_PASSWD, LU_NSCD_CACHE_GROUP): New macros. * docs/reference/libuser-sections.txt: Add LU_NSCD_CACHE_GROUP and LU_NSCD_CACHE_PASSWD. * apps/lchage.c (main) * apps/lchfn.c (main) * apps/lchsh.c (main) * apps/lgroupadd.c (main) * apps/lgroupdel.c (main) * apps/lgroupmod.c (main) * apps/lnewusers.c (main) * apps/lpasswd.c (main) * apps/luseradd.c (main) * apps/luserdel.c (main) * apps/lusermod.c (main): Use the LU_NSCD_CACHE_GROUP and LU_NSCD_CACHE_PASSWD macros. * apps/lusermod.c (main): Don't mark data to be freed as "const". * apps/apputil.c (current_umask, lu_homedir_copy, lu_homedir_populate) (lu_homedir_remove, lu_homedir_move, lu_nscd_flush_cache) (mail_spool_path, lu_mail_spool_create, lu_mail_spool_remove): Move... * lib/fs.c (current_umask, lu_homedir_copy, lu_homedir_populate) (lu_homedir_remove, lu_homedir_move, lu_nscd_flush_cache) (mail_spool_path, lu_mail_spool_create, lu_mail_spool_remove): ... into this new file. Add documentation. * apps/apputil.h (lu_homedir_populate, lu_homedir_move) (lu_homedir_remove, lu_nscd_flush_cache, lu_mail_spool_create) (lu_mail_spool_remove): Move declarations... * lib/fs.h (lu_homedir_populate, lu_homedir_move, lu_homedir_remove) (lu_nscd_flush_cache, lu_mail_spool_create, lu_mail_spool_remove): ... into this new file. * lib/user.h: Include lib/fs.h. * Makefile.am (pkginclude_HEADERS): Add lib/fs.h. (lib_libuser_la_SOURCES): Add lib/fs.c. (apps_libapputil_la_CPPFLAGS): Move NSCD definition.... (lib_libuser_la_CPPFLAGS): ... here. (apps_lchage_LDADD, apps_lgroupadd_LDADD, apps_lgroupdel_LDADD) (apps_lgroupmod_LDADD, apps_lnewusers_LDADD) (apps_luseradd_LDADD, apps_luserdel_LDADD, apps_lusermod_LDADD) (python_libusermodule_la_LIBADD) (samples_homedir_LDADD): Don't link to apps/libapputil.la any more. * docs/reference/libuser-sections.txt: Add a section for lib/fs.c. * docs/reference/libuser-docs.sgml: Include fs documentation. * apps/apputil.c (mail_spool_path, lu_mail_spool_create) (lu_mail_spool_remove): Add error reporting using struct lu_error. All users updated. * apps/apputil.h (lu_mail_spool_create, lu_mail_spool_remove): Update declarations. * apps/apputil.c (lu_mail_spool_create, lu_mail_spool_remove): Split... (lu_mailspool_create_remove): ... this. All users updated. * apps/apputil.h (lu_mail_spool_create, lu_mail_spool_remove): New declarations. (lu_mailspool_create_remove): Remove declaration. * python/admin.c (libuser_admin_delete_user): Instead of creating a mail spool, remove it. * apps/apputil.c (mail_spool_path): Split from ... (lu_mailspool_create_remove): ... here. * tests/valgrind.supp: Add popt suppressions. * apps/lnewusers.c (main) * apps/lusermod.c (main): Fix some memory leaks. * tests/valgrind.supp: Add popt suppressions. * tests/utils_test: Refer to utilities using a full path to allow libtool --mode=execute (and hence valgrind) to work. * apps/lgroupmod.c (main) * apps/lusermod.c (main): Fix a memory leak. * apps/lchage.c (main): * apps/lchfn.c (main): * apps/lchsh.c (main): * apps/lgroupadd.c (main): * apps/lgroupdel.c (main): * apps/lgroupmod.c (main): * apps/lid.c (main): * apps/lnewusers.c (main): * apps/lpasswd.c (main): * apps/luseradd.c (main): * apps/luserdel.c (main): * apps/lusermod.c (main): * apps/luseradd.c (main): Free popt context after use. * tests/valgrind.supp: One more glibc suppression. * modules/ldap.c (get_ent_adds): Fix a memory leak. * Makefile.am (VG_EXECUTION): Use a more practical valgrind configuration. * tests/valgrind.supp: Add generic NSS initialization suppression. * tests/valgrind.supp: Also cover SHA-256 in glibc suppression. * python/ent.c (libuser_entity_getattrlist) (libuser_entity_length): Fix memory leaks. * modules/files.c (lu_files_groups_enumerate_by_user): Fix two memory leaks. Simplify error handling a little. * python/libusermodule.c (dict_add_stolen_object) (dict_add_string): New functions. (initlibuser): Use dict_add_stolen_object() and dict_add_string() to avoid leaking references. * modules/ldap.c (lu_ldap_setpass): Fix a memory leak. * tests/valgrind.supp: Add librpm and glibc suppressions. * tests/config_test.c (start, verify_var, main): Fix memory leaks. * tests/valgrind.supp: Simplify and generalize g_type_init suppression. * tests/config_test.sh: * tests/default_pw_test: * tests/files_test: * tests/ldap_test: * tests/pwhash_test: * tests/utils_test: Support $VALGRIND. * Makefile.am (VG_EXECUTION, VG_ENVIRONMENT): New variables. (EXTRA_DIST): Ship tests/valgrind.supp. (valgrind): New target. 2012-10-23 Miloslav Trmač * apps/lid.c (do_nameonly, do_full): Specialize from do_id. Caller updated. (do_full): Use lu_*_enumerate_by_*_full(). * apps/lid.c (do_id): Remove entity existence verification. Removed parameter lookup_name. (main): Do entity existence verification here. * apps/lgroupmod.c (main): Use lu_users_enumerate_by_group_full() instead of looking up the full data manually. * apps/lusermod.c (main): Use lu_groups_enumerate_by_user_full() instead of looking up the full data manually. * lib/user_private.h (LU_MODULE_VERSION): Increase. (lu_module): Remove members users_enumerate_by_group_full and groups_enumerate_by_user_full. * lib/modules.c (load_one_module): Don't require members users_enumerate_by_group_full and groups_enumerate_by_user_full. * lib/user.c (lu_dispatch_id): Remove values users_enumerate_by_group_full and groups_enumerate_by_user_full. (run_single, run_list): Remove no longer used handling of users_enumerate_by_group_full and groups_enumerate_by_user_full. * modules/files.c (lu_files_users_enumerate_by_group_full) (lu_files_groups_enumerate_by_user_full) (lu_shadow_users_enumerate_by_group_full) (lu_shadow_groups_enumerate_by_user_full): Remove placeholders. (libuser_files_init, libuser_shadow_init): Don't initialize members users_enumerate_by_group_full and groups_enumerate_by_user_full. * modules/ldap.c (lu_ldap_users_enumerate_by_group_full) (lu_ldap_groups_enumerate_by_user_full): Remove functions. (libuser_ldap_init): Don't initialize members users_enumerate_by_group_full and groups_enumerate_by_user_full. * modules/sasldb.c (lu_sasldb_users_enumerate_by_group_full) (lu_sasldb_groups_enumerate_by_user_full): Remove placeholders. (libuser_sasldb_init): Don't initialize members users_enumerate_by_group_full and groups_enumerate_by_user_full. * tests/files_test.py (Tests.testUsersEnumerateByGroupFull1) (Tests.testUsersEnumerateByGroupFull2) (Tests.testUsersEnumerateByGroupFull3) (Tests.testGroupsEnumerateByUserFull1) (Tests.testGroupsEnumerateByUserFull2) (Tests.testGroupsEnumerateByUserFull3): New tests. * lib/user.c (lu_users_enumerate_by_group_full) (lu_groups_enumerate_by_user_full): Instead of dispatching into the modules to get full data, only gather names and look up by these names in all modules. 2012-10-19 Miloslav Trmač * lib/user_private.h (lu_util_append_values): New declaration. * lib/util.c (lu_util_append_values): New function. * lib/entity.c (lu_ent_set_int) * lib/user.c (merge_ent_array_duplicates, run_list) * modules/ldap.c (lu_ldap_users_enumerate_by_group) (lu_ldap_groups_enumerate_by_user): Use lu_util_append_values(). 2012-10-18 Miloslav Trmač * modules/ldap.c (lu_ldap_users_enumerate_by_group) (lu_ldap_groups_enumerate_by_user): Remove an unnecessary condition. * modules/ldap.c (lu_ldap_users_enumerate_by_group_full): Silently ignore errors when looking up group members, instead of returning a non-error return value with error indication set. * modules/ldap.c (lu_ldap_users_enumerate_by_group) (lu_ldap_users_enumerate_by_group_full) (lu_ldap_groups_enumerate_by_user): Use `ret' instead of `primaries' as the variable name, it contains both primary and secondary values. * modules/ldap.c (lu_ldap_groups_enumerate_by_user_full): Implement. * tests/ldap_test.py (Tests.testGroupsEnumerateByUserFull1) (Tests.testGroupsEnumerateByUserFull2) (Tests.testGroupsEnumerateByUserFull3): New tests. 2012-10-08 Miloslav Trmač * docs/libuser.conf.5.in ([ldap]): Warn against storing a password in the system-wide file. 2012-09-24 Miloslav Trmač * configure.in: Release 0.57.7. * NEWS: Update. * po/*: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. * modules/ldap.c (lu_ldap_users_enumerate_by_group_full): Implement. * tests/ldap_test.py (Tests.testUsersEnumerateByGroupFull1) (Tests.testUsersEnumerateByGroupFull2) (Tests.testUsersEnumerateByGroupFull3): New tests. * python/common.h: Declare convert_ent_array_pylist. * python/ent.c (convert_ent_array_pylist): New function. * python/admin.c (libuser_admin_enumerate_users_full) (libuser_admin_enumerate_groups_full) (libuser_admin_enumerate_users_by_group_full) (libuser_admin_enumerate_groups_by_user_full): Use convert_ent_array_pylist (also fixes a crash on error). (libuser_admin_enumerate_groups_by_user_full): Remove a duplicated line. * lib/user.c (convert_user_name_to_id, convert_group_name_to_id): Set *error if the entity was not found. (lu_user_lookup_name, lu_group_lookup_name, lu_user_lookup_id) (lu_group_lookup_id): Document that error is not set if the entity was not found. 2012-09-04 Miloslav Trmač * apps/luseradd.c (main): Free groupEnt. 2012-07-30 Miloslav Trmač * lib/user.h (lu_users_enumerate_by_group_full) (lu_groups_enumerate_by_user_full): New declarations. * lib/user.c (lu_users_enumerate_by_group_full) (lu_groups_enumerate_by_user_full): Uncomment functions. Use a simple group or user name instead of a pattern. Add documentation. * docs/reference/libuser-sections.txt: Add lu_users_enumerate_by_group_full and lu_groups_enumerate_by_user_full. * python/admin.c (libuser_admin_enumerate_users_by_group_full) (libuser_admin_enumerate_groups_by_user_full): Uncomment and fix functions. (libuser_admin_methods): Uncomment enumerateUsersByGroupFull and enumerateGroupsByUserFull. * python/modules.txt: Document enumerateUsersByGroupFull and enumerateGroupsByUserFull. 2012-06-03 Miloslav Trmač * Makefile.am (AM_DISTCHECK_CONFIGURE_FLAGS): Rename from DISTCHECK_CONFIGURE_FLAGS to follow automake-1.11.3. 2012-03-22 Miloslav Trmač * configure.in: Release 0.57.6. * NEWS: Update. * po/*: Update. * po/libuser.pot: Update for Transifex. * apps/lchage.c (main) * apps/lgroupadd.c (main) * apps/lgroupmod.c (main) * apps/lnewusers.c (main) * apps/lpasswd.c (main) * apps/luseradd.c (main) * apps/lusermod.c (main): Improve --help messages. * apps/lchage.c (main) * apps/lchfn.c (main) * apps/lchsh.c (main) * apps/lgroupadd.c (main) * apps/lgroupdel.c (main) * apps/lgroupmod.c (main) * apps/lid.c (main) * apps/lnewusers.c (main) * apps/lpasswd.c (main) * apps/luseradd.c (main) * apps/luserdel.c (main) * apps/lusermod.c (main): Mark --help messages for translation. * modules/ldap.c (connect_server): Don't try to use STARTTLS for ldapi: URLs. Based on a patch by . * docs/libuser.conf.5.in: Document that TLS is never used for ldapi:. * tests/ldap_test: Wait for slapd exit before returning from the test. * tests/wait_for_slapd_exit.c * tests/wait_for_slapd_start.c: New files. * tests/default_pw_test * tests/ldap_test: Use tests/wait_for_slapd_exit and tests/wait_for_slapd_start, making the waiting both shorter and more precise. * tests/test_utils.sh: Remove. * Makefile.am (check_PROGRAMS): Add tests/wait_for_slapd_exit and tests/wait_for_slapd_start. (tests_wait_for_slapd_exit_LDFLAGS) (tests_wait_for_slapd_start_LDFLAGS): New definitions. (EXTRA_DIST): Don't ship tests/test_utils.sh any more. * Makefile.am (noinst_PROGRAMS): Move tests/alloc_port ... (check_PROGRAMS): ... here. There's no benefit in building it when the tests are not run. 2012-03-03 Miloslav Trmač * configure.in: Release 0.57.5. * NEWS: Update. * po/*: Update. 2012-02-10 Miloslav Trmač * Makefile.am (EXTRA_DIST): Add tests/test_utils.sh. * configure.in: Release 0.57.4. * NEWS: Update. * po/*: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. * po/libuser.pot: Update for Transifex. 2012-02-08 Miloslav Trmač * lib/util.c (lu_util_line_get_matchingx): Fix field search to not continue into the following line. * lib/util.c (lu_util_field_write): Cleanup field search. * lib/util.c (lu_util_field_write): Report an error when the entry is not found early to simplify the code. * lib/util.c (lu_util_field_read): Cleanup field search. * lib/util.c (lu_util_field_read): Simplify search for the matching entry. * lib/util.c (lu_util_field_read): Report an error when the entry is not found. * lib/util.c (lu_util_field_write): Fix a memory leak. * lib/util.c (lu_util_field_read): Simplify testing for end of file. * lib/util.c (lu_util_field_read): Simplify redundant error handling. * lib/util.c (lu_util_line_get_matchingx): Cleanup transition between lines. * lib/util.c (lu_util_line_get_matchingx): Cleanup field search. * lib/util.c (lu_util_line_get_matchingx): Cleanup return value handling. * lib/util.c (lu_util_line_get_matchingx): Simplify testing for end of file. * lib/util.c (lu_util_line_get_matchingx): Cleanup end of line handling. * lib/util.c (lu_util_line_get_matchingx): Cleanup field testing. * lib/util.c (lu_util_line_get_matchingx): Rename a confusing variable `buf' to `line'. * lib/util.c (lu_util_line_get_matchingx): Don't access memory after the mmap()ed area. * lib/util.c (lu_util_field_read): Don't access memory after the mmap()ed area if the file doesn't end with a newline. 2012-02-06 Miloslav Trmač * python/admin.c (libuser_admin_wrap_boolean): Fix error handling. * lib/user.c (run_single): Replace an unreachable return with a g_assert_not_reached (). * lib/error.c (lu_error_is_success, lu_error_is_warning) (lu_error_is_error): Remove unreachable code. * lib/config.c (process_line): Remove redundant code. * lib/util.c (lu_util_lock_obtain): Don't corrupt errno before using it, simplify. * modules/files.c (lu_files_create_backup): Handle a fchmod () failure. * lib/config.c (handle_default_useradd_key): Fix a check for invalid GID number. * apps/lpasswd.c (main): Handle strdup () allocation failure. * python/misc.c (libuser_admin_python_prompter): Handle an allocation failure. * lib/util.c (lu_util_field_read): Simplify code. * lib/util.c (lu_util_field_write): Simplify a condition. * lib/util.c (lu_util_field_write): Add FIXME. * modules/files.c (lu_files_create_backup): Drop some code with unclear purpose (probably supposed to check for a symlink, but not really), avoid using uinitiazed data. * lib/util.c (lu_util_fscreate_save): Make sure *ctx is initialized so that lu_util_fscreate_restore() callers don't handle an undefined value. * lib/getdate.y (LookupWord): Correctly cast an argument to tolower (). 2011-10-06 Miloslav Trmač * COPYING * apps/apputil.c * apps/apputil.h * apps/lchage.1 * apps/lchage.c * apps/lchfn.1 * apps/lchfn.c * apps/lchsh.1 * apps/lchsh.c * apps/lgroupadd.1 * apps/lgroupadd.c * apps/lgroupdel.1 * apps/lgroupdel.c * apps/lgroupmod.1 * apps/lgroupmod.c * apps/lid.1 * apps/lid.c * apps/lnewusers.1 * apps/lnewusers.c * apps/lpasswd.1 * apps/lpasswd.c * apps/luseradd.1 * apps/luseradd.c * apps/luserdel.1 * apps/luserdel.c * apps/lusermod.1 * apps/lusermod.c * docs/libuser.conf.5.in * lib/common.c * lib/config.c * lib/config.h * lib/entity.c * lib/entity.h * lib/error.c * lib/error.h * lib/internal.h * lib/misc.c * lib/modules.c * lib/prompt.c * lib/prompt.h * lib/scache.c * lib/user.c * lib/user.h * lib/user_private.h * lib/util.c * modules/files.c * modules/krb5.c * modules/ldap.c * modules/sasldb.c * python/admin.c * python/ent.c * python/libusermodule.c * python/misc.c * samples/enum.c * samples/field.c * samples/homedir.c * samples/lookup.c * samples/prompt.c * samples/testuser.c * tests/alloc_port.c * tests/config_test.c * tests/config_test.sh * tests/default_pw_test * tests/files_test * tests/ldap_test * tests/pwhash_test * tests/test_utils.sh * tests/utils_test: Update FSF address. 2011-10-04 Miloslav Trmač * tests/test_utils.sh: New file. * tests/default_pw_test * tests/ldap_test: Use common wait_for_slapd, also increasing the timeout to 30 seconds. * po/*.po (many): Mark an invalid translation as fuzzy. * configure.in: Release 0.57.3. * NEWS: Update. * po/*: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. * apps/apputil.c (current_umask): New function. (lu_homedir_copy): Preserve S_ISGID and other bits for directories. New parameter umask_value. All users updated. * python/admin.c (libuser_admin_get_first_unused_id_type): Read default start value from configuration. * tests/config_test.py: New file. * tests/config_test.sh (workdir): Run tests/config_test.py. * Makefile.am (EXTRA_DIST): Add tests/config_test.py * apps/lgroupadd.1: * apps/luseradd.1: Fix documentation of start of non-system ID values. * libuser.conf: Comment hard-coded "500" values. 2011-08-26 Miloslav Trmač * docs/reference/tmpl/config.sgml * docs/reference/tmpl/entity.sgml * docs/reference/tmpl/error.sgml * docs/reference/tmpl/libuser-unused.sgml * docs/reference/tmpl/prompt.sgml * docs/reference/tmpl/user.sgml * docs/reference/tmpl/value.sgml: Remove, all information is now stored in *.[ch]. * docs/reference/Makefile.am (setup-build-workaround.stamp, setup.stamp) (dist-hook): Remove workarounds necessary for tmpl in $(srcdir). * docs/reference/Makefile.am (HFILE_GLOB, CFILE_GLOB): Fill in. * docs/reference/tmpl/user.sgml: Move contents... * lib/misc.c: ... here and ... * lib/user.c: ... here. * docs/reference/tmpl/entity.sgml: Move contents... * lib/entity.c: ... here and ... * lib/entity.h: ... here. * docs/reference/tmpl/error.sgml: Move contents... * lib/error.c: ... here and ... * lib/error.h: ... here. * docs/reference/tmpl/value.sgml: Move contents... * lib/misc.c: ... here and ... * lib/user.h: ... here. * docs/reference/tmpl/config.sgml: Move contents... * lib/config.c: ... here, and update somewhat. * lib/config.h: Drop redundant documentation. * docs/reference/libuser-decl-list.txt * docs/reference/libuser-decl.txt * docs/reference/libuser.args * docs/reference/libuser.hierarchy * docs/reference/libuser.signals: Stop tracking generated files. * docs/reference/tmpl/prompt.sgml: Move contents... * lib/prompt.c: ... here. * lib/entity.h (lu_ent_t) * lib/error.h (lu_status_t, lu_error_t) * lib/user.h (lu_context_t, lu_entity_type_t): Mark with #ifndef LU_DISABLE_DEPRECATED. * docs/reference/Makefile.am (SCAN_OPTIONS): Recognize LU_DISABLE_DEPRECATED. * docs/reference/Makefile.am (TESTS): Uncomment to enable gtk-doc tests. * lib/user.h (struct lu_context): Document. (lu_context_t): Document, mark as deprecated. All users changed. * docs/reference/tmpl/user.sgml: Regenerate. * docs/reference/libuser-sections.txt: Add lu_context and lu_context_t. * lib/error.h (struct lu_error): Add a redundant declaration to let gtk-doc recognize existence of the type. * lib/error.h (lu_status_t): Split; should be marked as deprecated, but gtk-doc can't handle an enum typedef. All users changed. (struct lu_error): Add minimal documentation (fields not documented because gtk-doc doesn't find them). (lu_error_t): Document, mark as deprecated. All users changed. * docs/reference/tmpl/error.sgml: Regenerate. * docs/reference/libuser-sections.txt: Add lu_error and lu_error_t. * docs/reference/tmpl/entity.sgml (SECTION Long_Description): Move struct lu_ent documentation ... * lib/entity.h (struct lu_ent): ... here. (lu_ent_t): Document, mark as deprecated. All users changed. * docs/reference/libuser-sections.txt: Add lu_ent and lu_ent_t. * lib/prompt.h (lu_prompt): Workaround a gtk-doc parser bug, treating free_value as an external symbol. 2011-08-25 Miloslav Trmač * docs/reference/libuser-docs.sgml: Regenerate with gtk-doc 1.17. * docs/reference/Makefile.am: Update from gtk-doc 1.17. * docs/reference/Makefile.am (setup-build-workaround.stamp) (setup.stamp): Workaround incorrect gtk-doc handling of tmpl when $(builddir) != $(srcdir). (DOC_SOURCE_DIR): Workaround incorrect gtk-doc handling of sources when $(builddir) != $(srcdir). (dist-hook): Workaround references to $(build) instead of $(builddir). 2011-05-03 Miloslav Trmač * lib/user.c (run_list): Remove dead code. * lib/user.c (run_list): Use a better assertion. 2011-03-31 Miloslav Trmač * configure.in: Release 0.57.2. * NEWS: Update. * po/*: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. 2011-03-19 Miloslav Trmač * tests/alloc_port.c: New file. * Makefile.am (noinst_PROGRAMS): Add tests/alloc_port. (tests_alloc_port_LDFLAGS): New definition. * tests/default_pw_test: * tests/default_pw.conf.in (ldap/server) * tests/ldap_test: * tests/ldap.conf.in (ldap/server): Use a dynamically allocated port for the LDAP server. * tests/default_pw_test: * tests/ldap_test: Don't set up port 6360 for ldaps, it is not used. 2011-03-17 Miloslav Trmač * tests/config_test.c (verify_var): Call va_end(). * lib/config.c (process_line): Only search for '=' once. * modules/files.c (lu_files_create_backup): Handle lseek() failure. * lib/util.c (lu_util_line_get_matchingx): Handle lseek() failures. Only restore file position if we have actually altered it. * apps/lpasswd.c (main): Handle errors when reading the password from a supplied file descriptor. * apps/apputil.c (lu_homedir_copy): Don't leak a file descriptor on error. * modules/ldap.c (arrays_equal): Drop unnecessary checks. * lib/util.c (lu_util_field_write): Simplify: unless we return lu_error_search, we know line != NULL, and ret == TRUE a little below. This could be simplified further - the current function both reject lines which match but don't contain the specified field, and supports adding the field. * lib/user.c (lu_dispatch): Fix a pasto. 2011-03-04 Miloslav Trmač * .tx/config: New file. * po/libuser.pot: Add to prepare for Transifex. 2011-02-04 Miloslav Trmač * modules/files.c (line_read): Remove an unused variable. * modules/ldap.c (lu_ldap_fudge_objectclasses): Silence a warning. 2011-02-01 Miloslav Trmač * lib/misc.c (lu_value_get_id): Explicitly return LU_VALUE_INVALID_ID for LU_VALUE_INVALID_ID :) (with a warning, from now on). (lu_value_init_set_attr_from_string): Reject LU_VALUE_INVALID_ID as an id_t value. * modules/ldap.c (lu_ldap_setpass): Don't use "!!" (password missing) as an algorithm indicator to be preserved. Skip over '!' (account locked) when looking for the algorithm indicator. * tests/files_test.py (Tests.testUserSetpass1) (Tests.testUserSetpass2, Tests.testUserSetpass3) (Tests.testUserSetpass4, Tests.testGroupSetpass1) (Tests.testGroupSetpass2, Tests.testGroupSetpass3) (Tests.testGroupSetpass4): Verify that crypt_style is honored. * tests/ldap_test.py (Tests.testUserSetpass1) (Tests.testUserSetpass2, Tests.testGroupSetpass1) (Tests.testGroupSetpass2): Verify that the existing algorithm is preserved. (Tests.testUserSetpass3, Tests.testGroupSetpass3): Verify that crypt_style is honored. (Tests.testUserSetpass4, Tests.testUserSetpass5) (Tests.testGroupSetpass4, Tests.testGroupSetpass5): New tests. * tests/files_test.py (Tests.testUserSetpass4, Tests.testGroupSetpass4): Verify that the encrypted password value does not contain ':'. 2011-01-20 Miloslav Trmač * modules/ldap.c (get_ent_adds): Don't use empty gecos as a commonName value. * tests/ldap_test.py (Tests.testUserAdd7): New test. 2011-01-14 Miloslav Trmač * configure.in: Release 0.57.1. * NEWS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. * lib/modules.c (lu_modules_load): Fix handling of modules that report non-fatal errors. 2011-01-10 Miloslav Trmač * configure.in: Release 0.57. * NEWS: Update. * po/LINGUAS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. 2011-01-03 Miloslav Trmač * tests/default_pw_test * tests/default_pw_test.py * tests/default_pw.conf.in: New test. * Makefile.am (TESTS) (EXTRA_DIST): Add tests/default_pw.conf.in, tests/default_pw_test and tests/default_pw_test.py. * tests/ldap_test.py (Tests.testUserAdd1, Tests.testGroupAdd1): Verify default password value of newly created entries. * modules/ldap.c (lu_ldap_user_default): Use an LDAP-specific default for LU_USERPASSWORD. (lu_ldap_group_default): Comment absence of default password. * lib/user_private.h (struct lu_module): New member valid_module_combination. * lib/error.h (lu_status_t): Add lu_error_invalid_module_combination. * lib/error.c (lu_strerror, lu_error_is_error): Handle lu_error_invalid_module_combination. * lib/modules.c (load_one_module): Verify `valid_module_combination' is provided. (lu_modules_load): After loading modules, let each one verify the module combination. * modules/files.c (lu_files_shadow_valid_module_combination): New function. (libuser_files_init, libuser_shadow_init): Provide `valid_module_combination'. * modules/ldap.c (lu_ldap_valid_module_combination): New function. (libuser_ldap_init): Provide `valid_module_combination'. * modules/sasldb.c (lu_sasldb_valid_module_combination): New function. (libuser_sasldb_init): Provide `valid_module_combination'. * lib/user_private.h (LU_MODULE_NAME_FILES, LU_MODULE_NAME_LDAP) (LU_MODULE_NAME_SHADOW): New definitions. * modules/files.c (SHADOW_MODULE_NAME): Remove, replaced by LU_MODULE_NAME_SHADOW. All users updated. (libuser_files_init): Use LU_MODULE_NAME_FILES. * modules/ldap.c (libuser_ldap_init): Use LU_MODULE_NAME_LDAP. * lib/user_private.h (LU_MODULE_VERSION): Increase. * lib/error.c (lu_strerror, lu_error_is_error): Handle lu_error_invalid_attribute_value. 2010-12-14 Miloslav Trmač * tests/ldap_test: Don't run (openssl req) in batch mode so that we can specify a host name. Use "127.0.0.1" as host name to fix CN mismatches, "localhost" when connecting is apparently replaced by the actual host name. * Makefile.am (tests_config_test_LDADD): Fix a typo. 2010-09-29 Miloslav Trmač * lib/util.c (lu_util_fscreate_for_path): Don't pass NULL to %s. * lib/util.c (lu_util_fscreate_for_path): Handle cases when a path is not in the matchpathcon database. 2010-09-07 Miloslav Trmač * apps/apputil.c (lu_authenticate_unprivileged): New parameter ctx. All users changed. Don't authenticate the user if the application is not set*id and elevated privileges are not necessary. * apps/apputil.h (lu_authenticate_unprivileged): Update prototype. * lib/misc.c (lu_value_get_id): Don't abort the program if the value is not a valid ID. * modules/ldap.c (lu_ldap_groups_enumerate_by_user) * apps/lid.c (do_id): Handle invalid ID values, for completeness. 2010-09-01 Miloslav Trmač * libuser.conf (crypt_style): Change default to sha512. 2010-09-14 Miloslav Trmač * configure.in: Release 0.56.18. * NEWS: Update. 2010-08-26 Miloslav Trmač * configure.in: Release 0.56.17. * NEWS: Update. * autogen.sh: Fix running autogen on an old checkout. * tests/slapd.conf.in: Make the tests run with current openldap again. 2010-07-07 Miloslav Trmač * tests/files_test.py (Tests.testValidateIdValue): Fix comment. 2010-07-02 Miloslav Trmač * python/libusermodule.c (libuser_validate_id_value): New function. (libuser_methods): Add validateIdValue. * python/modules.txt (libuser): Document validateIdValue. * tests/files_test.py (Tests.testValidateIdValue): New test. * python/libusermodule.c (initlibuser): Provide VALUE_INVALID_ID. * python/modules.txt (libuser): Document VALUE_INVALID_ID. 2010-06-14 Miloslav Trmač * modules/ldap.c (lu_ldap_needed_objectclasses, get_ent_adds) (get_ent_mods, libuser_ldap_init) * python/misc.c (libuser_admin_prompt): Use g_malloc*_n (). 2010-06-12 Miloslav Trmač * configure.in: Define PACKAGE_BUGREPORT and PACKAGE_URL. * autogen.sh: Run aclocal with -Wall. 2010-03-25 Miloslav Trmač * configure.in: Release 0.56.16. * NEWS: Update. 2010-03-04 Miloslav Trmač * configure.in: Release 0.56.15. * NEWS: Update. * po/LINGUAS: Sort. * Makefile.am (archive) * configure.in: Use xz for compressing the distribution tarball. 2010-02-08 Miloslav Trmač * configure.in: Release 0.56.14. * NEWS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. * docs/libuser.conf.5.in ([ldap]): Document the "password" option. 2010-02-08 Rob Myers * modules/ldap.c (libuser_ldap_init): Allow specifying the LDAP password in a config file. 2010-02-08 Miloslav Trmač * lib/prompt.c (lu_prompt_console): Don't try to modify TTY attributes if stdin is not a TTY. 2010-02-03 Thierry Vignaud * po/fr.po: Update. 2010-02-03 Miloslav Trmač * lib/user_private.h (_): Use dcgettext (). Based on patch by Thierry Vignaud . 2010-01-26 Miloslav Trmač * tests/ldap.conf.in (ldap/password): Remove, the value is not used. 2009-12-11 Miloslav Trmač * configure.in: Release version 0.56.13. * NEWS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. 2009-12-11 Miloslav Trmač * apps/luseradd.c (main): New arguments --commonname, --givenname, --surname, --roomnumber, --telephonenumber, --homephone. * apps/luseradd.1: Document new arguments. * apps/lusermod.c (main): New arguments --commonname, --givenname, --surname, --roomnumber, --telephonenumber, --homephone. * apps/lusermod.1: Document new arguments. * modules/ldap.c (interact, lu_ldap_needed_objectclasses) (lu_ldap_is_locked): Fix debug print parameters. 2009-12-08 Miloslav Trmač * modules/files.c (entry_name_conflicts): Split from generic_add (). (generic_mod): Refuse to rename to an existing name. * tests/files_test.py (Tests.testUserAdd8, Tests.testUserMod7) (Tests.testGroupAdd5, Tests.testGroupMod6) * tests/ldap_test.py (Tests.testUserAdd6, Tests.testUserMod5) (Tests.testGroupAdd4, Tests.testGroupMod4): New test cases. * apps/lnewusers.c (main): Refuse using dubious home directories unless specified explicitly. * tests/utils_test: Test handling of dubious default home directories in lnewusers. * lib/internal.h (LU_DUBIOUS_HOMEDIRECTORY): New definition. * lib/user.c (lu_user_add): Refuse to create an user with a dubious home directory unless specified explicitly. (replace_all): New parameter "key". Recognize dubious home directory value created by the substitution. Caller updated. * lib/user_private.h (lu_common_user_add_check): Remove declaration. * lib/common.c (LU_INVALID_HOMEDIRECTORY): Remove. (lu_common_user_default): Set LU_DUBIOUS_HOMEDIRECTORY instead of LU_INVALID_HOMEDIRECTORY, and only if LU_DUBIOUS_HOMEDIRECTORY is not already set. (lu_common_user_add_check): Remove. * modules/files.c (lu_files_user_add) * modules/ldap.c (lu_ldap_user_add): Remove call to lu_common_user_add_check (). 2009-12-07 Miloslav Trmač * lib/common.c (lu_common_user_add_check): Capitalize error message. * lib/user_private.h (lu_common_user_add_check): New declaration. * lib/common.c (LU_INVALID_HOMEDIRECTORY): New definition. (lu_common_user_default): Don't set home directory to /home/. or /home/.. by default. (lu_common_user_add_check): New function. * modules/files.c (lu_files_user_add) * modules/ldap.c (lu_ldap_user_add): Call lu_common_user_add_check (). * po/POTFILES.in: Add lib/common.c. * tests/files_test.py (Tests.testUserAdd7) * tests/ldap_test.py (Tests.testUserAdd5): New tests. 2009-10-26 Miloslav Trmač * apps/lid.c (do_id): Report error when the name does not exist (as opposed to the case when a group exists but does not have any members). Caller updated. 2009-10-02 Miloslav Trmač * configure.in: Release version 0.56.12. * NEWS: Update. 2009-09-14 Miloslav Trmač * configure.in: Release version 0.56.11. * NEWS: Update. * po/LINGUAS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. * autogen.sh: Fix (make archive). * apps/luserdel.c (main): Fix comment. 2009-06-23 Miloslav Trmač * apps/lgroupmod.c (main): Remove unnecessary nscd refreshes. Refresh the "passwd" nscd cache only once after modifying all affected users. * apps/lnewusers.c (main): Refresh the "group" nscd cache after adding a group. Refresh the "passwd" nscd cache only after changing the user's password. * apps/lpasswd.c (main): Refresh the relevant nscd cache after changing the password. * apps/luseradd.c (main): Refresh the "passwd" nscd cache only after changing the user's password. * apps/luserdel.c (main): Only refresh the "group" cache if a group was deleted. * Makefile.am (apps_libapputil_la_CPPFLAGS): New variable. * apps/apputil.c (lu_nscd_flush_cache): New function. (lu_signal_nscd, lu_hup_nscd): Remove. * apps/apputil.h: Update prototypes. * apps/lchage.c (main) * apps/lchfn.c (main) * apps/lchsh.c (main) * apps/lgroupadd.c (main) * apps/lgroupdel.c (main) * apps/lgroupmod.c (main): * apps/lnewusers.c (main): * apps/luseradd.c (main) * apps/luserdel.c (main): Use lu_nscd_flush_cache () instead of lu_hup_nscd (). Based on a patch by Masahiro Matsuya . 2009-06-14 Miloslav Trmač * configure.in: Add AC_CONFIG_MACRO_DIR. Drop AC_ISC_POSIX. Update for libtool 2. * lib/getdate.y: Update for bison 2.4. * configure.in: Update gettext version to 0.17. 2009-05-22 Miloslav Trmač * apps/luserdel.c (main): Remove user's mail spool as well. * apps/luserdel.1: Update. * lib/user.c (run_single): Prohibit renaming entities to an invalid name. * tests/files_test.py (Tests.testUserMod6, Tests.testGroupMod5): New tests. * modules/files.c (generic_add): Remove unnecessary "line != NULL" conditions. * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/lusermod.c (main): Refuse GID and UID (id_t)-1. * apps/lgroupadd.c (main) * apps/lgroupmod.c (main): Refuse GID (gid_t)-1. * lib/user.c (extract_name, extract_id): Only check pending values, nothing else falls back on current values like these functions did. (lu_default_int): Don't default LU_GIDNUMBER to -1 if the "users" group does not exist. Don't set ID to 0 or -1 if a new ID can't be allocated. Don't replace %u in default values by 0 or -1 if a new ID can't be allocated. * python/admin.c (libuser_admin_create_home): Dont populate home directory if UID or GID is (id_t)-1. * python/ent.c (libuser_convert_to_value): Try to refuse GID and UID (id_t)-1. 2009-04-14 Miloslav Trmač * configure.in: Version 0.56.10. * NEWS: Update. * po/LINGUAS: Update. 2009-03-12 Miloslav Trmač * tests/ldap_test.py (Tests.testUserLock3) (Tests.testUserUnlock4, Tests.testUserUnlockNonempty4) (Tests.testGroupLock3, Tests.testGroupUnlock4) (Tests.testGroupUnlockNonempty4): Test handling of unsupported encryption schemes when locking or unlocking passwords. * modules/ldap.c (userPassword_has_scheme): New function. (lu_ldap_handle_lock): Don't re-encrypt (corrupt) passwords that use a different encryption scheme than {crypt}. 2009-02-19 Miloslav Trmač * tests/utils_test * tests/utils_group * tests/utils_gshadow * tests/utils_passwd * tests/utils_shadow: Test useradd with a numerical user name. * apps/luseradd.c (main): When the user name is used as a group name, never interpret it as a number. 2008-10-13 Miloslav Trmač * po/POTFILES.skip: New file (used by transifex at translate.fedora.redhat.com). 2008-07-19 Miloslav Trmač * tests/files_test.py (Tests.testUserAdd6, Tests.testUserMod5) (Tests.testUserSetpass4, Tests.testGroupAdd4) (Tests.testGroupMod4, Tests.testGroupSetpass4): New tests. * modules/files.c (format_generic): New parameter error. Reject fields contaning a ':' that would be interpreted as a field separator. (format_fn): Remove. (generic_add): New parameters formats, format_count instead of formatter. All users changed. Format the new line first, and refuse to use it if it is invalid. (lu_files_format_user, lu_files_format_group, lu_shadow_format_user) (lu_shadow_format_group): Fold into generic_add callers. (generic_mod): Format the new line first, and refuse to use it if it is invalid. Modify the file one line at a time instead of one field at a time. (generic_setpass): Refuse to use the new password if it contains a literal ':'. 2008-07-18 Miloslav Trmač * tests/config_test.sh (workdir): * tests/pwhash_test (workdir): * tests/utils_test (workdir): Use a work directory distinct from tests/files_test. * tests/slapd.conf.in: Use the "bdb" database backend, ldbm was removed in openldap-2.4. 2008-07-13 Miloslav Trmač * apps/lnewusers.1: Fix .IP argument quoting. Use sentence capitalization for field names. Fix a typo. 2008-04-09 Miloslav Trmač * configure.in: Version 0.56.9. * NEWS: Update. * po/LINGUAS: Add as. 2008-03-25 Miloslav Trmač * apps/lpasswd.1 (DESCRIPTION): Fix another pasto. 2008-02-27 Miloslav Trmač * apps/lusermod.c (main): Warn if the new GID does not refer to an existing group. * apps/lusermod.1: Document that --gid may output a warning if the group does not exist. Resolves libuser #1. * tests/utils_group * tests/utils_gshadow * tests/utils_passwd * tests/utils_shadow * tests/utils_test: Test usermod -g outputs a warning if the specified group does not exist. 2008-02-26 Miloslav Trmač * apps/lpasswd.1 (SYNOPSIS): Fix a pasto. * apps/luseradd.1 (NAME): Fix. Bugs reported by Miloš Malík . 2008-02-23 Miloslav Trmač * configure.in: Version 0.56.8. * NEWS: Update. * Makefile.am (EXTRA_DIST): Add tests/config_import2.conf.in, tests/config_login2.defs, tests/pwhash.conf.in, tests/pwhash.py and tests/pwhash_test. * All relevant source files: Use <> for #including config.h, in particular do not use "../config.h", which can refer to a file outside the build directory. Remove #ifdef HAVE_CONFIG_H, we know that is true. * Makefile.am (HGTAG): Replace CVSTAG. (force-tag, tag, archive): Update to use Mercurial. * all files: Remove CVS keywords. * README: Point to the home page hosted at fedoraproject.org. 2008-02-16 Miloslav Trmač * po/POTFILES.in: Add missing lib/misc.c. * docs/libuser.conf.5.in: Fix a typo. 2008-01-11 Miloslav Trmač * tests/pwhash_test: Fix description. 2008-01-09 Miloslav Trmač * configure.in: Version 0.56.7. * NEWS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update version info. * lib/common.c: New file, moving most code from modules/default.-c. (lu_common_user_default, lu_common_group_default) (lu_common_suser_default, lu_common_sgroup_default): Make public. * lib/user_private.h (LU_COMMON_DEFAULT_PASSWORD) (LU_COMMON_DEFAULT_SHADOW_PASSWORD, LU_COMMON_DEFAULT_SHELL): New definitions, moved from modules/default.-c. (lu_common_user_default, lu_common_group_default) (lu_common_suser_default, lu_common_sgroup_default) (lu_util_default_salt_specifier): New declarations. * lib/util.c (HASH_ROUNDS_MIN, HASH_ROUNDS_MAX) (parse_hash_rounds, select_hash_rounds): Move from modules/default.-c. (lu_util_default_salt_specifier): Move from modules/default.-c. Use a lu_context * instead of lu_module *. All users changed. (lu_make_crypted): Use HASH_ROUNDS_MAX. * modules/default.-c: Remove. All users changed. * Makefile.am (pkginclude_HEADERS): Remove modules/default.-c. (lib_libuser_la_SOURCES): Add lib/common.c. (modules_libuser_files_la_CPPFLAGS) (modules_libuser_shadow_la_CPPFLAGS) (modules_libuser_krb5_la_CPPFLAGS) (modules_libuser_ldap_la_CPPFLAGS) (modules_libuser_sasldb_la_CPPFLAGS): Remove. 2008-01-08 Miloslav Trmač * po/sr@latin.po: Rename from po/sr@Latn.po * po/LINGUAS: Update. * docs/libuser.conf.5.in: Document SHA support. * tests/pwhash.conf.in * tests/pwhash.py: New files * tests/pwhash_test: New test. * Makefile.am (TESTS): Add tests/pwhash_test. * tests/config_import2.conf.in * tests/config_login2.defs: New files. * tests/config_login.defs: Add SHA_CRYPT_MIN_ROUNDS and SHA_CRYPT_MAX_ROUNDS. * tests/config_override.conf.in: Add hash_rounds_min and hash_rounds_max. * tests/config_test.sh: Create libuser_import2.conf. * tests/config_test.c (main): Add tests for hash_rounds_min and hash_rounds_max. Test ENCRYPT_METHOD and MD5_CRYPT_ENAB interaction. * lib/config.c (struct handle_login_defs_key_data): New definition. (handle_login_defs_key): Expect struct handle_login_defs_key_data * instead of struct config_config *. Handle ENCRYPT_METHOD, SHA_CRYPT_MIN_ROUNDS, SHA_CRYPT_MAX_ROUNDS. Only use MD5_CRYPT_ENAB if ENCRYPT_METHOD is not defined. (import_login_defs): Pass struct handle_login_defs_key_data * to handle_login_defs_key(). * lib/util.c (salt_type_info): New member sha_rounds. Add SHA256 and SHA512 entries. (lu_make_crypted): Add support for SHA rounds specification. * modules/default.-c (HASH_ROUNDS_MIN, HASH_ROUNDS_MAX): New macros. (lu_common_parse_hash_rounds, lu_common_select_hash_rounds): New functions. (lu_common_default_salt_specifier): Add support for sha256 and sha512. Add support for configurable number of hashing rounds. Return a newly allocated string. All callers changed. 2008-01-07 Miloslav Trmač * tests/files_test.py (Tests.testUserSetpass1) (Tests.testUserSetpass2, Tests.testUserSetpass3) (Tests.testGroupSetpass1, Tests.testGroupSetpass2) (Tests.testGroupSetpass3): Don't assume the password salt is 11 characters long. 2007-12-06 Miloslav Trmač * apps/lid.1: Fix grammar. 2007-11-14 Miloslav Trmač * lib/util.c (lu_util_lock_obtain): Fix setting l_type. 2007-10-30 Miloslav Trmač * lib/util.c (lu_util_fscreate_restore) [WITH_SELINUX]: Fix use of uninitialized data when SELinux is disabled. 2007-10-25 Miloslav Trmač * configure.in: Version 0.56.6. * NEWS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update revision. * docs/Makefile.am (CLEANFILES): Add sgml/libuser-1.html and sgml/libuser-2.html. * Makefile.am (modules_libuser_files_la_LDFLAGS) (modules_libuser_shadow_la_LDFLAGS) (modules_libuser_krb5_la_LDFLAGS) (modules_libuser_ldap_la_LDFLAGS) (modules_libuser_sasldb_la_LDFLAGS) (python_libusermodule_la_LDFLAGS): Don't use -export-dynamic, that option is defined only for executables. * apps/apputil.c (lu_homedir_copy, lu_homedir_populate) (lu_homedir_move): Set up / preserve SELinux file contexts when creating / copying home directories. * lib/user_private.h (lu_security_context_t, lu_util_fscreate_save) (lu_util_fscreate_restore, lu_util_fscreate_from_file) (lu_util_fscreate_for_path): New declarations. * lib/util.c (lu_util_fscreate_save, lu_util_fscreate_restore) (lu_util_fscreate_from_file, lu_util_fscreate_for_path): New functions. * modules/files.c (set_default_context, reset_default_context): Remove. (generic_add, generic_mod, generic_del, generic_lock) (generic_setpass): Use lu_util_fscreate_save(), lu_util_fscreate_from_file() and lu_util_fscreate_restore() instead of set_default_context() and reset_default_context(). (This fixes a possible leak of prev_context). * apps/apputil.c (setup_default_context): Remove. (lu_authenticate_unprivileged): Use lu_util_fscreate_from_file() instead of setup_default_context(). * Makefile.am (lib_libuser_la_LDFLAGS): Link to SELINUX_LIBS. (modules_libuser_files_la_LDFLAGS) (modules_libuser_shadow_la_LDFLAGS): Don't link to SELINUX_LIBS directly. * docs/Makefile.am (CLEANFILES): Add sgml/libuser.html and sgml/libuser.txt. (clean-local): Remove. 2007-10-11 Miloslav Trmač * configure.in: Version 0.56.5. * NEWS: Update. * po/LINGUAS: Add kn, ro, te. * tests/files_test.py (workdir): New variable. (Tests.testUserAdd4, Tests.testUserAdd5): New tests. * tests/files_test: Pass workdir to files_test.py. * apps/apputil.c (lu_homedir_copy): Report an error if the destination (home directory) is a relative path. * python/admin.c (libuser_admin_add_user): Don't ignore a raised exception before creating a mail spool. Create an exception object if creating a mail spool fails. Beautify. (libuser_admin_delete_user): Create an exception object if removing a mail spool fails. Beautify. 2007-09-25 Miloslav Trmač * tests/ldap_test.py (Tests.testUserMod4): Test empty modifications. * modules/ldap.c (dump_mods): Handle NULL mods. (lu_ldap_set): Do not call ldap_modify_ext_s() when no attributes need to be modified, to avoid spurious errors on Fedora Directory Server. Beautify. 2007-09-10 Miloslav Trmač * lib/modules.c (load_one_module): Use G_MODULE_BIND_LOCAL. 2007-06-15 Miloslav Trmač * configure.in: Version 0.56.4. * NEWS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update revision. * tests/files_test.py (Tests.testUserSetpass1) (Tests.testUserRemovepass) * tests/ldap_test.py (Tests.testUserSetpass1) (Tests.testUserRemovepass1): Test LU_SHADOWLASTCHANGE is updated. * modules/files.c (lu_shadow_user_setpass) (lu_shadow_group_setpass, lu_shadow_user_removepass) (lu_shadow_group_removepass): Remove redundant lu_util_update_shadow_last_change() calls. * lib/user.c (lu_user_setpass, lu_user_removepass): Save the modified LU_SHADOWLASTCHANGE value. (lu_group_setpass, lu_group_removepass): Don't update LU_SHADOWLASTCHANGE, the field is valid only for user entities. 2007-06-09 Miloslav Trmač * configure.in: Version 0.56.3. * NEWS: Update. * modules/ldap.c (struct lu_ldap_context): New member sasl_mechanism. (interact): Return "" to SASL_CB_GETREALM. Shorten variable names for better formating, simplify a bit. (bind_server): Use context->sasl_mechanism. Replace contradictory LDAP_SASL_INTERACTIVE | LDAP_SASL_QUIET by LDAP_SASL_AUTOMATIC. (lu_ldap_close_module): Free sasl_mechanism. (libuser_ldap_init): Default ldap/user to "". Allow specifying SASL bind mechanism as "sasl/MECHANISM". * docs/libuser.conf.5.in: Update bindtype documentation. Original patch by Simo Sorce . 2007-04-28 Miloslav Trmač * configure.in * Makefile.am: Use features available in autoconf 2.61. 2007-04-19 Miloslav Trmac * configure.in: Version 0.56.2. * NEWS: Update. * po/LINGUAS: Add bs. Remove languages with no translated strings. 2007-03-16 Miloslav Trmac * libuser.conf: Remove all krb5 module references to avoid the slightest possibility of giving an impression that the krb5 module might work. 2007-03-02 Miloslav Trmac * po/no.po: Remove, obsoleted by nb.po. * po/LINGUAS: Remove no. 2007-02-23 Miloslav Trmac * configure.in: Version 0.56.1. * NEWS: Update. * tests/files_test.py (Tests.testUserSetpass3) (Tests.testGroupLookupName2, Tests.testGroupSetpass3): Simplify the lambda expression. * modules/files.c (suffix_passwd, suffix_shadow, suffix_group) (suffix_gshadow): New variables. (generic_lookup, generic_add, generic_mod, generic_del, generic_lock) (generic_is_locked, generic_setpass, lu_files_enumerate) (lu_files_users_enumerate_by_group, lu_files_groups_enumerate_by_user) (lu_files_enumerate_full, lu_files_uses_elevated_privileges) (lu_shadow_uses_elevated_privileges, libuser_shadow_init): Use suffix_* instead of separate "/" and copy&pasted basenames. All users changed. * modules/files.c (lu_files_uses_elevated_privileges) (lu_shadow_uses_elevated_privileges): Fix incorrect conversion from g_strdup_printf (). * modules/files.c (SHADOW_MODULE_NAME): New macro. (ent_has_shadow): New function. (generic_setpass): Only silently ignore known shadow markers, and replace invalid shadow markers by "x"; both only if a shadow entry exists. (libuser_shadow_init): Use SHADOW_MODULE_NAME. * tests/files_test.py (Tests.testUserSetpass1): Rename from testUserSetpass. (Tests.testGroupSetpass1): Rename from testGroupSetpass. (Tests.testUserSetpass2, tests.testUserSetpass3) (Tests.testGroupSetpass2, tests.testGroupSetpass3): New tests. * tests/files_test: Update file contents. 2007-02-17 Miloslav Trmac * configure.in: Version 0.56. * Makefile.am (lib_libuser_la_LDFLAGS): Update revision. * NEWS: Update. * configure.in (AM_INIT_AUTOMAKE): Use dist-bzip2. * Makefile (archive): Use the bzip2 tarball. * tests/files_test.py (Tests.testUserLookupName3) (Tests.testUserDefault, Tests.testGroupLookupName3) (Tests.testGroupDefault): New tests. * tests/files_test: Update file contents. * apps/apputil.c (lu_mailspool_create_remove) * apps/lnewusers.c (main) * lib/user.c (lu_default_int) * modules/files.c (lu_files_user_lookup_id) (lu_shadow_user_lookup_id, lu_files_group_lookup_id) (lu_shadow_group_lookup_id, generic_del) * modules/ldap.c (lu_ldap_base, lu_ldap_user_lookup_id) (lu_ldap_group_lookup_id, lu_ldap_handle_lock) (lu_ldap_users_enumerate_by_group): Don't use g_strdup_printf () when a simpler alternative can be used. * lib/error.c (lu_error_new): Don't use lu_strerror () result as a format string. Beautify. * apps/lchage.c (read_ndays): Assume the value is a G_TYPE_LONG. Return a g_type_long. All callers updated. (date_to_string): Use glong for n_days. * lib/user.c (lu_default_int) * modules/ldap.c (lu_ldap_lookup): Use lu_value_init_set_attr_from_string (). Report invalid values. * tests/ldap_test.py (Tests.testUserAdd2): Use correct value types. * docs/reference/tmpl/entity.sgml: Document the value types used for entities. * lib/config.c (handle_default_useradd_key): Try harder to eliminate the possibility of date overflow. 2007-02-16 Miloslav Trmac * apps/lid.c (do_id): Avoid an unnecessary lu_value_strdup (). * lib/util.c (salt_type_info): Use char[] instead of char * and reorder fields within the structure to eliminate run-time relocations and save some space. * docs/reference/tmpl/error.sgml: Add missing parameter documentation. * lib/user.c (lu_user_setpass, lu_user_removepass) (lu_group_setpass, lu_group_removepass, lu_default_int): Use lu_util_update_shadow_last_change (). * lib/util.c (lu_util_shadow_current_date): Return the number of days as an integer. Clean up. (lu_util_update_shadow_last_change): Move from ... * modules/files.c (set_shadow_last_change): ... here. All callers updated. * lib/internal.h (lu_util_shadow_current_date): Update prototype. Move declaration from... * lib/user_private.h (lu_util_shadow_current_date): ... here. (lu_util_update_shadow_last_change): New declaration. (LU_MODULE_VERSION): Bump. * lib/user.c (replace_all): New function, based on a part of lu_default_int (). (lu_default_int): Perform substitutions one by one instead of precomputing a list of them. 2007-02-15 Miloslav Trmac * lib/user.c (run_list): Avoid unnecessary g_value_dup_string (). * lib/entity.c (lu_ent_dump): Remove output of value types that are not expected to appear. (lu_ent_add_module): Only copy the module name if it is not already present in ent->modules. * modules/files.c (line_read): Simplify and clean up. (generic_del): Use memmove for copying strings that overlap. Clean up the code a bit. * apps/lnewusers.c (main) * lib/prompt.c (lu_prompt_console): Eliminate duplicate strchr () calls. * lib/entity.c (lu_ent_del_int): Use lu_values_equal () instead of g_strdup_value_contents (), which is intended for human-readable debugging dumps. * lib/entity.c (lu_ent_dump_attributes): Split from lu_ent_dump_attributes (). Show something for unsupported value types. 2007-01-06 Jeremy Katz * python/misc.c (libuser_prompt_destroy): Use PyObject_DEL since we allocated with PyObject_NEW (#220679) * python/ent.c (libuser_entity_destroy): Likewise. * python/admin.c (libuser_admin_destroy): Likewise. 2006-12-14 Miloslav Trmac * python/admin.c (AdminType) * python/ent.c (libuser_entity_mapping_methods, EntityType) * python/misc.c (PromptType): Remove casts, use comments to indicate struct members. * python/admin.c (libuser_admin_setattr) (libuser_admin_get_first_unused_id, libuser_admin_get_first_unused_gid) (libuser_admin_new): Add manual casts to conform to PyCFunctionWithKeywords. (libuser_admin_get_first_unused_id_type): Remove unnecessary variable. (libuser_admin_methods) [getUserShells]: Use METH_NOARGS. * python/common.h (lenfunc): Remove definition. (libuser_admin_new, libuser_prompt_new, libuser_get_user_shells): Update prototypes. * python/ent.c (libuser_entity_destroy, libuser_entity_getattr) (libuser_entity_setattr, libuser_entity_length) (libuser_entity_get_item, libuser_entity_set_item): Add manual casts to conform to method types. (libuser_entity_getattrlist, libuser_entity_module) (libuser_entity_clear_all, libuser_entity_revert): Use METH_NOARGS. (libuser_entity_get, libuser_entity_add, libuser_entity_set) (libuser_entity_clear) (libuser_entity_has_key): Add manual casts to conform to PyCFunction. (libuser_entity_methods) [getattrlist, keys, clear_all, revert] [modules]: Use METH_NOARGS. [has_key, get, clear, set, add]: Remove casts. * python/libusermodule.c (libuser_get_user_shells): Use METH_NOARGS. (libuser_methods) [prompt, get_user_shells, PROMPT, getUserShells]: Use METH_NOARGS. * python/misc.c (libuser_prompt_destroy, libuser_prompt_getattr) (libuser_prompt_setattr, libuser_prompt_print): Add manual casts to conform to method types. (libuser_prompt_new): Use METH_NOARGS. * python/admin.c (libuser_admin_new) * python/misc.c (libuser_prompt_new): Remove redundant declarations. 2006-12-10 Miloslav Trmac * configure.in (AM_GNU_GETTEXT_VERSION): Use gettext-0.14.6. * configure.in: Version 0.55. * NEWS: Update. * autogen.sh * Makefile.am (EXTRA_MANS, pkginclude_HEADERS, dist_noinst_SCRIPTS) [QUOTA] (noinst_PROGRAMS, lib_LTLIBRARIES, pyexec_LTLIBRARIES) * configure.in * docs/reference/libuser-docs.sgml * docs/reference/libuser-sections.txt * python/modules.txt: Remove the quota library and Python module. * docs/reference/tmpl/quota.sgml * lib/userquota.3 * lib/userquota.c * lib/userquota.h * python/quota-script * python/quotamodule.c * samples/quotaq.c: Removed files. * python/admin.c (libuser_admin_setattr) (libuser_admin_lookup_user_name, libuser_admin_lookup_user_id) (libuser_admin_lookup_group_name, libuser_admin_lookup_group_id) (libuser_admin_do_wrap, libuser_admin_wrap_boolean) (libuser_admin_setpass, libuser_admin_create_home) (libuser_admin_remove_home, libuser_admin_move_home) (libuser_admin_create_remove_mail, libuser_admin_add_user) (libuser_admin_delete_user) (libuser_admin_get_first_unused_id_type, libuser_admin_new) * python/ent.c (libuser_entity_add, libuser_entity_set) (libuser_entity_clear, libuser_entity_clear_all) (libuser_entity_revert, libuser_entity_has_key) * python/misc.c (libuser_admin_prompt, libuser_prompt_getattr): * python/quotamodule.c (quotamodule_set, quotamodule_on) (quotamodule_off): Replace all trivial uses of Py_BuildValue (). * python/misc.c (libuser_admin_prompt, libuser_prompt_setattr): Remove an unnecessary use of typeof. * apps/apputil.c (lu_converse): Use calloc () instead of malloc () and memset (). * python/common.h (Py_ssize_t, lenfunc): New definitions. * python/ent.c (libuser_entity_setattr, libuser_entity_set) (libuser_entity_length, libuser_entity_set_item): Use Py_ssize_t. (libuser_entity_mapping_methods): Use lenfunc. * python/misc.c (libuser_admin_python_prompter, libuser_admin_prompt): Use Py_ssize_t. * python/quotamodule.c (Py_ssize_t): New definition. (quotamodule_set): Use Py_ssize_t. 2006-11-02 Miloslav Trmac * configure.in: Version 0.54.8. * Makefile.am (lib_libuser_la_LDFLAGS): Update revision. * NEWS: Update. * lib/config.c (handle_default_useradd_key): Import HOME. * docs/libuser.conf.5.in: Document HOME is imported from default/useradd. * tests/config_default_useradd * tests/config_override.conf.in * tests/config_test.c (main): Test import of HOME. 2006-09-25 Miloslav Trmac * configure.in: Version 0.54.7. * NEWS: Update. * po/LINGUAS: Add el, ml and or. 2006-05-01 Miloslav Trmac * configure.in: Version 0.54.6. * Makefile.am (lib_libuser_la_LDFLAGS): Update revision. * NEWS: Update. * apps/lchsh.c (main): Provide a more verbose error message. * apps/apputil.c (lu_homedir_copy): Split from lu_homedir_populate. Reformat a bit. (lu_homedir_populate): New parameter ctx. Default skeleton to defaults/skeleton. All users updated to pass NULL instead of reading the config value. * apps/apputil.h (lu_homedir_populate): Update prototype. * python/admin.c (libuser_admin_add_user): New keyword parameter "skeleton". * python/modules.txt: Document new addUser parameter. 2006-03-12 Miloslav Trmac * modules/ldap.c (get_ent_mods): Remove unused parameter module. * lib/getdate.y: Quiesce some warnings. * lib/config.c (read_file): Make type conversion explicit, assuming sizeof (off_t) >= sizeof (size_t). 2006-03-06 Miloslav Trmac * python/admin.c (libuser_admin_enumerate_users) (libuser_admin_enumerate_groups) (libuser_admin_enumerate_users_by_group) (libuser_admin_enumerate_groups_by_user): Don't attempt to g_value_array_free(NULL). * lib/user.c (extract_id, extract_name): Don't warn if the attribute has no value, leave it to the caller. (lu_refresh_int): Don't unnecessarily call extract_id(). Don't attempt to refresh an entity without name. (convert_user_name_to_id, convert_group_name_to_id): Report errors when the entity can't be found or has no ID. (ent_has_name_and_id): New function. (lu_dispatch): Report more detailed errors on insufficiently filled entities, also fixing a memory leak. Use constants for unused sdata, ldata parameters. * lib/user.c (lu_dispatch): Use g_assert_not_reached(). * apps/lid.c (do_id): Report lookup error. Exit with status 1 on error. * apps/lchsh.c (main): Report error on prompting. Exit with status 1 on error. * apps/lchfn.c (main): Exit with status 1 on error. * apps/apputil.c (lu_mailspool_create_remove): Fix memory leak. 2006-03-05 Miloslav Trmac * modules/files.c (parse_generic): Fix crash if the last field is empty. (lu_files_enumerate_full): Don't return empty data if the input line is invalid. Match only the user name against the supplied pattern. * tests/files_test.py (Tests.testUsersEnumerateFull3) (Tests.testGroupsEnumerateFull3): New tests. 2006-02-21 Miloslav Trmac * lib/getdate.y: Add missing #include. Define YYENABLE_NLS to avoid -Wundef. * configure.in: Version 0.54.5. * NEWS: Update. * configure.in: Use newer gettext. * docs/libuser.conf.5.in: Remove @pkglibdir@ references to avoid multilib conflicts. * docs/Makefile.am (libuser.conf.5): Stop replacing @pkglibdir@. * modules/sasldb.c (lu_sasldb_close_module): Fix invalid aliasing. 2006-02-13 Miloslav Trmac * po/LINGUAS: Add my. * configure.in: Version 0.54.4. * NEWS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update revision. 2006-01-31 Miloslav Trmac * configure.in (WITH_PYTHON): New conditional. * Makefile.am (pyexec_LTLIBRARIES, pyexec_LTLIBRARIES): Only use if WITH_PYTHON. Based on a patch by Dan Yefimov . * lib/scache.c (get_keys): Fix C99-ism, patch by Dan Yefimov . 2005-12-20 Miloslav Trmac * po/LINGUAS: Add hy, sr and sr@Latn. 2005-12-02 Miloslav Trmac * configure.in: Version 0.54.3. * NEWS: Update. * apps/lpasswd.c (main): Determine user name before attempting to autenticate a NULL user. 2005-11-12 Miloslav Trmac * modules/krb5.c (lu_krb5_user_add) * modules/ldap.c (lu_ldap_handle_lock, lu_ldap_setpass): Use g_str_has_prefix () where appropriate. 2005-11-11 Miloslav Trmac * configure.in: Version 0.54.2. * NEWS: Update. * Makefile.am (lib_libuser_la_LDFLAGS): Update revision. * modules/ldap.c (close_server, connect_server, bind_server) (lu_ldap_ent_to_dn, lu_ldap_lookup, lu_ldap_fudge_objectclasses) (lu_ldap_is_locked, lu_ldap_setpass, lu_ldap_user_enumerate): Avoid functions deprecated by openldap. (objectclass_present, lu_ldap_needed_objectclasses): Use BerValue's instead of strings. All callers updated. (free_needed_objectclasses): New function. * configure.in: Remove checks for no longer used deprecated openldap functions. (lu_ldap_close_module): Use close_server (). (lu_ldap_set, lu_ldap_del, lu_ldap_handle_lock, lu_ldap_is_locked) (lu_ldap_setpass, connect_server, bind_server): Replace empty LDAP control vectors by NULL. 2005-10-11 Miloslav Trmac * configure.in: Version 0.54.1. * Makefile.am (lib_libuser_la_LDFLAGS): Update revision. * libuser.pc.in (Requires) * configure.in: Use gmodule-no-export-2.0. * libuser.conf: Rename from libuser.conf.in, hardcode @sysconfdir@ to /etc. * Makefile.am: Ship libuser.conf instead of libuser.conf.in. * libuser.conf.in: Update to import values from shadow where possible. * NEWS: Update. 2005-10-10 Miloslav Trmac * tests/config_default_useradd, testes/config_import.conf.in, tests/config_login.defs, tests/config_override.conf.in: New files. * tests/config_test.sh: Generate three config files, pass $workdir to config_test instead of setting LIBUSER_CONF. * tests/config_test.c (start): Split from main (). Set LIBUSER_CONF. (verify_var): Abstract from main (). (main): Test configuration import from shadow. * Makefile.am (EXTRA_DIST): Distribute the new test components. * lib/config.c (handle_login_defs_key): Fix pasto. Don't use the first member of conv[] over and over. 2005-10-09 Miloslav Trmac * Most functions: Move variables to inntermost scope, remove unnecessary initializers. * modules/ldap.c (struct lu_ldap_context): New members user_branch, group_branch. (libuser_ldap_init): Initialize user_branch, group_branch. (lu_ldap_base, lu_ldap_ent_to_dn, lu_ldap_lookup, lu_ldap_set) (lu_ldap_del, lu_ldap_handle_lock, lu_ldap_is_locked, lu_ldap_setpass) (lu_ldap_enumerate): Replace the configKey and def parameters by branch. All callers changed to use struct lu_ldap_context members. (lu_ldap_ent_to_dn): Rename variable branch to base. (lu_ldap_base): Don't access module before asserting it is non-NULL. Fix checking of empty branch. (lu_ldap_ent_to_dn): Remove unused variable base. Map namingAttr to LDAP only once. (libuser_ldap_init): Fix memory leak. * modules/ldap.c (LU_LDAP_USER, LU_LDAP_GROUP, LU_LDAP_SHADOW): Remove. (ldap_attribute_map): Replace applicability by type. (lu_ldap_lookup): Replace applicability by type. All callers changed. * modules/ldap.c (lu_ldap_base, lu_ldap_lookup, lu_ldap_set) (lu_ldap_del, lu_ldap_handle_lock, lu_ldap_is_locked, lu_ldap_setpass): Remove handling of NULL which can't ever trigger. * modules/ldap.c (lu_ldap_user_lookup_name, lu_ldap_user_lookup_id) (lu_ldap_group_lookup_name, lu_ldap_group_looup_id, getn_ent_adds) (lu_ldap_is_locked, lu_ldap_setpass, lu_ldap_users_enumerate) (lu_ldap_users_enumerate_full, lu_ldap_groups_enumerate) (lu_ldap_groups_enumerate_full, lu_ldap_users_enumerate_by_group) (lu_ldap_gropus_enumerate_by_user): Hardcode constant results of map_to_ldap (). * docs/libuser.conf.5.in: New file. * docs/Makefile.am: Ship and install libuser.conf.5. 2005-10-07 Miloslav Trmac * lib/config.c (destroy_section): Split from lu_cfg_done(). (gather_values): Removed function. (lu_cfg_done): Don't build a temporary list of sections to free. (lu_cfg_read_single): Don't unnecessarily cache the default value. * config.c (key_add_cached): Split from lu_cfg_init (). (key_defined, key_add, handle_login_defs_key, import_login_defs) (handle_default_useradd_key, import_default_useradd): New functions. (lu_cfg_init): Handle import/login_defs and import/default_useradd. * configure.in (YACC): New check. * Makefile.am (lib_libuser_la_SOURCES): Add lib/getdate.y. * lib/getdate.y: New file, copied from shadow and made reentrant. * lib/internal.h: Declare lu_get_date (). Remove dependencies on other headers. * lib/modules.c (load_one_module): Split from lu_modules_load. Fix leaks. (lu_modules_load): Keep the *modules unchanged on failure. (lu_module_unload): Simplify. * lib/user.c (lu_start): Allocate ctx->scache before lu_cfg_init (). Fix leaks. (lu_end): Remove unnecessary NULL checks. * tests/ldap_test: Allow more time for slapd initialization. 2005-10-01 Miloslav Trmac * lib/config.c (process_line): Cast arguments of isspace () to unsigned char. * apps/apputil.c: Remove unnecessary #include . * lib/config.c (process_line): Split from lu_cfg_init (). Handle very large files and EINTR from read (). Fix FD leak on fstat () failure. Don't prezero the buffer. * lib/config.c (process_line): Fix accesses before the allocated array. Add some microoptimizations. 2005-09-30 Miloslav Trmac * modules/default.-c (salt_initializer_des, salt_initializer_md5) (salt_initializer_blowfish): Remove unnecessary variables, fold values in lu_common_default_salt_specifier (). 2005-09-29 Miloslav Trmac * modules/files.c (libuser_shadow_init): Avoid useless runtime computation. * modules/files.c (lu_files_uses_elevated_privileges): Hardcode "/etc" as default, like other functions. * Makefile.am (modules_libuser_files_la_CPPFLAGS) (modules_libuser_shadow_la_CPPFLAGS): Don't define SYSCONFDIR. (modules_libuser_files_la_CPPFLAGS): Define SYSCONFDIR directly. (SYSCONFDIR): Remove definition. 2005-09-14 Miloslav Trmac * apps/apputil.c (lu_authenticate_unprivileged): Correctly handle pam_get_item () failures. 2005-09-13 Miloslav Trmac * configure.in: Version 0.54. * Makefile.am (lib_libuser_la_LDFLAGS): Update revision. * NEWS: Update. * apps/apputil.h * lib/internal.h: Add G_GNUC_INTERNAL to all declarations. * lib/util.c (lu_strv_len): Remove. * lib/user_private.h (lu_strv_len): Remove declaration. * lib/user.c (lu_default_int): Replace lu_str_case_equal () with its contents. * lib/util.c (lu_str_case_equal, lu_str_equal) (lu_account_name_is_valid): Remove unused functions (not exported in public header files). * lib/internal.h (lu-str_case_equal, lu_str_equal) (lu_account_name_is_valid: Remove declarations. * apps/apputil.c (lu_strconcat): Comment out like its only user. * apps/apputil.h (lu_strconcat): Remove declaration. * lib/internal.h: Merge lib/modules.h and lib/util.h. * lib/user_private.h: Move internal interfaces to internal.h. * Makefile.am (lib_libuser_la_SOURCES) * docs/reference/Makefile.am (IGNORE_HFILES) * lib/config.c * lib/entity.c * lib/misc.c * lib/modules.c * lib/scache.c * lib/user.c * modules/krb5.c: Update. 2005-09-12 Miloslav Trmac * apps/apputil.c (lu_converse) * apps/lnewusers.c (main) * lib/error.c (lu_error_free) * python/misc.c (libuser_prompt_setattr): Remove conditionals around g_free () or g_strfreev (). * apps/lchfn.c (main) * apps/lnewusers.c (main) * lib/util.c (lu_strv_len) * modules/files.c (parse_generic): Use g_strv_length (). * lib/user_private.h (lu_strv_len): Mark as deprecated. * apps/apputil.c (lu_converse): Actually use the "pending" messages. * lib/entity.c (quark_from_attribute): Use g_ascii_strdown (). * modules/files.c (struct format_specifier): Remove member position, assume position == index + 1. (format_passwd, format_group, format_shadow, format_gshadow) (parse_generic, format_generic, generic_mod): Update. * lib/entity.c (lu_ent_add_int) * modules.files.c (format_generic, generic_mod): Beautify. * modules/files.c (generic_mod): Simplify name extraction. * modules/files.c (format_field): New function. (format_generic, generic_mod): Use format_field (). * lib/entity.c (quark_from_attribute): New function. (lu_ent_get_int, lu_ent_clear_int, lu_ent_set_int, lu_ent_add_int): Use quark_from_attribute (). * modules/files.c (generic_mod): Fix crash when attribute is missing. * tests/files_test.py (Tests.testUserMod4): New test. * modules/files.c (parse_generic): Use size_t for field index. * apps/lchage.c (read_ndays): Assume array != NULL && array->n_values > 0. Beautify. * lib/user.c (merge_ent_array_duplicates) * modules/files.c (generic_is_locked) * modules/ldap.c (lu_ldap_lookup, get_ent_adds): Beautify. * apps/lchage.c (main) * apps/lchsh.c (main) * apps/luserdel.c (main) * lib/user.c (lu_dispatch) * modules/files.c (lu_shadow_user_lookup_id, lu_shadow_group_lookup_id) (format_generic): Simplify conditions based on the guarantee below. * docs/reference/tmpl/entity.sgml: Document that attribute values have always at least one value. * lib/entity.c (lu_ent_set_int, lu_ent_del_int): Remove the attribute if there are no values. 2005-06-08 Miloslav Trmac * configure.in: Version 0.53.8. * NEWS: Update. * tests/ldap_test: Remove temporary debugging modification. * lib/user.c (lu_name_allowed, INVALID_NAME_CHARS): Permit "portable" user and group names as defined by SUSv3, plus trailing $. * tests/files_test.py (Tests.testUserAddPrep): New test. * lib/error.h: Use G_GNUC_PRINTF. * python/debug.h (FIXME): Remove unused definition. 2005-06-04 Miloslav Trmac * autogen.sh: Don't set CFLAGS, we don't run configure any more. * configure.in: Use gettext 0.14.3. * tests/ldap_test: Really use tests/ldaprc. 2005-05-20 Miloslav Trmac * autogen.sh: Document the full set of testing flags. Remove hardcoded paths (used to be necessary to workaround parsing paths in configure). * configure.in, Makefile.am: Don't attempt to parse paths in configure, let (make) expand the variables. * libuser.conf.in: Don't use both @scdir@ and @sysconfdir@. * tests/config_test.sh: New file. * tests/config.conf: Rename from tests/config.conf.in. Define defaults/moduledir to point to the build directory. * tests/config_test.c: Don't define LIBUSER_CONF, it is defined by the wrapper script now. * configure.in: Remove many unnecessary tests, simplify others. Fix checking for __secure_getenv(). * Makefile.am: Hardcode variables with only a single possible value * configure.in: Disable building of static libraries. * Makefile.am: Don't remove *.{a,la} of plugins. 2005-04-30 Miloslav Trmac * configure.in: Version 0.53.7. * NEWS: Update. * configure.in: Remove unused GETTEXT_PACKAGE definition. * po/LINGUAS: New file, moved from ALL_LINGUAS in configure.in. Add missing languages (bn_IN, en_GB, et, fi, gu, he, id, ka, ku, lo, mr, si, sq, ur). 2005-04-24 Miloslav Trmac * configure.in: Version 0.53.6. * NEWS: Update. * Makefile.am: Don't ship test/config_test in distribution tarball. * autogen.sh: Don't automatically run configure. * Makefile.am: Update. * tests/config_test.c, tests/config.conf: New files. * Makefile.am: Add tests/config_test.c and tests/config.conf. * lib/config.c (lu_cfg_init): Don't ignore keys with empty values. * lib/config.c (struct config_config): Store the configuration in parsed form, not only the text of the config file. (lu_cfg_init): Parse the configuration only at initialization time. (lu_cfg_done): Update. (lu_cfg_read, lu_cfg_read_keys): Use the paresd configuration. (compare_section_names, compare_key_string, gather_values): New functions. 2005-04-15 Miloslav Trmac * configure.in: Version 0.53.5. * NEWS: Update. * tests/files_test.py (Tests.testUserEnumerate1): Rename from testUserEnumerate. (Tests.testGroupsEnumerate1): Rename from testGroupsEnumerate. (Tests.testUsersEnumerateFull1): Rename from testUsersEnumerateFull. Simplify. (Tests.testGroupsEnumerateFull1): Rename from testGroupsEnumerateFull. Simplify. (Tests.testUsersEnumerateByGroup3): Simplify. (Tests.testUserEnumerate2, Tests.testUsersEnumerateByGroup4) (Tests.testUsersEnumerateFull2, Tests.testGroupsEnumerate2) (Tests.testGroupsEnumerateByUser4, Tests.testGroupsEnumerateFull2): New tests. * modules/files.c (lu_files_enumerate) (lu_files_users_enumerate_by_group) (lu_files_groups_enumerate_by_user, lu_files_enumerate_full): Skip nss_compat lines (starting with '+' or '-'). * tests/files_test: Update initial file contents. * apps/apputil.c: Remove unnecessary include. * configure.in: Use AM_PATH_PYTHON instead of --with-python-version. * Makefile.am (pythonexecdir): Replace by pyexecdir. (DISTCHECK_CONFIGURE_FLAGS): Remove --with-python-version. (PYTHON_CPPFLAGS): New definition. 2005-04-06 Miloslav Trmac * configure.in: Version 0.53.4. * NEWS: Update. 2005-04-06 Miloslav Trmac * modules/ldap.c (ldap_attribute_map): Fix "cn" objectclass. (lu_ldap_needed_objectclasses): Don't add "account" objectclass if it is already present. (lu_ldap_fudge_objectclasses): Add debugging output. 2005-03-05 Miloslav Trmac * configure.in: Version 0.53.3. * NEWS: Update. 2005-03-04 Miloslav Trmac * apps/apputil.c (lu_homedir_populate, lu_signal_nscd) (lu_mailspool_create_remove) * modules/files.c (lu_files_create_backup, generic_add, generic_del): Add more error checking. * modules/ldap.c: Include Cyrus SASL v2 header file. * modules/krb5.c (lu_krb5_user_add, lu_krb5_user_mod) (lu_krb5_user_del, lu_krb5_user_do_lock, lu_krb5_user_islocked) (lu_krb5_user_setpass): Fix checking of lu_ent magic. * docs/reference/libuser-sections.txt: Add lu_values_equal. * docs/reference/tmpl/value.sgml: Document lu_values_equal (). 2005-01-17 Miloslav Trmac * configure.in: Version 0.53.2. * NEWS: Update. * tests/utils_test * tests/utils.conf.in * tests/utils_group * tests/utils_gshadow * tests/utils_passwd * tests/utils_shadow: New files. * Makefile.am: Add tests/utils_test. * apps/lgroupmod.c (main): Fix ignoring of other changes when one of -p, -P, -L, -U is used. Fix group ID changes (look up group members in the original group, and only after applying other member list modifications; don't change primary group ID for users that have a different primary group). * apps/lgroupmod.1: Fix typo. * apps/lnewusers.c (main): Don't use "users" if the input specifies a nonexistent group name. Use the specified user ID. * apps/lnewusers.1: Update. * apps/luseradd.c (main): Actually implement -p and -P. * apps/lusermod.c (main): Fix ignoring of other changes when one of -p, -P, -L, -U is used. 2005-01-15 Miloslav Trmac * apps/lchage.1 * apps/lgroupadd.1 * apps/lgroupdel.1 * apps/lgroupmod.1 * apps/lid.1 * apps/lnewusers.1 * apps/lpasswd.1 * apps/luseradd.1 * apps/luserdel.1 * apps/lusermod.1: New files. * Makefile.am: Add new man pages. * apps/lchage.c (main): Fix cut-and-paste error in -E and -W. * apps/lpasswd.c (main): Make sure the password is always '\0'-terminated. * apps/luseradd.c (main): Exit if a new group can't be created. 2004-12-13 Miloslav Trmac * configure.in: Version 0.53.1. * NEWS: Update. * python/libusermodule.c (initlibuser): Export UT_NAMESIZE from . * pythone/modules.txt: Document UT_NAMESIZE. 2004-11-14 Miloslav Trmac * configure.in: Version 0.53. * NEWS: Update. * docs/reference/libuser-sections.txt * docs/reference/tmpl/user.sgml: Document lu_user_unlock_nonempty () and lu_group_unlock_nonempty (). * tests/files_test.py (Tests.testUserUnlockNonempty1) (Tests.testUserUnlockNonempty2, Tests.testUserUnlockNonempty3) (Tests.testGroupUnlockNonempty1, Tests.testGroupUnlockNonempty2) (Tests.testGroupUnlockNonempty3) * tests/ldap_test.py (Tests.testUserUnlockNonempty1) (Tests.testUserUnlockNonempty2, Tests.testUserUnlockNonempty3) (Tests.testGroupUnlockNonempty1, Tests.testGroupUnlockNonempty2) (Tests.testGroupUnlockNonempty3): Add tests for lu_user_unlock_nonempty () * modules/files.c (reset_default_context): Don't report error in restoring default context, there is no way to handle them anyway. * python/admin.c (libuser_admin_unlock_user) (libuser_admin_unlock_group): Allow calling lu_user_unlock_nonempty () and lu_group_unlock_nonempty (). * python/modules.txt: Document unlockUser nad unlockGroup changes. * tests/files_test.py (Tests.testUserUnlock3) (Tests.testGroupUnlock3) * tests/ldap_test.py (Tests.testUserUnlock3) (Tests.testGroupUnlock2): Test that empty password fields can be unlocked. * modules/ldap.c (enum lock_op): New definition. (lu_ldap_handle_lock): Use enum lock_op. All callers changed. (lu_ldap_user_unlock_nonempty, lu_ldap_group_unlock_nonempty) (libuser_ldap_init): Handle user_unlock_nonempty and group_unlock_nonempty. * modules/files.c (enum lock_op): New definition. (lock_process): Use enum lock_op, return error status. (generic_lock): Use enum lock_op. All callers changed. (lu_files_user_unlock_nonempty, lu_files_group_unlock_nonempty) (lu_shadow_user_unlock_nonempty, lu_shadow_group_unlock_nonempty) (libuser_files_init, libuser_shadow_init): Handle user_unlock_nonempty and group_unlock_nonempty. * modules/sasldb.c (lu_sasldb_user_unlock_nonempty) (lu_sasldb_group_unlock_nonempty, libuser_sasldb_init): Define user_unlock_nonempty and group_unlock_nonempty stubs. * lib/error.h (lu_error_unlock_empty): New definition. * lib/error.c (lu_strerror, lu_error_is_error): Handle lu_error_unlock_empty. * lib/user_private.h (LU_MODULE_VERSION): Bump. (struct lu_module): New members user_unlock_nonempty, group_unlock_nonempty. * lib/modules.c (lu_modules_load): Handle new struct lu_module members. * lib/user.c (lu_user_unlock_nonempty, lu_group_unlock_nonempty): New functions. (lu_dispatch_id): New values user_unlock_nonempty, group_unlock_nonempty. (run_single, run_list, lu_dispatch): Handle new lu_dispatch_id values. * lib/user.h: Add declarations. * NEWS: Update. * tests/files_test.py (Tests.testUserLock1, Tests.testUserLock2) (Tests.testUserUnlock1, Tests.testUserUnlock2) (Tests.testUserIslocked1, Tests.testUserIslocked2) (Tests.testUserSetpass, Tests.testUserRemovepass) (Tests.testGroupLock1, Tests.testGroupLock2) (Tests.testGroupUnlock1, Tests.testGroupUnlock2) (Tests.testGroupIsLocked1, Tests.testGroupIsLocked2) (Tests.testGroupSetpass, Tests.testGroupRemovepass): Test the functions don't change the non-shadow password fields. * modules/files.c (generic_setpass): Allow setting a shadow password even if the current shadow password is invalid. All callers updated. * apps/luseradd.c (main): Don't attempt to create a user group if --gid specifies a numerical ID of a non-existing group. * apps/lnewusers.c (main): Fix handling of empty home directory field. * apps/lusermod.c (main): Make copies of entity values that get destroyed by lu_user_modify (). Get a list of groups an user is in before renaming the user. Don't reuse 'ent' for group entitites. * NEWS: Update. 2004-11-13 Miloslav Trmac * modules/files.c (struct format specifier): New member def_if_empty. (format_passwd, format_group, format_shadow, format_gshadow): Update. (parse_generic): Check for def_if_empty. * apps/lgroupadd.c (main) * apps/lgroupmod.c (main) * apps/lchage.c (read_ndays) * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/lusermod.c (main) * lib/misc.c (lu_value_get_id) * lib/user.c (lu_default_int) * modules/files.c (parse_field) * modules/ldap.c (lu_ldap_lookup) * samples/lookup.c (main): Check strto* () for error yet more properly. * tests/files.conf.in, tests/files_test, tests/files_test.py: New files. * Makefile.am: Add tests/files_test. (EXTRA_DIST): Don't change values depending on whether LDAP is used. * modules/files.c (libuser_files_init, libuser_shadow_init): Allow using the modules as non-root if explicitly requested. 2004-11-09 Miloslav Trmac * tests/ldap_test.py (Tests.testUserLookupId) (Tests.testGroupLookupId): Test large ID values. (Tests.testUserAdd4, Tests.testUserMod3, Tests.testGroupAdd3) (Tests.testGroupMod3): New tests. * apps/lusermod.c (main): Fix user renaming in groups where the user is a member or administrator. * python/ent.c (libuser_convert_to_value): Handle whole id_t range. * python/ent.c (libuser_convert_to_value): Report Python exception instead of aborting. Return success/failure status. (libuser_entity_setattr, libuser_entity_add, libuser_entity_set) (libuser_entity_set_item): Handle errors reported by libuser_convert_to_value(). * python/ent.c (convert_value_array_pylist): Handle G_TYPE_INT64. * python/admin.c (lubser_admin_lookup_user_id) (libuser_admin_lookup_group_id, libuser_admin_create_home) (libuser_admin_get_first_unused_id_type): Handle whole uid_t/gid_t range. 2004-11-08 Miloslav Trmac * lib/user.c (lu_default_int): Use id_t. * lib/user.c (lu_get_first_unused_id): Change the interface to use id_t. Don't allow (id_t)-1. * lib/user_private.h: Update prototype. * modules/files.c (format_passwd, format_group): Use G_TYPE_INVALID for id_t. (parse_field): Handle G_TYPE_INVALID. * modules/files.c (parse_field): New function, split from parse_generic (). Don't interpret input as octal or hexadecimal numbers. (parse_generic): Use parse_field (). * modules/ldap.c (lu_ldap_lookup): Convert id_t values to numbers, not strings. Don't interpret input as octal or hexadecimal numbers. * samples/lookup.c (main): Handle whole id_t range. * lib/user.c (lu_default_int): Convert id_t values to numbers, not strings. Don't interpret input as octal or hexadecimal numbers. * lub/user.c (lu_default_int): Handle whole range of uid_t/gid_t in '%u' substitution. * lib/user.c (lu_default_int): Remove copy-and-pasted usage of idkeystring as a generic fallback. * lib/user.c (lu_default_int): Handle whole ID range. * lib/user.c (compare_strings): Replace compare_ints (). (merge_ent_array_duplicates): Use lu_value_strdup () instead of poking in GValues. * modules/ldap.c (value_compare): Removed function. * lib/entity.c (lu_ent_add_int) * lib/user.c (remove_duplicate_values) * modules/ldap.c (arrays_equal, get_ent_mods): Use lu_values_equal (). * lib/misc.c (lu_values_equal): New function. * lib/user.h: Add declaration. * apps/lgroupmod.c (main) * apps/lgroupadd.c (main) * apps/luseradd.c (main) * apps/lusermod.c (main): Handle whole gid_t/uid_t range for '--gid' and '--uid', respectively. 2004-11-07 Miloslav Trmac * apps/apputil.h (INVALID): Removed definition. * apps/apputil.c (lu_mailspool_create_remove) * apps/lgroupadd.c (main) * apps/lgroupmod.c (main) * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/lusermod.c (main): Use LU_VALUE_INVALID_ID to indicate unknown value. * lib/user.c (INVALID): Removed definition. (extract_id, convert_user_name_to_id, convert_group_name_to_id): Return LU_VALUE_INVALID_ID on failure. All callers changed. (lu_dispatch): Use LU_VALUE_INVALID_ID to indicate unknown value. All callers changed. * samples/testuser.c (dump_attribute): Handle G_TYPE_INT64. * modules/ldap.c (lu_ldap_user_lookup_id): Handle whole uid_t range. (lu_ldap_group_lookup_id, lu_ldap_users_enumerate_by_group): Handle whole gid_t range. * modules/files.c (lu_files_user_lookup_id) (lu_shadow_user_lookup_id): Handle whole uid_t range. (lu_files_group_lookup_id, lu_shadow_group_lookup_id) (lu_files_users_enumerate_by_group): Handle whole gid_t range. * lib/user.c (run_single, run_list): Use id_t for ldata. All callers changed. (convert_user_name_to_id): Return uid_t. (convert_group_name_to_id): Return gid_t. * lib/entity.c (lu_ent_dump): Handle G_TYPE_INT64. * apps/luserdel.c (main): Handle whole gid_t range. * apps/luseradd.c (main): Handle whole gid_t range. * apps/lnewusers.c (main): Handle whole uid_t/gid_t range, don't ignore invalid values. * apps/lchage.c (read_ndays): Handle G_TYPE_INT64. * apps/apputil.c (lu_mailspool_create_remove) * apps/lgroupmod.c (main) * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/luserdel.c (main) * modules/ldap.c (lu_ldap_groups_enumerate_by_user): Use lu_value_get_id (). * docs/reference/tmpl/value.sgml: New file. * lib/misc.c (lu_value_get_id): New function. * lib/user.h: Add declaration. (LU_VALUE_INVALID_ID): New macro. * apps/lgroupadd.c (main) * apps/lgroupmod.c (main) * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/lusermod.c (main) * lib/user.c (lu_default_int): Use lu_value_init_set_id (). * lib/misc.c (lu_value_init_set_id): New function. * lib/user.h: Add declaration. * lib/misc.c (lu_value_strdup): Handle G_TYPE_INT64. * lib/misc.c (lu_strdup_value): Rename to lu_value_strdup (). All callers changed. * lib/user.h: Rename declaration. * apps/lchage.c (read_ndays) * apps/lnewusers.c (main) * apps/luseradd.c (main) * lib/user.c (lu_default_int) * modules/files.c (parse_generic) * modules/ldap.c (lu_ldap_lookup) (lu_ldap_groups_enumerate_by_user): Properly check strtol () for error. 2004-11-05 Miloslav Trmac * modules/files.c (generic_lock, generic_is_locked, generic_setpass) * apps/lchfn.c (main): Use lu_strdup_value (). * modules/files.c (generic_is_locked): Fix memory leak. 2004-11-04 Miloslav Trmac * modules/ldap.c (get_ent_adds, get_ent_mods, lu_ldap_set) (lu_ldap_del, lu_ldap_handle_lock, lu_ldap_is_locked) (lu_ldap_setpass): Use lu_strdup_value () instead of value_as_string (). (value_as_string): Removed function. * modules/sasldb.c (lu_sasldb_user_munge, lu_sasldb_user_is_locked): Use lu_strdup_value (). 2004-11-03 Miloslav Trmac * apps/apputil.c (lu_mailspool_create_remove) * apps/lchfn.c (main) * apps/lchsh.c (main) * apps/lid.c (main) * modules/files.c (lu_shadow_user_lookup_id, lu_shadow_group_lookup_id) (format_generic, generic_mod, generic_del): Use lu_strdup_value (). * lib/misc.c (lu_strdup_value): New function. * lib/user.h: Add declaration. * docs/reference/tmpl/entity.sgml * docs/reference/libuser-sections.txt: Document lu_strdup_value (). 2004-11-02 Miloslav Trmac * configure.in: Version 0.52.6. * NEWS: Update. 2004-11-01 Miloslav Trmac * modules/sasldb.c (lu_sasldb_user_lookup_name, lu_sasldb_user_munge) (lu_sasldb_user_is_locked): Remove assertions on possible error codes, undocumented codes happen too. * modules/sasldb.c (libuser_sasldb_init): Fix self-describing module name. * modules/sasldb.c (lu_sasldb_user_removepass) (lu_sasldb_group_removepass): New functions (libuser_sasldb_init): Set the user_removepass and group_removepass handlers. * lib/modules.c (lu_modules_load): Don't close a NULL handle. * modules/sasldb.c (lu_sasldb_user_add): Return TRUE on success. * configure.in * modules/sasldb.c (lu_sasldb_user_lookup_name, lu_sasldb_user_munge) (libuser_sasldb_init): Use Cyrus SASL v2. * modules/ldap.c (bind_server): Don't attempt to bind using NULL bind DN. * modules/ldap.c (bind_server): Report at least the first encountered bind error. 2004-10-30 Miloslav Trmac * apps/lchfn.c (main) * apps/lchsh.c (main) * apps/lnewusers.c (main) * samples/enum.c (main) * samples/testuser.c (main): Output error messages on stderr. * apps/lchfn.c (main): Exit if specified user does not exist. * apps/lnewusers.c (main): Don't attempt to act on improperly formatted lines. * po/POTFILES.in: Add missing files. * modules/ldap.c (lu_ldap_set, lu_ldap_del): Remove superfluous '\n' and '.\n' at message ends. * apps/lgroupadd.c (main) * apps/lgroupdel.c (main) * apps/lgroupmod.c (main) * apps/lchage.c (main) * apps/lchfn.c (main) * apps/lchsh.c (main) * apps/lid.c (main) * apps/lnewusers.c (main) * apps/luseradd.c (main) * apps/luserdel.c (main) * apps/lusermod.c (main) * python/admin.c (libuser_admin_do_wrap, libuser_admin_setpass): * samples/enum.c (main): * samples/homedir.c (main): * samples/lookup.c (main): * samples/testuser.c (main): Use lu_strerror () instead of (error ? error->string : _("unknown error")). Report error cause in more error messages. * apps/lchsh.c (main): Report error if shell was not changed. * modules/ldap.c (lu_ldap_set, lu_ldap_handle_lock) (lu_ldap_setpass) * modules/files.c (set_default_context, reset_default_context) (generic_setpass) * lib/config.c (lu_cfg_init) * apps/apputil.c (lu_authenticate_unprivileged): Mark strings for translation. * lib/util.c (lu_util_line_get_matchingx): Fix memory leak. 2004-10-14 Miloslav Trmac * lib/error.h (LU_ERROR_CHECK): Add missing '\n'. 2004-10-11 Miloslav Trmac * configure.in: Version 0.52.5. * NEWS: Update. * python/admin.c (libuser_admin_add_user) (libuser_admin_modify_user) (libuser_admin_delete_user): Fix memory leak. * python/admin.c (libuser_admin_add_user) (libuser_admin_delete_user): Fix reference counting. * python/modules.txt: Fix modifyUser documentation about not creating home directory by default. * python/admin.c (libuser_admin_modify_user): Pass original entity to libuser_admin_move_home(). 2004-10-10 Miloslav Trmac * configure.in: Version 0.52.4. * NEWS: Update. * python/misc.c (libuser_prompt_destroy): Fix memory leak. (libuser_admin_python_prompter): Properly copy struct libuser_prompt to avoid double free(). * python/admin.c (libuser_admin_enumerate_users) (libuser_admin_enumerate_groups) (libuser_admin_enumerate_users_by_group) (libuser_admin_enumerate_groups_by_user): Fix memory leaks. * python/admin.c (libuser_admin_enumerate_users_full) (libuser_admin_enumerate_groups_full) (libuser_admin_enumerate_users_by_group_full) (libuser_admin_enumerate_groups_by_user_full) * python/ent.c (convert_value_array_pylist) (libuser_entity_getattrlist): * python/libusermodule.c (libuser_get_user_shells): * python/misc.c (libuser_admin_python_prompter): Fix memory leaks. 2004-10-09 Miloslav Trmac * lib/entity.c (lu_ent_free): Fix memory leak. * modules/files.c (generic_add): Fix memory leak. * lib/user.c (merge_ent_array_duplicates): Remove fflush (from debugging?). * modules/files.c (lu_files_enumerate_full): Fix memory leak. 2004-09-29 Miloslav Trmac * configure.in: Version 0.52.3. * NEWS: Update. * Makefile.am: Readd -D_LIBUSER_MODULE for modules. 2004-09-28 Miloslav Trmac * configure.in: Version 0.52.2. * NEWS: Update. * modules/ldap.c (lu_ldap_set): Beautify debug messages. * modules/ldap.c (connect_server): Allow ldap URIs, don't require TLS for servers specified by URIs. * docs/sgml/libuser.sgml: Document URI support. 2004-09-27 Miloslav Trmac * configure.in: Version 0.52.1. * NEWS: Update. * modules/files.c (set_default_context): Make sure *prev_context is always initialized. 2004-09-27 Miloslav Trmac * configure.in: Version 0.52. * autogen.sh: Create the `admin' subdirectory if needed. * Makefile.am (CVSTAG): Fix definition. * Makefile.am (archive): Ship with formatted documentation. * configure.in: Define AC_CONFIG_AUX_DIR. * configure.in: Remove various unneeded parts. * configure.in, Makefile.am: Use automake conditionals instead of MODULES. * Makefile.am (TESTS): Define only if LDAP. * Makefile.am: Use AM_CPPFLAGS to eliminate the most redundant lines. * Makefile.am (uninstall-local): Fix typo. * Makefile.am: Link exactly with needed libraries. * docs/sgml/Makefile.am: Merge with docs/Makefile.am. * Makefile.am (CVSTAG): Define portably. * configure.in: Use new-style AC_INIT and AM_INIT_AUTOMAKE. Set automake options `subdir-objects' and `-Wall'. * modules/ldap.c (lu_ldap_lookup): Silence gcc warning. * apps/Makefile.am, lib/Makefile.am, modules/Makefile.am, samples/Makefile.am: Merge with top-level Makefile.am. * apps/lchage.c, apps/lchfn.c, apps/lgroupadd.c, apps/lgroupdel.c, apps/lgroupmod.c, apps/lid.c, apps/lnewusers.c, apps/lpasswd.c, apps/luseradd.c, apps/luserdel.c, apps/lusermod.c, samples/enum.c, python/admin.c, python/ent.c, python/misc.c, python/libusermodule.c, python/quotamodule.c, samples/field.c, samples/homedir.c, samples/lookup.c, samples/quotaq.c, samples/prompt.c, samples/testuser.c: Change path of config.h. * NEWS: Update. * tests/ldap_test.py (Tests.testUserDel, Tests.testUserLock1) (Tests.testUserLock2, Tests.testUserUnlock1) (Tests.testUserUnlock2, Tests.testUserIslocked1) (Tests.testUserIslocked2, Tests.testUserSetpass1) (Tests.testUserSetpass2, Tests.testUserSetpass3) (Tests.testUserRemovepass1, Tests.testUserRemovepass2) (Tests.testUserRemovepass3, Tests.testUsersEnumerate) (Tests.testUsersEnumerateByGroup1) (Tests.testUsersEnumerateByGroup2) (Tests.testUsersEnumerateByGroup3, Tests.testUsersEnumerateFull) (Tests.testGroupLookupName, Tests.testGroupLookupId) (Tests.testGroupAdd1, Tests.testGroupAdd2, Tests.testGroupMod1) (Tests.testGroupMod2, Tests.testGroupDel, Tests.testGroupLock1) (Tests.testGroupLock2, Tests.testGroupUnlock1) (Tests.testGroupUnlock2, Tests.testGroupIsLocked1) (Tests.testGroupIsLocked2, Tests.testGroupSetpass1) (Tests.testGroupSetpass2, Tests.testGroupSetpass3) (Tests.testGroupRemovepass1, Tests.testGroupRemovepass2) (Tests.testGroupRemovepass3, Tests.testGroupsEnumerate) (Tests.testGroupsEnumerateByUser1) (Tests.testGroupsEnumerateByUser2) (Tests.testGroupsEnumerateByUser3, Tests.testGroupsEnumerateFull): New tests. * tests/ldap_test.py (Tests.testUserAdd2, Tests.testUserMod2): Update for final password entity model. * modules/ldap.c (lu_ldap_is_locked): Remove unneeded parameter `type'. All callers changed. * tests/ldap_test: Clean up after running the tests. * tests/ldap_test.py: Workaround openssl's inability to handle repeated library loading and unloading. * modules/ldap.c (lu_ldap_groups_enumerate_by_user): Don't consider all string representations of numbers invalid. (lu_ldap_groups_enumerate_by_user): Don't free data owned by the entity. * lib/user.c (run_single): Don't run user_removepass when group_removepass is wanted. * modules/ldap.c (lu_ldap_group_removepass): Implement. * modules/ldap.c (lu_ldap_is_locked): Use LU_GROUPPASSWORD and POSIXGROUP for groups. * modules/ldap.c (lu_ldap_setpass): Don't attempt to remove the attribute if it does not exist. (lu_ldap_setpass): Use LU_GROUPPASSWORD for groups. * modules/ldap.c (lu_ldap_handle_lock): Use LU_GROUPPASSWORD for groups. * modules/ldap.c (ldap_attribute_map): Remove LU_SHADOWPASSWORD. (get_ent_adds): Skip LU_SHADOWPASSWORD. It should be completely ignored now. * python/libusermodule.c (initlibuser): Fix libuser.GROUPPASSWORD. 2004-09-26 Miloslav Trmac * lib/user.c (lu_end): Fix memory leak. * modules/ldap.c (lu_ldap_ent_to_dn): Remove parameter `applicability'. All callers changed. * modules/ldap.c (lu_ldap_fudge_objectclasses): Use the mod_values macro. (ldap_attribute_map): Make members point to constant strings. Casts added to users where needed. (lu_ldap_user_attributes, lu_ldap_group_attributes): Make it a constant array of constant strings. (libuser_ldap_init): Store converted pointers to data that will be eventually freed as part of the context. (lu_ldap_lookup): Use mapped_user_attributes, mapped_group_attributes. (map_from_ldap): Remove. (lu_ldap_close_module): Free mapped_user_attributes, mapped_group_attributes. 2004-09-25 Miloslav Trmac * modules/ldap.c (lu_ldap_needed_objectclasses): s/User/Entity/g (lu_ldap_needed_objectclasses): Fix debugging printout. (lu_ldap_needed_objectclasses): Ignore attributes not applicable to given entity type. * modules/ldap.c (ldap_attribute_map): Remove mapping for LU_ADMINISTRATORNAME. (SHADOWGROUP): Remove. * python/admin.c (libuser_admin_removepass_user) (libuser_admin_removepass_group): Throw exception on error. * modules/ldap.c (lu_ldap_user_removepass): Implement. * modules/ldap.c (lu_ldap_is_locked): Fix memory leak. (lu_ldap_is_locked): Map libuser attribute names to LDAP names. * modules/ldap.c (lu_ldap_setpass): Initialize addvalues[0] and rmvalues[0] even if the original password is already encrypted. (lu_ldap_setpass): Map libuser attribute names to LDAP names. (lu_ldap_setpass): Remove (maybe all) values before adding new values. (lu_ldap_setpass): Fix memory leak. * modules/ldap.c (lu_ldap_handle_lock): Don't skip LU_CRYPTED twice. (lu_ldap_handle_lock): Fix memory leaks. (lu_ldap_handle_lock): Don't remove and add the same value. (lu_ldap_handle_lock): Avoid unnecessary g_malloc0()/g_free() pair. (lu_ldap_handle_lock): Don't drop LU_CRYPTED when unlocking unlocked account. (lu_ldap_handle_lock): Don't lock locked accounts again. * modules/ldap.c (lu_ldap_user_attributes): Drop LU_SHADOWPASSWORD. (get_ent_adds): Drop LU_SHADOWPASSWORD, not LU_USERPASSWORD. * modules/ldap.c (lu_ldap_set): Remove parameter `attributes'. All callers changed. 2004-09-24 Miloslav Trmac * configure.in: Version 0.51.12. * Makefile.am: Remove the spec file and "release" tagging from CVS, rework the spec file a bit. * configure.in: Don't create libuser.spec. * NEWS: Move data from libuser.spec.in. * libuser.spec.in: Remove. * tests/ldap.conf.in, tests/ldaprc, tests/ldap_skel.ldif, tests/ldap_test.py, tests/slapd.conf.in: New files * Makefile.am (TESTS, EXTRA_DIST): Use and distribute tests. * python/ent.c (libuser_entity_set): Don't both return success and indicate error at the same time. * python/ent.c (libuser_entity_set_item): Don't clear the entity if the new value has invalid type. * modules/files.c (generic_lookup): Fix memory leak. * python/ent.c (libuser_convert_to_value): Fix memory leak. * modules/ldap.c (get_ent_mods, lu_ldap_set): Special-case entry renaming. (lu_ldap_set): Fix desired RDN computation in rename. * modules/ldap.c (lu_ldap_set): Use the original name when looking up the DN of an entry that is being renamed. 2004-09-23 Miloslav Trmac * configure.in: Version 0.51.11. * libuser.conf.in: Avoid mentioning /usr/lib* in config file. 2004-09-21 Miloslav Trmac * modules/ldap.c (lu_ldap_set): New parameter `add'. All callers changed. * modules/ldap.c (get_ent_mods): Simplify somewhat. * modules/ldap.c (objectclass_present, lu_ldap_needed_objectclasses) (get_ent_adds): Split and customize/fix from lu_ldap_fudge_objectclasses (). (lu_ldap_fudge_objectclasses): Use lu_ldap_needed_objectclasses (). * modules/ldap.c (ACCOUNT): New macro. (SHADOWACCOUNT): Define as "shadowAccount" again. * modules/ldap.c (ldap_attribute_map): Remove unused member `ldap_attribute_key'. * modules/ldap.c (lu_ldap_user_lookup_name, lu_ldap_user_lookup_id): Add LU_LDAP_SHADOW to `applicability' argument. * python/libusermodule.c (initlibuser): Add missing attribute names. 2004-09-19 Miloslav Trmac * python/admin.c (libuser_admin_setattr): Fix reference counting. 2004-09-18 Miloslav Trmac * python/misc.c (libuser_admin_python_prompter, libuser_admin_prompt): Fix reference counting. * modules/ldap.c (libuser_ldap_init): Don't set error when it was already set. 2004-09-17 Miloslav Trmac * modules/ldap.c (value_compare): Make sense of comparison same for longs and strings. * modules/ldap.c (lu_ldap_ent_to_dn, libuser_ldap_init): Fix memory leaks. * modules/ldap.c (libuser_ldap_init, bind_server): Respect bind_simple and bind_sasl. 2004-09-20 Miloslav Trmac * apps/lchfn.1, apps/lchsh.1: New files. * apps/Makefile.am (dist_man_MANS): Distribute new man pages. libuser-0.60~dfsg/configure0000755000175000017500000212564412226342574016026 0ustar tzafrirtzafrir#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for libuser 0.60. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and mitr@redhat.com $0: about your system, including any error possibly output $0: before this message. Then install a modern shell, or $0: manually run the script under such a shell if you do $0: have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='libuser' PACKAGE_TARNAME='libuser' PACKAGE_VERSION='0.60' PACKAGE_STRING='libuser 0.60' PACKAGE_BUGREPORT='mitr@redhat.com' PACKAGE_URL='https://fedorahosted.org/libuser/' ac_unique_file="lib/user.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" gt_needs= ac_func_list= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS KRB5_FALSE KRB5_TRUE GTK_DOC_USE_REBASE_FALSE GTK_DOC_USE_REBASE_TRUE GTK_DOC_USE_LIBTOOL_FALSE GTK_DOC_USE_LIBTOOL_TRUE GTK_DOC_BUILD_PDF_FALSE GTK_DOC_BUILD_PDF_TRUE GTK_DOC_BUILD_HTML_FALSE GTK_DOC_BUILD_HTML_TRUE ENABLE_GTK_DOC_FALSE ENABLE_GTK_DOC_TRUE GTKDOC_DEPS_LIBS GTKDOC_DEPS_CFLAGS HTML_DIR GTKDOC_MKPDF GTKDOC_REBASE GTKDOC_CHECK SELINUX_LIBS pkgpyexecdir pyexecdir pkgpythondir pythondir PYTHON_PLATFORM PYTHON_EXEC_PREFIX PYTHON_PREFIX PYTHON_VERSION PYTHON WITH_PYTHON_FALSE WITH_PYTHON_TRUE SASL_FALSE SASL_TRUE LDAP_FALSE LDAP_TRUE CRYPT_LIBS POSUB LTLIBINTL LIBINTL INTLLIBS LTLIBICONV LIBICONV INTL_MACOSX_LIBS XGETTEXT_EXTRA_OPTIONS MSGMERGE XGETTEXT_015 XGETTEXT GMSGFMT_015 MSGFMT_015 GMSGFMT MSGFMT GETTEXT_MACRO_VERSION USE_NLS GMODULE_LIBS GMODULE_CFLAGS GOBJECT_LIBS GOBJECT_CFLAGS GLIB_LIBS GLIB_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL NSCD YACC ac_ct_AR AR EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking enable_largefile enable_static enable_shared with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock enable_nls enable_rpath with_libiconv_prefix with_libintl_prefix with_popt with_ldap with_sasl with_python with_selinux enable_Werror with_html_dir enable_gtk_doc enable_gtk_doc_html enable_gtk_doc_pdf ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP NSCD PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR GLIB_CFLAGS GLIB_LIBS GOBJECT_CFLAGS GOBJECT_LIBS GMODULE_CFLAGS GMODULE_LIBS PYTHON GTKDOC_DEPS_CFLAGS GTKDOC_DEPS_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures libuser 0.60 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/libuser] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of libuser 0.60:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --disable-largefile omit support for large files --enable-static[=PKGS] build static libraries [default=no] --enable-shared[=PKGS] build shared libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --disable-nls do not use Native Language Support --disable-rpath do not hardcode runtime library paths --enable-Werror use -Werror if compiling with gcc (default is NO) --enable-gtk-doc use gtk-doc to build documentation [[default=no]] --enable-gtk-doc-html build documentation in html format [[default=yes]] --enable-gtk-doc-pdf build documentation in pdf format [[default=no]] Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot=DIR Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir --with-popt=DIR use popt headers and libraries under DIR --with-ldap=DIR use OpenLDAP 2.x headers and libraries under DIR --with-sasl=DIR use Cyrus SASL headers and libraries under DIR --with-python build Python modules (default is YES) --with-selinux work with SELinux extensions (default is NO) --with-html-dir=PATH path to installed docs Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor NSCD Path to nscd PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path GLIB_CFLAGS C compiler flags for GLIB, overriding pkg-config GLIB_LIBS linker flags for GLIB, overriding pkg-config GOBJECT_CFLAGS C compiler flags for GOBJECT, overriding pkg-config GOBJECT_LIBS linker flags for GOBJECT, overriding pkg-config GMODULE_CFLAGS C compiler flags for GMODULE, overriding pkg-config GMODULE_LIBS linker flags for GMODULE, overriding pkg-config PYTHON the Python interpreter GTKDOC_DEPS_CFLAGS C compiler flags for GTKDOC_DEPS, overriding pkg-config GTKDOC_DEPS_LIBS linker flags for GTKDOC_DEPS, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . libuser home page: . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF libuser configure 0.60 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ------------------------------ ## ## Report this to mitr@redhat.com ## ## ------------------------------ ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by libuser $as_me 0.60, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi gt_needs="$gt_needs " as_fn_append ac_func_list " sasl_user_exists" # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers config.h" ac_aux_dir= for ac_dir in admin "$srcdir"/admin; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in admin \"$srcdir\"/admin" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. am__api_version='1.13' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='libuser' VERSION='0.60' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" if test "x$ac_cv_header_minix_config_h" = xyes; then : MINIX=yes else MINIX= fi if test "$MINIX" = yes; then $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h $as_echo "#define _MINIX 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } if ${ac_cv_safe_to_define___extensions__+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_safe_to_define___extensions__=yes else ac_cv_safe_to_define___extensions__=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 $as_echo "$ac_cv_safe_to_define___extensions__" >&6; } test $ac_cv_safe_to_define___extensions__ = yes && $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h $as_echo "#define _ALL_SOURCE 1" >>confdefs.h $as_echo "#define _GNU_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi if test "x$CC" != xcc; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 $as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5 $as_echo_n "checking whether cc understands -c and -o together... " >&6; } fi set dummy $CC; ac_cc=`$as_echo "$2" | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # We do the test twice because some compilers refuse to overwrite an # existing .o file with -o, though they will create one. ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -f conftest2.$ac_objext && { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then eval ac_cv_prog_cc_${ac_cc}_c_o=yes if test "x$CC" != xcc; then # Test first that cc exists at all. if { ac_try='cc -c conftest.$ac_ext >&5' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -f conftest2.$ac_objext && { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # cc works too. : else # cc exists but doesn't like -o. eval ac_cv_prog_cc_${ac_cc}_c_o=no fi fi fi else eval ac_cv_prog_cc_${ac_cc}_c_o=no fi rm -f core conftest* fi if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h fi # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o if test "$am_t" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi if test -n "$ac_tool_prefix"; then for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} { $as_echo "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 $as_echo_n "checking the archiver ($AR) interface... " >&6; } if ${am_cv_ar_interface+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5 $as_echo "$am_cv_ar_interface" >&6; } case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) as_fn_error $? "could not determine $AR interface" "$LINENO" 5 ;; esac # Extract the first word of "bison -y", so it can be a program name with args. set dummy bison -y; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_YACC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$YACC"; then ac_cv_prog_YACC="$YACC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_YACC="bison -y" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_YACC" && ac_cv_prog_YACC=":" fi fi YACC=$ac_cv_prog_YACC if test -n "$YACC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5 $as_echo "$YACC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "nscd", so it can be a program name with args. set dummy nscd; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_NSCD+:} false; then : $as_echo_n "(cached) " >&6 else case $NSCD in [\\/]* | ?:[\\/]*) ac_cv_path_NSCD="$NSCD" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_NSCD="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_NSCD" && ac_cv_path_NSCD="/usr/sbin/nscd" ;; esac fi NSCD=$ac_cv_path_NSCD if test -n "$NSCD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NSCD" >&5 $as_echo "$NSCD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Check whether --enable-largefile was given. if test "${enable_largefile+set}" = set; then : enableval=$enable_largefile; fi if test "$enable_largefile" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 $as_echo_n "checking for special C compiler options needed for large files... " >&6; } if ${ac_cv_sys_largefile_CC+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_sys_largefile_CC=no if test "$GCC" != yes; then ac_save_CC=$CC while :; do # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : break fi rm -f core conftest.err conftest.$ac_objext CC="$CC -n32" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_largefile_CC=' -n32'; break fi rm -f core conftest.err conftest.$ac_objext break done CC=$ac_save_CC rm -f conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 $as_echo "$ac_cv_sys_largefile_CC" >&6; } if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 $as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } if ${ac_cv_sys_file_offset_bits+:} false; then : $as_echo_n "(cached) " >&6 else while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_file_offset_bits=no; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _FILE_OFFSET_BITS 64 #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_file_offset_bits=64; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_sys_file_offset_bits=unknown break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 $as_echo "$ac_cv_sys_file_offset_bits" >&6; } case $ac_cv_sys_file_offset_bits in #( no | unknown) ;; *) cat >>confdefs.h <<_ACEOF #define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits _ACEOF ;; esac rm -rf conftest* if test $ac_cv_sys_file_offset_bits = unknown; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 $as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } if ${ac_cv_sys_large_files+:} false; then : $as_echo_n "(cached) " >&6 else while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_large_files=no; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _LARGE_FILES 1 #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_large_files=1; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_sys_large_files=unknown break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 $as_echo "$ac_cv_sys_large_files" >&6; } case $ac_cv_sys_large_files in #( no | unknown) ;; *) cat >>confdefs.h <<_ACEOF #define _LARGE_FILES $ac_cv_sys_large_files _ACEOF ;; esac rm -rf conftest* fi fi case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.2' macro_revision='1.3337' ltmain="$ac_aux_dir/ltmain.sh" # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case "$ECHO" in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 $as_echo "$xsi_shell" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } lt_shell_append=no ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 $as_echo "$lt_shell_append" >&6; } if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test "$GCC" != yes; then reload_cmds=false fi ;; darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 $as_echo "${with_sysroot}" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done # Set options # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=no fi enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac else pic_mode=default fi test -z "$pic_mode" && pic_mode=default # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='${wl}--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test x"$lt_cv_prog_compiler__b" = xyes; then archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test "$lt_cv_irix_exported_symbol" = yes; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([A-Za-z]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test "$hardcode_action" = relink || test "$inherit_rpath" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report which library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" ac_config_commands="$ac_config_commands libtool" # Only expand once: if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB" >&5 $as_echo_n "checking for GLIB... " >&6; } if test -n "$GLIB_CFLAGS"; then pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 gmodule-no-export-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 gmodule-no-export-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 gmodule-no-export-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GLIB_LIBS"; then pkg_cv_GLIB_LIBS="$GLIB_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 gmodule-no-export-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 gmodule-no-export-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GLIB_LIBS=`$PKG_CONFIG --libs "glib-2.0 gmodule-no-export-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 gmodule-no-export-2.0" 2>&1` else GLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 gmodule-no-export-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GLIB_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (glib-2.0 gmodule-no-export-2.0) were not met: $GLIB_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GLIB_CFLAGS and GLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GLIB_CFLAGS and GLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else GLIB_CFLAGS=$pkg_cv_GLIB_CFLAGS GLIB_LIBS=$pkg_cv_GLIB_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GOBJECT" >&5 $as_echo_n "checking for GOBJECT... " >&6; } if test -n "$GOBJECT_CFLAGS"; then pkg_cv_GOBJECT_CFLAGS="$GOBJECT_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 gobject-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 gobject-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GOBJECT_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 gobject-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GOBJECT_LIBS"; then pkg_cv_GOBJECT_LIBS="$GOBJECT_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 gobject-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 gobject-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GOBJECT_LIBS=`$PKG_CONFIG --libs "glib-2.0 gobject-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GOBJECT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 gobject-2.0" 2>&1` else GOBJECT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 gobject-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GOBJECT_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (glib-2.0 gobject-2.0) were not met: $GOBJECT_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GOBJECT_CFLAGS and GOBJECT_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GOBJECT_CFLAGS and GOBJECT_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else GOBJECT_CFLAGS=$pkg_cv_GOBJECT_CFLAGS GOBJECT_LIBS=$pkg_cv_GOBJECT_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GMODULE" >&5 $as_echo_n "checking for GMODULE... " >&6; } if test -n "$GMODULE_CFLAGS"; then pkg_cv_GMODULE_CFLAGS="$GMODULE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 gmodule-no-export-2.0 gobject-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 gmodule-no-export-2.0 gobject-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GMODULE_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 gmodule-no-export-2.0 gobject-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GMODULE_LIBS"; then pkg_cv_GMODULE_LIBS="$GMODULE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 gmodule-no-export-2.0 gobject-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 gmodule-no-export-2.0 gobject-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GMODULE_LIBS=`$PKG_CONFIG --libs "glib-2.0 gmodule-no-export-2.0 gobject-2.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GMODULE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 gmodule-no-export-2.0 gobject-2.0" 2>&1` else GMODULE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 gmodule-no-export-2.0 gobject-2.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GMODULE_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (glib-2.0 gmodule-no-export-2.0 gobject-2.0) were not met: $GMODULE_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GMODULE_CFLAGS and GMODULE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GMODULE_CFLAGS and GMODULE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else GMODULE_CFLAGS=$pkg_cv_GMODULE_CFLAGS GMODULE_LIBS=$pkg_cv_GMODULE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi $as_echo "#define G_DISABLE_DEPRECATED /**/" >>confdefs.h # GValueArray is a part of external API of the library; warnings about it being # deprecated do no good. $as_echo "#define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_30" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } GETTEXT_MACRO_VERSION=0.18 # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f messages.po case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGMERGE" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$localedir" || localedir='${datadir}/locale' test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= ac_config_commands="$ac_config_commands po-directories" if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'` while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${acl_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$acl_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${acl_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$acl_cv_prog_gnu_ld" >&6; } with_gnu_ld=$acl_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 $as_echo_n "checking for shared library run path origin... " >&6; } if ${acl_cv_rpath+:} false; then : $as_echo_n "(cached) " >&6 else CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 $as_echo "$acl_cv_rpath" >&6; } wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" # Check whether --enable-rpath was given. if test "${enable_rpath+set}" = set; then : enableval=$enable_rpath; : else enable_rpath=yes fi acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5 $as_echo_n "checking for 64-bit host... " >&6; } if ${gl_cv_solaris_64bit+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _LP64 sixtyfour bits #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "sixtyfour bits" >/dev/null 2>&1; then : gl_cv_solaris_64bit=yes else gl_cv_solaris_64bit=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5 $as_echo "$gl_cv_solaris_64bit" >&6; } if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libiconv-prefix was given. if test "${with_libiconv_prefix+set}" = set; then : withval=$with_libiconv_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBICONV= LTLIBICONV= INCICONV= LIBICONV_PREFIX= HAVE_LIBICONV= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'iconv'; then LIBICONV_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; } if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFPreferencesCopyAppValue(NULL, NULL) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFPreferencesCopyAppValue=yes else gt_cv_func_CFPreferencesCopyAppValue=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 $as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; } if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then $as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; } if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { CFLocaleCopyCurrent(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_CFLocaleCopyCurrent=yes else gt_cv_func_CFLocaleCopyCurrent=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 $as_echo "$gt_cv_func_CFLocaleCopyCurrent" >&6; } if test $gt_cv_func_CFLocaleCopyCurrent = yes; then $as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi LIBINTL= LTLIBINTL= POSUB= case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 $as_echo_n "checking for GNU gettext in libc... " >&6; } if eval \${$gt_func_gnugettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libc=yes" else eval "$gt_func_gnugettext_libc=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$gt_func_gnugettext_libc { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 $as_echo_n "checking for iconv... " >&6; } if ${am_cv_func_iconv+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_lib_iconv=yes am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 $as_echo "$am_cv_func_iconv" >&6; } if test "$am_cv_func_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 $as_echo_n "checking for working iconv... " >&6; } if ${am_cv_func_iconv_works+:} false; then : $as_echo_n "(cached) " >&6 else am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi if test "$cross_compiling" = yes; then : case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { int result = 0; /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 1; iconv_close (cd_utf8_to_88591); } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static const char input[] = "\263"; char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 2; iconv_close (cd_ascii_to_88591); } } /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ { iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304"; static char buf[2] = { (char)0xDE, (char)0xAD }; const char *inptr = input; size_t inbytesleft = 1; char *outptr = buf; size_t outbytesleft = 1; size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) result |= 4; iconv_close (cd_88591_to_utf8); } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) result |= 8; iconv_close (cd_88591_to_utf8); } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) result |= 16; return result; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : am_cv_func_iconv_works=yes else am_cv_func_iconv_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi LIBS="$am_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 $as_echo "$am_cv_func_iconv_works" >&6; } case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then $as_echo "#define HAVE_ICONV 1" >>confdefs.h fi if test "$am_cv_lib_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 $as_echo_n "checking how to link with libiconv... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 $as_echo "$LIBICONV" >&6; } else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libintl-prefix was given. if test "${with_libintl_prefix+set}" = set; then : withval=$with_libintl_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBINTL= LTLIBINTL= INCINTL= LIBINTL_PREFIX= HAVE_LIBINTL= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'intl'; then LIBINTL_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 $as_echo_n "checking for GNU gettext in libintl... " >&6; } if eval \${$gt_func_gnugettext_libintl+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$gt_func_gnugettext_libintl=yes" else eval "$gt_func_gnugettext_libintl=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi eval ac_res=\$$gt_func_gnugettext_libintl { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h else USE_NLS=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 $as_echo_n "checking whether to use NLS... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } if test "$USE_NLS" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 $as_echo_n "checking where the gettext function comes from... " >&6; } if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 $as_echo "$gt_source" >&6; } fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 $as_echo_n "checking how to link with libintl... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 $as_echo "$LIBINTL" >&6; } for element in $INCINTL; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done fi $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h $as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h fi POSUB=po fi INTLLIBS="$LIBINTL" LIBSAVE="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing crypt" >&5 $as_echo_n "checking for library containing crypt... " >&6; } if ${ac_cv_search_crypt+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char crypt (); int main () { return crypt (); ; return 0; } _ACEOF for ac_lib in '' crypt; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_crypt=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_crypt+:} false; then : break fi done if ${ac_cv_search_crypt+:} false; then : else ac_cv_search_crypt=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_crypt" >&5 $as_echo "$ac_cv_search_crypt" >&6; } ac_res=$ac_cv_search_crypt if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi CRYPT_LIBS="$LIBS" LIBS="$LIBSAVE" # Check whether --with-popt was given. if test "${with_popt+set}" = set; then : withval=$with_popt; if test "x$withval" != x -a "x$withval" != xyes -a "x$withval" != xno -a \ "x$withval" != x/usr ; then CPPFLAGS="$CPPFLAGS -I$popt/include" LDFLAGS="$LDFLAGS -L$popt/lib" fi fi # Check whether --with-ldap was given. if test "${with_ldap+set}" = set; then : withval=$with_ldap; if test "x$withval" != x -a "x$withval" != xno ; then ldap=$withval else ldap=no fi else ldap=no fi build_ldap=no if test x$ldap != xno ; then LIBSAVE="$LIBS" if test x$ldap != xyes -a x$ldap != x/usr ; then CPPFLAGS="$CPPFLAGS -I$ldap/include" LDFLAGS="$LDFLAGS -L$ldap/lib" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing ldap_sasl_interactive_bind_s" >&5 $as_echo_n "checking for library containing ldap_sasl_interactive_bind_s... " >&6; } if ${ac_cv_search_ldap_sasl_interactive_bind_s+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ldap_sasl_interactive_bind_s (); int main () { return ldap_sasl_interactive_bind_s (); ; return 0; } _ACEOF for ac_lib in '' ldap; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_ldap_sasl_interactive_bind_s=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_ldap_sasl_interactive_bind_s+:} false; then : break fi done if ${ac_cv_search_ldap_sasl_interactive_bind_s+:} false; then : else ac_cv_search_ldap_sasl_interactive_bind_s=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_ldap_sasl_interactive_bind_s" >&5 $as_echo "$ac_cv_search_ldap_sasl_interactive_bind_s" >&6; } ac_res=$ac_cv_search_ldap_sasl_interactive_bind_s if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi ac_fn_c_check_func "$LINENO" "ldap_sasl_interactive_bind_s" "ac_cv_func_ldap_sasl_interactive_bind_s" if test "x$ac_cv_func_ldap_sasl_interactive_bind_s" = xyes; then : ac_fn_c_check_func "$LINENO" "ldap_set_option" "ac_cv_func_ldap_set_option" if test "x$ac_cv_func_ldap_set_option" = xyes; then : ac_fn_c_check_func "$LINENO" "ldap_start_tls_s" "ac_cv_func_ldap_start_tls_s" if test "x$ac_cv_func_ldap_start_tls_s" = xyes; then : ac_fn_c_check_func "$LINENO" "ldap_modify_ext_s" "ac_cv_func_ldap_modify_ext_s" if test "x$ac_cv_func_ldap_modify_ext_s" = xyes; then : ac_fn_c_check_func "$LINENO" "ldap_delete_ext_s" "ac_cv_func_ldap_delete_ext_s" if test "x$ac_cv_func_ldap_delete_ext_s" = xyes; then : build_ldap=yes fi fi fi fi fi LIBS="$LIBSAVE" fi if test $build_ldap = yes; then LDAP_TRUE= LDAP_FALSE='#' else LDAP_TRUE='#' LDAP_FALSE= fi # Check whether --with-sasl was given. if test "${with_sasl+set}" = set; then : withval=$with_sasl; if test "x$withval" != x -a "x$withval" != xno ; then sasl=$withval else sasl=no fi else sasl=no fi build_sasl=no if test x$sasl != xno ; then LIBSAVE="$LIBS" if test x$sasl != xyes -a x$sasl != x/usr ; then CPPFLAGS="$CPPFLAGS -I$sasl/include" LDFLAGS="$LDFLAGS -L$sasl/lib" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing sasl_setpass" >&5 $as_echo_n "checking for library containing sasl_setpass... " >&6; } if ${ac_cv_search_sasl_setpass+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char sasl_setpass (); int main () { return sasl_setpass (); ; return 0; } _ACEOF for ac_lib in '' sasl2; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_sasl_setpass=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_sasl_setpass+:} false; then : break fi done if ${ac_cv_search_sasl_setpass+:} false; then : else ac_cv_search_sasl_setpass=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_sasl_setpass" >&5 $as_echo "$ac_cv_search_sasl_setpass" >&6; } ac_res=$ac_cv_search_sasl_setpass if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" build_sasl=yes fi for ac_func in $ac_func_list do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done LIBS="$LIBSAVE" fi if test $build_sasl = yes; then SASL_TRUE= SASL_FALSE='#' else SASL_TRUE='#' SASL_FALSE= fi # Check whether --with-python was given. if test "${with_python+set}" = set; then : withval=$with_python; else with_python=yes fi if test $with_python != no; then WITH_PYTHON_TRUE= WITH_PYTHON_FALSE='#' else WITH_PYTHON_TRUE='#' WITH_PYTHON_FALSE= fi if test $with_python != no ; then # Find any Python interpreter. if test -z "$PYTHON"; then for ac_prog in python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else case $PYTHON in [\\/]* | ?:[\\/]*) ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PYTHON=$ac_cv_path_PYTHON if test -n "$PYTHON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 $as_echo "$PYTHON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$PYTHON" && break done test -n "$PYTHON" || PYTHON=":" fi am_display_PYTHON=python if test "$PYTHON" = :; then as_fn_error $? "no suitable Python interpreter found" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5 $as_echo_n "checking for $am_display_PYTHON version... " >&6; } if ${am_cv_python_version+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 $as_echo "$am_cv_python_version" >&6; } PYTHON_VERSION=$am_cv_python_version PYTHON_PREFIX='${prefix}' PYTHON_EXEC_PREFIX='${exec_prefix}' { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5 $as_echo_n "checking for $am_display_PYTHON platform... " >&6; } if ${am_cv_python_platform+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5 $as_echo "$am_cv_python_platform" >&6; } PYTHON_PLATFORM=$am_cv_python_platform # Just factor out some code duplication. am_python_setup_sysconfig="\ import sys # Prefer sysconfig over distutils.sysconfig, for better compatibility # with python 3.x. See automake bug#10227. try: import sysconfig except ImportError: can_use_sysconfig = 0 else: can_use_sysconfig = 1 # Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs: # try: from platform import python_implementation if python_implementation() == 'CPython' and sys.version[:3] == '2.7': can_use_sysconfig = 0 except ImportError: pass" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5 $as_echo_n "checking for $am_display_PYTHON script directory... " >&6; } if ${am_cv_python_pythondir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5 $as_echo "$am_cv_python_pythondir" >&6; } pythondir=$am_cv_python_pythondir pkgpythondir=\${pythondir}/$PACKAGE { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5 $as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; } if ${am_cv_python_pyexecdir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5 $as_echo "$am_cv_python_pyexecdir" >&6; } pyexecdir=$am_cv_python_pyexecdir pkgpyexecdir=\${pyexecdir}/$PACKAGE fi fi # Check whether --with-selinux was given. if test "${with_selinux+set}" = set; then : withval=$with_selinux; selinux=$withval else selinux=no fi if test "x$selinux" != xno ; then SELINUX_LIBS=-lselinux $as_echo "#define WITH_SELINUX 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } if ${ac_cv_c_const+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __cplusplus /* Ultrix mips cc rejects this sort of thing. */ typedef int charset[2]; const charset cs = { 0, 0 }; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this sort of thing. */ char tx; char *t = &tx; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; } bx; struct s *b = &bx; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_const=yes else ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 $as_echo "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then $as_echo "#define const /**/" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5 $as_echo_n "checking for uid_t in sys/types.h... " >&6; } if ${ac_cv_type_uid_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "uid_t" >/dev/null 2>&1; then : ac_cv_type_uid_t=yes else ac_cv_type_uid_t=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_uid_t" >&5 $as_echo "$ac_cv_type_uid_t" >&6; } if test $ac_cv_type_uid_t = no; then $as_echo "#define uid_t int" >>confdefs.h $as_echo "#define gid_t int" >>confdefs.h fi ac_fn_c_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default" if test "x$ac_cv_type_mode_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define mode_t int _ACEOF fi ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default" if test "x$ac_cv_type_off_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define off_t long int _ACEOF fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi for ac_func in __secure_getenv secure_getenv do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done # Modify CFLAGS after all tests are run (some of them could fail because # of the -Werror). if test "$GCC" = yes ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for available GCC warning flags" >&5 $as_echo_n "checking for available GCC warning flags... " >&6; } if ${mitr_cv_prog_gcc_warnings+:} false; then : $as_echo_n "(cached) " >&6 else mitr_cv_prog_gcc_warnings="" for i in -Wall -Wcast-align -Wmissing-noreturn -Wnested-externs -Wpointer-arith -Wstrict-prototypes -Wundef; do oldcflags=$CFLAGS CFLAGS="$CFLAGS $i" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : mitr_cv_prog_gcc_warnings="$mitr_cv_prog_gcc_warnings $i" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS=$oldcflags done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $mitr_cv_prog_gcc_warnings" >&5 $as_echo "$mitr_cv_prog_gcc_warnings" >&6; } CFLAGS="$CFLAGS $mitr_cv_prog_gcc_warnings" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we should use -Werror" >&5 $as_echo_n "checking whether we should use -Werror... " >&6; } # Check whether --enable-Werror was given. if test "${enable_Werror+set}" = set; then : enableval=$enable_Werror; else enable_Werror=no fi if test "x$enable_Werror" != xno; then CFLAGS="$CFLAGS -Werror" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_Werror" >&5 $as_echo "$enable_Werror" >&6; } fi # Extract the first word of "gtkdoc-check", so it can be a program name with args. set dummy gtkdoc-check; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GTKDOC_CHECK+:} false; then : $as_echo_n "(cached) " >&6 else case $GTKDOC_CHECK in [\\/]* | ?:[\\/]*) ac_cv_path_GTKDOC_CHECK="$GTKDOC_CHECK" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GTKDOC_CHECK="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi GTKDOC_CHECK=$ac_cv_path_GTKDOC_CHECK if test -n "$GTKDOC_CHECK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK" >&5 $as_echo "$GTKDOC_CHECK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi for ac_prog in gtkdoc-rebase do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GTKDOC_REBASE+:} false; then : $as_echo_n "(cached) " >&6 else case $GTKDOC_REBASE in [\\/]* | ?:[\\/]*) ac_cv_path_GTKDOC_REBASE="$GTKDOC_REBASE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GTKDOC_REBASE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi GTKDOC_REBASE=$ac_cv_path_GTKDOC_REBASE if test -n "$GTKDOC_REBASE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_REBASE" >&5 $as_echo "$GTKDOC_REBASE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$GTKDOC_REBASE" && break done test -n "$GTKDOC_REBASE" || GTKDOC_REBASE="true" # Extract the first word of "gtkdoc-mkpdf", so it can be a program name with args. set dummy gtkdoc-mkpdf; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GTKDOC_MKPDF+:} false; then : $as_echo_n "(cached) " >&6 else case $GTKDOC_MKPDF in [\\/]* | ?:[\\/]*) ac_cv_path_GTKDOC_MKPDF="$GTKDOC_MKPDF" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GTKDOC_MKPDF="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi GTKDOC_MKPDF=$ac_cv_path_GTKDOC_MKPDF if test -n "$GTKDOC_MKPDF"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_MKPDF" >&5 $as_echo "$GTKDOC_MKPDF" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Check whether --with-html-dir was given. if test "${with_html_dir+set}" = set; then : withval=$with_html_dir; else with_html_dir='${datadir}/gtk-doc/html' fi HTML_DIR="$with_html_dir" # Check whether --enable-gtk-doc was given. if test "${enable_gtk_doc+set}" = set; then : enableval=$enable_gtk_doc; else enable_gtk_doc=no fi if test x$enable_gtk_doc = xyes; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-doc\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk-doc") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : else as_fn_error $? "gtk-doc not installed and --enable-gtk-doc requested" "$LINENO" 5 fi if test "x$PACKAGE_NAME" != "xglib"; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTKDOC_DEPS" >&5 $as_echo_n "checking for GTKDOC_DEPS... " >&6; } if test -n "$GTKDOC_DEPS_CFLAGS"; then pkg_cv_GTKDOC_DEPS_CFLAGS="$GTKDOC_DEPS_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTKDOC_DEPS_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTKDOC_DEPS_LIBS"; then pkg_cv_GTKDOC_DEPS_LIBS="$GTKDOC_DEPS_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTKDOC_DEPS_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GTKDOC_DEPS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>&1` else GTKDOC_DEPS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTKDOC_DEPS_PKG_ERRORS" >&5 : elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } : else GTKDOC_DEPS_CFLAGS=$pkg_cv_GTKDOC_DEPS_CFLAGS GTKDOC_DEPS_LIBS=$pkg_cv_GTKDOC_DEPS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build gtk-doc documentation" >&5 $as_echo_n "checking whether to build gtk-doc documentation... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_gtk_doc" >&5 $as_echo "$enable_gtk_doc" >&6; } # Check whether --enable-gtk-doc-html was given. if test "${enable_gtk_doc_html+set}" = set; then : enableval=$enable_gtk_doc_html; else enable_gtk_doc_html=yes fi # Check whether --enable-gtk-doc-pdf was given. if test "${enable_gtk_doc_pdf+set}" = set; then : enableval=$enable_gtk_doc_pdf; else enable_gtk_doc_pdf=no fi if test -z "$GTKDOC_MKPDF"; then enable_gtk_doc_pdf=no fi if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi if test x$enable_gtk_doc = xyes; then ENABLE_GTK_DOC_TRUE= ENABLE_GTK_DOC_FALSE='#' else ENABLE_GTK_DOC_TRUE='#' ENABLE_GTK_DOC_FALSE= fi if test x$enable_gtk_doc_html = xyes; then GTK_DOC_BUILD_HTML_TRUE= GTK_DOC_BUILD_HTML_FALSE='#' else GTK_DOC_BUILD_HTML_TRUE='#' GTK_DOC_BUILD_HTML_FALSE= fi if test x$enable_gtk_doc_pdf = xyes; then GTK_DOC_BUILD_PDF_TRUE= GTK_DOC_BUILD_PDF_FALSE='#' else GTK_DOC_BUILD_PDF_TRUE='#' GTK_DOC_BUILD_PDF_FALSE= fi if test -n "$LIBTOOL"; then GTK_DOC_USE_LIBTOOL_TRUE= GTK_DOC_USE_LIBTOOL_FALSE='#' else GTK_DOC_USE_LIBTOOL_TRUE='#' GTK_DOC_USE_LIBTOOL_FALSE= fi if test -n "$GTKDOC_REBASE"; then GTK_DOC_USE_REBASE_TRUE= GTK_DOC_USE_REBASE_FALSE='#' else GTK_DOC_USE_REBASE_TRUE='#' GTK_DOC_USE_REBASE_FALSE= fi if false; then KRB5_TRUE= KRB5_FALSE='#' else KRB5_TRUE='#' KRB5_FALSE= fi ac_config_files="$ac_config_files Makefile po/Makefile.in docs/Makefile docs/reference/Makefile libuser.pc" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${LDAP_TRUE}" && test -z "${LDAP_FALSE}"; then as_fn_error $? "conditional \"LDAP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${SASL_TRUE}" && test -z "${SASL_FALSE}"; then as_fn_error $? "conditional \"SASL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${WITH_PYTHON_TRUE}" && test -z "${WITH_PYTHON_FALSE}"; then as_fn_error $? "conditional \"WITH_PYTHON\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_GTK_DOC_TRUE}" && test -z "${ENABLE_GTK_DOC_FALSE}"; then as_fn_error $? "conditional \"ENABLE_GTK_DOC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GTK_DOC_BUILD_HTML_TRUE}" && test -z "${GTK_DOC_BUILD_HTML_FALSE}"; then as_fn_error $? "conditional \"GTK_DOC_BUILD_HTML\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GTK_DOC_BUILD_PDF_TRUE}" && test -z "${GTK_DOC_BUILD_PDF_FALSE}"; then as_fn_error $? "conditional \"GTK_DOC_BUILD_PDF\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GTK_DOC_USE_LIBTOOL_TRUE}" && test -z "${GTK_DOC_USE_LIBTOOL_FALSE}"; then as_fn_error $? "conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GTK_DOC_USE_REBASE_TRUE}" && test -z "${GTK_DOC_USE_REBASE_FALSE}"; then as_fn_error $? "conditional \"GTK_DOC_USE_REBASE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${KRB5_TRUE}" && test -z "${KRB5_FALSE}"; then as_fn_error $? "conditional \"KRB5\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by libuser $as_me 0.60, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to . libuser home page: ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ libuser config.status 0.60 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ nm_file_list_spec \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ sys_lib_dlsearch_path_spec; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;; "docs/reference/Makefile") CONFIG_FILES="$CONFIG_FILES docs/reference/Makefile" ;; "libuser.pc") CONFIG_FILES="$CONFIG_FILES libuser.pc" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "libtool":C) # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="" # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and in which our libraries should be installed. lt_sysroot=$lt_sysroot # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain="$ac_aux_dir/ltmain.sh" # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) if test x"$xsi_shell" = xyes; then sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ func_dirname ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_basename ()$/,/^} # func_basename /c\ func_basename ()\ {\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ func_dirname_and_basename ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ func_stripname ()\ {\ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ \ # positional parameters, so assign one to ordinary parameter first.\ \ func_stripname_result=${3}\ \ func_stripname_result=${func_stripname_result#"${1}"}\ \ func_stripname_result=${func_stripname_result%"${2}"}\ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ func_split_long_opt ()\ {\ \ func_split_long_opt_name=${1%%=*}\ \ func_split_long_opt_arg=${1#*=}\ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ func_split_short_opt ()\ {\ \ func_split_short_opt_arg=${1#??}\ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ func_lo2o ()\ {\ \ case ${1} in\ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ \ *) func_lo2o_result=${1} ;;\ \ esac\ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_xform ()$/,/^} # func_xform /c\ func_xform ()\ {\ func_xform_result=${1%.*}.lo\ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_arith ()$/,/^} # func_arith /c\ func_arith ()\ {\ func_arith_result=$(( $* ))\ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_len ()$/,/^} # func_len /c\ func_len ()\ {\ func_len_result=${#1}\ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$lt_shell_append" = xyes; then sed -e '/^func_append ()$/,/^} # func_append /c\ func_append ()\ {\ eval "${1}+=\\${2}"\ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ func_append_quoted ()\ {\ \ func_quote_for_eval "${2}"\ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} fi mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ;; "po-directories":C) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" gt_tab=`printf '\t'` cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi libuser-0.60~dfsg/po/0000755000175000017500000000000012226342606014513 5ustar tzafrirtzafrirlibuser-0.60~dfsg/po/da.gmo0000644000175000017500000006333212226342604015610 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<>>5> ?9?"M?p?? ??3?" @-@J@`@,z@+@@$@$@ "A0A&HA&oAAGA'A7&B0^B.B'B.B"C#8C\CyC$CC%CC+D%ID7oD7D7DE3E4SE6E7EE1F%FF lFwFF#F FF!F"G 6G!WG"yG#GG%G-H 0H >HLH]H tHH%HHHH(H%I 6ICIYIvIIIIII I.I J%J,J3J;JJJ6dJ*JJ3JK!8K6ZK)KKK KKK L$&LKL&aLLL$L5L=MXM!_M M!M MMM NN.N"GN!jN"N$NN#NO-#O QO^OtOO(OO@O;PQP qP#PPP"P Q>3Q'rQ+Q+Q.Q@!R5bR8R8R S$S<BS"SSSSS:T*?T"jT0TT'TT9UOU)oU$U2U5U#'V5KVKVV,V-W"HW)kW/W)WW X&X)CX,mX+XX1XY)Y6HY(Y-Y,Y2Z#6Z,ZZ<Z+ZZ [+%[ Q[_[q[[[[['[ \\6\V\ u\\\\5\'\W]-v]+].],] ,^ 7^/C^0s^^#^)^_+_"G_"j______``9`'T`)|`%` `'`Oa eaa>a+ab)/b"Yb+|bb1b2b'cDc_cvc"cc9c&d+d!Jdldddd ddd*e:e Le Xefe-ue3eeef'$f'Lf&tfff0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Danish (http://www.transifex.com/projects/p/fedora/language/da/) Language: da MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s havde ikke gid-nummer. %s eksisterer ikke %s er ikke godkendt til at ændre finger-info for %s %s værdi "%s": ":" ikke tilladtKonto udløber: %s Fejl ved oprettelse af konto: %s. Konto er låst. Konto er ikke låst. Godkendelse mislykkedes for %s. Både -L og -U specificeret. Kan ikke sætte standardomgivelser for /etc/passwd Skifter fingerinformation for %s. Ændrer adgangskode for %s. Ændrer skal for %s. Kopierer brugerstruktur: Cyrus-SASL fejl ved oprettelse af bruger: %sCyrus-SASL fejl ved fjernelse af bruger: %sDAGEStandardnavn for brugerattributter: Standardklasser for brugerobjekter: E-postadresseOpføring ikke fundet. Fejl under tilstandsskift for "%s": %sFejl ved ændring af ejer for "%s": %sFejl ved oprettelse af %s: %s. Fejl under opretelse af konto for "%s": linjen er formatteret forkert. Fejl ved oprettelse af gruppe "%s": %s Fejl ved oprettelse af gruppe for "%s" med GID %jd: %s Fejl ved oprettelse af hjemmekatalog for %s: %s Fejl under oprettelse af mailspool for %s: %s Fejl under oprettelse af mailspool: %s Fejl ved oprettelse af brugerkonto for %s: %s Fejl ved initialisering af %s: %s Fejl ved initialisering af %s: %s. Fejl ved initiering af PAM. Fejl ved opslag af %s: %s. Fejl ved flytning af %s til %s: %s. Fejl ved åbning af "%s": %s. Fejl ved tolkning af argumenter: %s. Fejl ved læsning af "%s": %sFejl under læsning fra fil-deskriptor %d. Fejl under fjernelse af mailspool: %sFejl ved indstilling af første adgangskode for %s: %s Fejl ved indstilling af adgangskode for gruppe %s: %s. Fejl ved indstilling af adgangskode for bruger %s: %s. Fejl ved skrivning "%s": %sKunne ikke fjerne rettigheder. Fejl ved ændring af aldringsinformation for %s: %s Fejl ved indstilling af adgangskode for gruppe %s: %s Fejl ved indstilling af adgangskode for bruger %s: %s. Finger-information ændret. Finger-information ikke ændret: fejl i inddata. Finger-information ikke ændret: %s. Fulde navnGECOS-informationny brugers GECOS-informationHenter standard brugerattributter: Givet navnGruppe %jd eksisterer ikke Gruppe %s kunne ikke slettes: %s Gruppe %s kunne ikke slettes: %s. Gruppe %s kunne ikke låses: %s Gruppe %s kunne ikke ændres: %s Gruppe %s kunne ikke ændres: %s. Gruppe %s kunne ikke låses op: %s Gruppe %s eksisterer ikke. Oprettelse af gruppe mislykkedes: %s Gruppe med GID %jd havde ikke et gruppenavn. HjemmetelefonInaktiv: %ld Inaktiv: Aldrig Intern PAM-fejl "%s". Intern fejl. Ugyldig ID %s Ugyldig standardværdi af felt %s: %sUgyldig gruppe-ID %s Ugyldig bruger-ID %s Kerberos Admin PrincipalKerberos-adgangskode for Admin PrincipalKerberos-områdeLDAP Bind DNLDAP Bind-adgangskodeLDAP SASL-godkendelsesbrugerLDAP SASL-brugerLDAP søgebase DNNavn på LDAP-serverSidste ændring: %s Maksimum: %ld Maksimum: Ingen Minimum: %ld Adgangskode skal ændres ved næste indlogningNAVNNUMMERAldrigNy skalNy adgangskodeNy adgangskode (bekræft)Intet gruppenavn specificeret, intet navn for gid %d. Intet gruppenavn specificeret, bruger %s. Intet gruppenavn specificeret. Ingen gruppe med GID %jd eksisterer, fjerner ikke. Ingen ny hjemmemappe for %s. Ingen gammel hjemmemappe for %s. Intet brugernavn specificeret, intet navn for uid %d. Brugernavn ikke specificeret, bruger %s. Brugernavn ikke specificeret. KontorKontortelefonSTIAdgangskode udløber: %s Adgangskode inaktiv: %s Ændring af adgangskode annulleret. Adgangskode ændret. Adgangskoder er ikke ens, prøv igen. Forespørgsler mislykkedes. Forespørgsler lykkedes. Nægter at oprette konto med UID 0. Nægter at bruge farlig hjemmemappe "%s" som standardNægter at bruge farlig hjemmemappe "%s" til %s som standard STRENGSøger efter gruppe med navn %s. Søger efter gruppe med ID %jd. Søger efter bruger ved navn %s. Søger efter bruger med ID %jd. Skal ændret. Skal ikke ændret: %s EfternavnUkendt bruger godkendt. Ukendte brugeromgivelserBruger %s kunne ikke slettes: %s. Bruger %s kunne ikke låses: %s. Bruger %s kunne ikke ændres: %s. Bruger %s kunne ikke låses op: %s. Bruger %s eksisterer ikke. Manglende bruger-overensstemmelse. Advarsel: %ld Advarsel: Gruppe med ID %jd eksisterer ikke. [TILVALG...][TILVALG...] [bruger][TILVALG...] gruppe[TILVALG...] bruger":" ikke tilladt i krypteret adgangskodeadgang nægtetsikkerhedskopifilen "%s" eksisterer og er ikke en almindelig filuoverensstemmelse med filstørrelse for sikkerhedskopieringforkert bruger- eller gruppe-idforkert bruger- eller gruppenavnændr gruppe til at have givet navnskift logind-navn for brugerny brugers almindelige navnkonfigurationsfil "%s" er for storkunne ikke binde til LDAP-serverkunne ikke binde til LDAP-server, første forsøg som "%s": %skunne ikke omsætte TLS med LDAP-serverkunne ikke åbne konfigurationsfil "%s": %skunne ikke læse konfigurationsfil "%s": %skunne ikke sætte LDAP-protokol til version %dkunne ikke få stat()-oplysninger på konfigurationsfil "%s": %skunne ikke bestemme sikkerhedsomgivelser til "%s": %skunne ikke få fat på standard sikkerhedsomgivelser: %skunne ikke få fat på sikkerhedsomgivelser til "%s": %skunne ikke åbne "%s": %skunne ikke læse fra "%s": %skunne ikke sætte standard sikkerhedsomgivelser til "%s": %skunne ikke køre stat på "%s": %skunne ikke skrive til "%s": %sopret en systemgruppeopret en systembrugerdata ikke fundet i fildato siden sidste adgangskode-ændring i dage siden 1/1/70dage før udløb begynder at advare brugermappe med filer til den nye brugeropret ikke en gruppe med samme navn som brugerenopret ikke hjemme-mapperopret ikke en hjemme-mappe til brugerenopret ikke mail-køerfjern ikke brugerens private gruppe, hvis brugeren har enentiteten har ingen %s-attributentitet har ingen %s eller %s-attributterentitetsobjekt har ingen %s-attributentitetsstruktur har ingen %s eller %s-attributterentiteten blev oprettet uden %s- eller %s-attributteropføringen findes allerede i filenelement med konfliktende navn findes allerede i filenkunne ikke forbinde til kadm5-serveren for tjeneste "%s" i område "%s": %sfejl ved oprettelse af "%s": %sfejl ved oprettelse af LDAP-mappeindgang: %sfejl ved oprettelse af hjemmemappe for brugerfejl ved kryptering af adgangskodefejl ved initialisering af Cyrus-SASL: %sfejl ved initialisering af kerberos-biblioteketfejl ved initialisering af ldap-bibliotekfejl ved indlæsning af modulfejl ved låsning af filfejl ved låsning af fil: %sfejl ved behandling af terminalegenskaberfejl ved ændring af LDAP-mappeopføring: %sfejl ved flytning af hjemmemappe for brugerfejl ved åbning af filfejl ved læsning af brugernavn "%s" for kerberosfejl ved læsning af filfejl ved læsning fra terminalfejl ved læsning af information for "%s" fra kerberosfejl ved læsning af terminal-egenskaberfejl ved fjernelse af LDAP-mappeopføring: %sfejl ved fjernelse af hjemmemappe for brugerfejl ved ændring af navn på LDAP-mappeindgang %sfejl ved løsning af symbol i modulfejl ved indstilling af adgangskode for "%s"fejl ved indstilling af adgangskode i LDAP-mappen for %s: %sfejl ved indstilling af terminal-egenskaberfejl ved oplysning på filfejl ved skrivning af filfil med optegnelser over bruger-informationgenerisk fejlgid for ny gruppeny brugers fornavngruppe %jd har ikke noget navngruppe %s har ingen GIDgruppe %s ikke fundetgruppe til ny brugergruppe har hverken et navn eller en GIDhjemme-mappehjemme-mappe til ny brugerny brugers hjemme-telefonnummerintern fejl ved initialiseringugyldig IDugyldig attributværdiugyldig modulkombinationugyldigt nummeruoverensstemmelse med version i bibliotek eller moduloplist brugerens forældelses-parametremedlemmer af en navngivet gruppe istedet for den navngivne brugers gruppe-medlemsskaberliste over administratorer som skal tilføjesliste over administratorer som skal fjernesliste over gruppe-medlemmer som skal tilføjesliste over gruppe-medlemmer som skal fjerneslås kontolås gruppemaksimum antal dage mellem skift af adgangskodeminimum antal dage mellem adgangskode-ændringermodul "%s" definerer ikke "%s"modul deaktiveret i konfigurationenuoverensstemmelse med modulversion i "%s"flyt hjemme-mappe-indholdnavn indeholder kontroltegnnavn indeholder ugyldigt tegn "%c"navn indeholder tegn udenfor ASCIInavn indeholder blanktegnnavn er ikke satnavn er for langt (%zu > %d)navn er for kortnavn starter med en bindestregnyt krypteret adgangskodeny almindelig adgangskodeingen "%s"-attribut fundetingen initialiseringsfunktion %s i "%s"der findes ingen skyggefil -- deaktivereringen sådanne objekter i LDAP-mappenikke tilstrækkelige privilegierkører ikke med superbruger-privilegierantal af dage efter adgangskode-udløbsdato'en, før konto'en anses som inaktivobjektet havde ingen %s-attributobjektet har ikke attribut %soplist kun medlemsskab-information efter navn, og ikke UID/GIDadgangskode-udløbsdato i dage siden 1/1/70brugerens klartekst-adgangskodeklartekst-adgangskode til brug med gruppebrugerens præ-hashede adgangskodepræ-hashet adgangskode til brug med gruppebed om alle informationerlæs ny krypteret adgangskode fra given beskriverlæs ny almindelig adgangskode fra given beskriverfjern brugerens hjemme-mappeny brugers værelsesnummerindstil GID for gruppeindstil UID for brugerindstil brugerens almindelige navnindstil brugerens fornavnindstil gruppe-adgangskode istedet for bruger-adgangskodeindstil brugerens hjemme-telefonnummerindstil primær GID for brugerindstil brugerens værelsesnummerindstil shell for brugerindstil brugerens efternavnindstil brugerens telefonnummershell til ny brugerproblemfritny brugers efternavnny brugers telefonnummermodulerne "%s" og "%s" kan ikke kombineresuid til ny brugerukendt fejllås konto oplås gruppe opoplåsning ville gøre adgangskodefeltet tomtikke understøttet krypteringsskema for adgangskodebruger %jd har ikke noget navnbruger %s har ingen UIDbruger %s ikke fundetbruger har hverken et navn eller en UIDbruger-objektet havde ingen %s-attributbrugerobjektet blev oprettet uden "%s"bruger- eller gruppe-id i brugbruger- eller gruppenavn i bruglibuser-0.60~dfsg/po/ca.gmo0000644000175000017500000005300212226342604015600 0ustar tzafrirtzafrir<3\()H5[.*I$t""+Jhw </)N'x %>\'s*)(0.L({(.$ >!H ju"#!#$#Ae. %CXl% + < JX ^ hu-#,%D,c"  (#;_p'8@&!Eg " !* #L #p   + !!(!%9! _!1m!!!!$!"8""(["*"*")"*#0/#)`#)###1#$0$K$b$!}$!$+$.$%3:%Gn%%)%&%&!9&#[&&&&&&&('$.'S')f'''0'!''(&:('a( ((3(!( )4) J)X)n)")) )))** 0* Q*r* **"**++;+M+g+%+#+ ++',(,C,^,-f, ,-,&,, -"-B-$b---- p//=/(/ 0#!0E0a0$0'0B051*F11q1*1@1C2(S2+|222=2(3^A343H3C47b4.4/4'4)!51K5*}575+5@ 6GM6H6K6-*7(X7@787<7&88:_8-8 878 99'59']9'9'9(9*9):!B:0d:: :.::;2;P;"p;$;8;;<<(9<b<{<<< < <<<< =;)=9e=%=7=.=0,>G]>:>&>??%?B?*\??5??-?''@LO@Z@%@$A'BA&jA"A+AA&AB(*B)SB)}B,BBBC&C BCNCcCtC)CCEC7D+>D!jD1D5DZD3OE9E:E8EH1FAzF?F;F8G&WGI~G/G#G&HCH"cH*H2H+H$I:5IepI*ICJDEJ/J<JAJ99K,sK-K1K=LJ>LDL)LGL*@M-kMIM:MCNGbNFN<N@.OToO>O=P/APqPPPPP PPQ/Q6@QwQ(Q,Q#Q*R*T0GTxT8T1TT U#U)AU-kU8U/U=0lK5sHw!JT6 V4)7\"M g(mP@$ ,eLo8 WhjC-n'i/F#ba|]Q{9[<1Iq%?kSRZ f ^:OvG_ucBDY>xzU;+NAEr.dy~`}*32Xpt&%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Catalan (http://www.transifex.com/projects/p/fedora/language/ca/) Language: ca MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); A %s li falta el nombre de gid. %s no existeix. %s no té permís per canviar la informació de finger de %s %s valor «%s»: ':' no està disponibleEl compte venç el: %s No s'ha pogut crear el compte: %s. El compte està bloquejat. El compte no està bloquejat. Ha fallat l'autenticació per a %s. S'han especificat -L i -U a la vegada. No s'ha pogut establir el context predeterminat per a /etc/passwd S'està canviant la informació del finger per a %s. S'està canviant la contrasenya per a %s. S'està canviant l'intèrpret d'ordres per a %s. S'està copiant l'estructura de l'usuari: s'ha produït un error del SASL en crear un usuari del Cyrus: %ss'ha produït un error del SASL en eliminar un usuari del Cyrus: %sNoms d'atribut de l'usuari per defecte: Classes d'objecte de l'usuari per defecte: Adreça electrònicaNo s'ha trobat el registre. S'ha produït un error en canviar el propietari de «%s»: %sS'ha produït un error en crear %s: %s. S'ha produït un error en crear un compte per a '%s': s'ha formatat la línia incorrectament. S'ha produït un error en crear el grup «%s»: %s. S'ha produït un error en crear un grup per a «%s» amb el GID %jd: %s S'ha produït un error en crear un directori personal per a %s: %s S'ha produït un error en crear un compte per a %s: %s S'ha produït un error en inicialitzar %s: %s S'ha produït un error en inicialitzar %s: %s. S'ha produït un error en iniciar PAM. S'ha produït un error en cercar %s: %s. S'ha produït un error en moure %s cap a %s: %s. S'ha produït un error en obrir '%s': %s. S'ha produït un error en analitzar els arguments: %s. S'ha produït un error en llegir «%s»: %sS'ha produït un error al llegir des del descriptor d'arxiu %d. S'ha produït un error en establir la contrasenya inicial per a %s: %s S'ha produït un error en configurar la contrasenya per al grup %s: %s. S'ha produït un error en configurar la contrasenya per a l'usuari %s: %s. S'ha produït un error en escriure «%s»: %sNo s'han pogut eliminar els privilegis. No s'ha pogut modificar la informació d'envelliment de %s: %s. No s'ha pogut definir la contrasenya per al grup %s: %s No s'ha pogut definir la contrasenya per a l'usuari %s: %s. La informació del finger ha canviat. La informació del finger no ha canviat: error d'entrada. La informació del finger no ha canviat: %s. Nom i cognomsS'estan definint els atributs de l'usuari per defecte: Nom facilitatEl grup %jd no existeix No s'ha pogut suprimir el grup %s: %s. No s'ha pogut suprimir el grup %s: %s. No s'ha pogut bloquejar el grup %s: %s No s'ha pogut modificar el grup %s: %s No s'ha pogut modificar el grup %s: %s. No s'ha pogut desbloquejar el grup %s: %s El grup %s no existeix. No s'ha pogut crear el grup: %s. El grup amb el GID %jd no tenia un nom de grup. Telèfon particularInactiu: %ld S'ha produït un error intern «%s» del PAM. S'ha produït un error intern. L'ID %s no és vàlid El valor per defecte del camp %s no és vàlid: %sL'ID del grup %s no és vàlid L'ID de l'usuari %s no és vàlid Administrador principal del KerberosContrasenya del Kerberos per a l'administrador principalRegne del KerberosDN del vincle de LDAPContrasenya del vincle de LDAPUsuari d'autorització del SASL del LDAPUsuari del SASL del LDAPDN de la base de cerca de LDAPNom del servidor LDAPÚltim canvi: %s Màxim: %ld Mínim: %ld MaiNou intèrpret d'ordresNova contrasenyaNova contrasenya (confirmació)No s'ha especificat cap nom de grup, el gid %d no té nom. No s'ha especificat cap nom de grup. Es farà servir %s. No s'ha especificat cap nom de grup. No existeix cap grup amb el gid %jd. No se suprimirà. No hi ha cap directori personal nou per a %s. No hi ha cap directori personal antic per a %s. No s'ha especificat cap nom d'usuari, no hi ha cap nom per a l'uid %d. No s'ha especificat cap nom d'usuari. Es farà servir %s. No s'ha especificat cap nom d'usuari. OficinaTelèfon de l'oficinaLa contrasenya venç el: %s Contrasenya inactiva: %s S'ha cancel·lat el canvi de contrasenya. S'ha canviat la contrasenya. Les contrasenyes són diferents, intenteu-ho de nou. Les sol·licituds han falla. Les sol·licituds s'han completat amb èxit. No es pot crear un compte amb l'UID 0. Es refusa la utilització per defecte del directori perillós d'inici «%s»Es refusa la utilització per defecte del directori perillós d'inici «%s» per a «%s» S'està cercant un grup anomenat %s. S'està cercant un grup amb ID %jd. S'està cercant un usuari anomenat %s. S'està cercant un usuari amb ID %jd. L'intèrpret d'ordres ha canviat. L'intèrpret d'ordres no s'ha canviat: %s. CognomS'ha autenticat un usuari desconegut. Context d'usuari desconegutL'usuari %s no s'ha pogut suprimir: %s. L'usuari %s no s'ha pogut bloquejar: %s. No s'ha pogut modificar l'usuari %s: %s. L'usuari %s no s'ha pogut desbloquejar: %s. L'usuari %s no existeix. L'usuari és discordant. Advertència: %ld Avís: el grup amb ID %jd no existeix [OPCIÓ...][OPCIÓ...] [usuari][OPCIÓ...] grup[OPCIÓ...] usuarino es permet ':' a la contrasenya xifradaaccés denegatla còpia de seguretat «%s» existeix i no és un fitxer per a dadesla mida del fitxer de còpia de seguretat no coincideixidentificador d'usuari o de grup incorrectenom d'usuari o de grup incorrecteel fitxer de configuració «%s» és massa llargno s'ha pogut crear un vincle amb el servidor de LDAPno s'ha pogut vincular amb el servidor de LDAP. El primer intent ha estat com a «%s»: %sel TLS no ha pogut negociar amb el servidor de LDAPno s'ha pogut obrir el fitxer de configuració «%s»: %sno s'ha pogut llegir el fitxer de configuració «%s»: %sno s'ha pogut establir la versió del protocol LDAP a %dno s'ha pogut obtenir informació del fitxer de configuració «%s»: %sno s'ha pogut determinar el context de seguretat per a «%s»: %sno s'ha pogut obtenir el context de seguretat predeterminat: %sno s'ha pogut obtenir el context de seguretat de «%s»: %sno s'ha pogut obrir «%s»: %sno s'ha podut llegir res de «%s»: %sno s'ha pogut establir el context de seguretat predeterminat a «%s»: %sno s'ha pogut obtenir informació de «%s»: %sno s'ha pogut escriure a «%s»: %sno s'han trobat les dades en el fitxerl'entitat no té cap atribut %sl'entitat no té atributs %s ni %sl'objecte de l'entitat no té l'atribut %sl'estructura de l'entitat no té atributs %s ni %ss'ha creat l'entitat sense atributs %s o %sel registre ja es troba en el fitxerel registre amb el nom conflictiu ja es troba en el fitxers'ha produït un error en connectar amb el servidor kadm5 per al servei «%s» en el regne «%s»: %ss'ha produït un error en crear «%s»: %ss'ha produït un error en crear l'entrada del directori de LDAP: %ss'ha produït un error en crear el directori personal per a l'usuaris'ha produït un error en xifrar la contrasenyas'ha produït un error en inicialitzar el SASL del Cyrus: %ss'ha produït un error en inicialitzar la biblioteca del Kerbeross'ha produït un error en inicialitzar la biblioteca ldaps'ha produït un error en carregar el mòduls'ha produït un error en bloquejar el fitxers'ha produït un error en bloquejar el fitxer: %ss'ha produït un error en manipular els atributs del terminals'ha produït un error en modificar el registre del directori del LDAP: %ss'ha produït un error en moure el directori personal per a l'usuaris'ha produït un error en obrir el fitxers'ha produït un error en analitzar el nom d'usuari «%s» pel Kerbeross'ha produït un error en llegir el fitxers'ha produït un error en llegir del terminals'ha produït un error en llegir la informació per a «%s» del Kerbeross'ha produït un error en llegir els atributs del terminals'ha produït un error en eliminar l'entrada del directori LDAP: %ss'ha produït un error en eliminar el directori personal per a l'usuaris'ha produït un error en canviar l'entrada del directori del LDAP: %ss'ha produït un error en determinar el símbol en el mòduls'ha produït un error en configurar la contrasenya per a «%s»s'ha produït un error en establir una contrasenya en el directori LDAP per a %s: %ss'ha produït un error en configurar els atributs del terminals'ha produït un error en intentar obtenir l'estat del fitxers'ha produït un error en escriure en el fitxererror genèricEl grup %jd no té nomel grup %s no té GIDel grup no té ni nom ni GIDerror d'inicialització internaID invàlidvalor d'atribut invàlidcombinació de mòdul invàlidanúmero invàlidla versió del mòdul o de la biblioteca no coincideixel mòdul %s no defineix «%s»mòdul deshabilitat per la configuracióla versió del mòdul no coincideix a «%s»el nom conté caràcters de controlel nom conté el caràcter invàlid «%c»el nom conté caràcters que no són ASCIIel nom conté espais en blancno s'ha definit el nomel nom és massa llarg (%zu > %d)el nom és massa curtel nom comença amb un guióno s'ha trobat cap atribut «%s»no s'ha trobat cap funció d'inicialització %s a «%s»no hi ha cap fitxer shadow present -- es deshabilitaràaquest objecte no existeix en el directori LDAPno té prou privilegisno s'està executant amb permisos de superusuaril'objecte no tenia cap atribut %sl'objecte no té cap atribut %scorrecteels mòduls «%s» i «%s» no es poden combinarerror desconeguten desbloquejar, el camp de la contrasenya quedarà buitesquema de xifratge de contrasenyes no disponiblel'usuari %jd no té noml'usuari %s no té UIDl'usuari no té ni nom ni UIDl'objecte de l'usuari no tenia atribut %ss'ha creat l'objecte de l'usuari sense «%s»l'identificador d'usuari o de grup ja s'està utilitzantel nom d'usuari o de grup ja s'està utilitzantlibuser-0.60~dfsg/po/id.po0000644000175000017500000010643312226342567015464 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Dichi Al Faridi , 2011 # Erwien Samantha Y , 2004 # Miloslav Trmač , 2011 # Prima Yogi Loviniltra , 2012 # Teguh DC , 2005 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora/" "language/id/)\n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Gagal mencabut hak akses.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Kesalahan internal.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s tidak diijinkan untuk mengubah info finger dari %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Konteks pengguna tidak diketahui" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Tidak dapat menset konteks standar untuk /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Gagal menginisiasi PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Otentikasi gagal untuk %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Kesalahan internal PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Pengguna yang tidak dikenal terotentikasi.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Pengguna tidak cocok.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] user" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Gagal memparse argumen: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Tidak ada nama pengguna yang dimasukkan.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Gagal menginisiasi %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Pengguna %s tidak ada.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Akun dikunci.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Akun tidak dikunci.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maksimum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Peringatan:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inaktif:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Tidak Pernah" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Perubahan Terakhir:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Masa berlakunya password habis:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Password Tidak Aktif:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Masa Akun Habis:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Gagal mengubah informasi masa berlaku untuk %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Nama pengguna tidak dimasukkan, tidak ada nama untuk uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Mengubah informasi finger untuk %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Nama Lengkap" #: apps/lchfn.c:146 msgid "Surname" msgstr "Nama Keluarga" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Nama Depan" #: apps/lchfn.c:167 msgid "Office" msgstr "Kantor" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telp. Kantor" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telp. Rumah" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Alamat E-Mail" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Informasi finger tidak berubah: kesalahan input.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Informasi finger berubah.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Informasi finger tidak berubah: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Mengubah shell untuk %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Shell Baru" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell tidak berubah: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell telah berubah.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] group" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Tidak ada nama grup yang dimasukkan.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ID grup %s tidak valid\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Pembuatan grup gagal: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Grup %s tidak ada.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Grup %s tidak dapat dihapus: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L dan -U telah ditetapkan.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Gagal menset password untuk grup %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Grup %s tidak dapat dikunci: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Grup %s tidak dapat dibuka kuncinya: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Grup %s tidak dapat diubah: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Salah saat mencari %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Tidak ada nama grup yang ditetapkan, mempergunakan %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Tidak ada nama grup yang ditetapkan, tidak ada nama untuk gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Tidak ada nama pengguna yang ditetapkan, mempergunakan %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s tidak ada\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPSI...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Gagal membuka `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Gagal saat membuat akun untuk `%s': baris tidak terformat sebagaimana " "mestinya.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ID pengguna %s tidak valid\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Menolak untuk membuat akun dengan UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Gagal saat membuat grup untuk `%s' dengan GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Menolak penggunaan direktori home `%s' yang berbahaya untuk %s secara " "default\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Gagal saat membuat direktori home untuk %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Gagal saat menset password awal untuk %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Gagal saat membuat akun pengguna untuk %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Mengubah kata-sandi untuk %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Kata-sandi baru" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Kata-sandi baru (ulangi)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Kata-sandi tidak cocok, coba lagi.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Pengubahan kata sandi dibatalkan.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Kesalahan pembacaan file deskripto %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Gagal saat menset kata sandi untuk pengguna %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Gagal saat menset kata sandi untuk grup %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Kata sandi telah diubah.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Grup %jd tidak ada\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Gagal saat membuat grup `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Pembuatan akun gagal: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Gagal saat membuat %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Pengguna %s tidak dapat dihapus: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s tidak memiliki nomer gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Tidak ada grup dengan GID %jd, batal menghapus.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Grup dengan GID %jd tidak memiliki nama grup.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Grup %s tidak dapat dihapus: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "gagal saat menghapus direktori home untuk pengguna" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Gagal menset kata sandi untuk user %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Pengguna %s tidak dapat dikunci: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Penguna %s tidak dapat dibuka kuncinya: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Peringatan: Grup dengan ID %jd tidak ada\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Pengguna %s tidak dapat diubah: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Grup %s tidak dapat diubah: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Tidak ada direktori home lama untuk %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Tidak ada direktori home baru untuk %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Gagal saat memindahkan %s ke %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "tidak dapat membuka berkas konfigurasi `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "tidak dapat menampilkan informasi berkas konfigurasi `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "berkas konfigurasi `%s' terlalu besar" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "tidak dapat membaca berkas konfigurasi `%s': %s" #: lib/error.c:62 msgid "success" msgstr "sukses" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modul dinonaktifkan oleh konfigurasi" #: lib/error.c:66 msgid "generic error" msgstr "kesalahan generik" #: lib/error.c:68 msgid "not enough privileges" msgstr "hak akses tidak mencukupi" #: lib/error.c:70 msgid "access denied" msgstr "akses ditolak" #: lib/error.c:72 msgid "bad user/group name" msgstr "Nama pengguna/grup salah" #: lib/error.c:74 msgid "bad user/group id" msgstr "id pengguna/grup salah" #: lib/error.c:76 msgid "user/group name in use" msgstr "nama pengguna/grup sedang digunakan" #: lib/error.c:78 msgid "user/group id in use" msgstr "id pengguna/grup sedang digunakan" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "gagal saat memanipulasi atribut terminal" #: lib/error.c:82 msgid "error opening file" msgstr "gagal saat membuka berkas" #: lib/error.c:84 msgid "error locking file" msgstr "gagal saat mengunci berkas" #: lib/error.c:86 msgid "error statting file" msgstr "gagal saat melihat informasi berkas" #: lib/error.c:88 msgid "error reading file" msgstr "gagal saat membaca berkas" #: lib/error.c:90 msgid "error writing to file" msgstr "gagal saat menulis ke berkas" #: lib/error.c:92 msgid "data not found in file" msgstr "data tidak ditemukan dalam berkas" #: lib/error.c:94 msgid "internal initialization error" msgstr "kesalahan internal saat menginisiasi" #: lib/error.c:96 msgid "error loading module" msgstr "gagal saat memuat modul" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "gagal saat menerjemahkan simbol dalam modul" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "versi pustaka/modul tidak cocok" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "membuka kunci akan membuat kolom password menjadi kosong" #: lib/error.c:105 msgid "invalid attribute value" msgstr "nilai atribut tidak valid" #: lib/error.c:107 msgid "invalid module combination" msgstr "kombinasi modul tidak valid" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "kesalahan tidak diketahui" #: lib/misc.c:240 msgid "invalid number" msgstr "nomor tidak valid" #: lib/misc.c:254 msgid "invalid ID" msgstr "ID tidak valid" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "tidak ada fungsi penginisiasian %s dalam `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "versi modul tidak cocok dalam `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modul `%s' tidak mendefinisikan `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "gagal saat membaca atribut terminal" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "gagal saat menset atribut terminal" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "gagal saat membaca terminal" #: lib/user.c:218 msgid "name is not set" msgstr "nama tidak diset" #: lib/user.c:223 msgid "name is too short" msgstr "nama terlalu pendek" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "nama terlalu panjang (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "nama mengandung karakter non-ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "nama mengandung karakter kontrol" #: lib/user.c:249 msgid "name contains whitespace" msgstr "nama mengandung whitespace" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "nama dimulai dengan tanda hubung" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "nama mengandung karakter `%c' yang tidak valid" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "user %s tidak memiliki UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "grup %s tidak memiliki GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "user %jd tidak memiliki nama" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "Grup %jd tidak memiliki nama" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "user tidak memiliki nama ataupun UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "grup tidak memiliki nama atau GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Menolak penggunaan direktori home `%s' yang berbahaya secara default" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Nilai default kolom %s tidak valid: %s " #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "salah saat mengunci berkas: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "tidak dapat memperoleh konteks keamanan standar: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "tidak dapat memperoleh konteks keamanan dari `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "tidak dapat menset konteks keamanan standar ke `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "tidak dapat menentukan konteks keamanan dari `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "tidak dapat membuka `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "tidak dapat menampilkan informasi berkas `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "gagal saat membuat `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "ada berkas cadangan `%s' dan itu bukan berkas biasa" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Gagal mengubah kepemilikan dari `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Error changing mode of `%s': %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Salah pembacaan `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Gagal dalam penulisan `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "ukuran berkas cadangan tidak cocok" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s bernilai '%s': ':' tidak diijinkan" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "tidak dapat membaca dari `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "entri telah ada dalam berkas" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "tidak dapat menulis ke `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "obyek entiti tidak memiliki atribut %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "entri dengan nama yang konflik telah ada dalam berkas" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "':' tidak diijinkan dalam kata sandi terenkripsi" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "salah saat meng-enkrip password" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "modul `%s' dan `%s' tidak bisa dikombinasikan" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "tidak mengeksekusi dengan hak akses superuser" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "tidak ada berkas shadow -- menonaktifkan" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "gagal saat menghubungi server kadm5 untuk layanan `%s' dalam realm `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "gagal saat menginisiasi pustaka kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "gagal saat menguraikan nama pengguna `%s' untuk kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "struktur entiti tidak memiliki atribut %s atau %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entiti tidak memiliki atribut %s atau %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entiti telah dibuat tanpa atribut %s atau %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "gagal saat membaca informasi untuk `%s' untuk kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entiti tidak memiliki atribut %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "gagal saat menset kata sandi untuk `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Realm Kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kepala Admin Kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Password Kerberos untuk Kepala Admin" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "gagal saat menginisiasi pustaka ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "tidak dapat menset protokol LDAP ke versi %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "tidak dapat menegosiasikan TLS dengan server LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "tidak dapat mengikat ke server LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "tidak dapat mengikat ke server LDAP, usaha pertama adalah `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "obyek pengguna tidak memiliki atribut %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "obyek user telah dibuat tanpa `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "gagal saat membuat entri direktori LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "gagal saat memodifikasi entri direktori LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "gagal saat mengganti nama entri direktori LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "obyek tidak memiliki atribut %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "gagal saat menghapus entri direktori LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "obyek tidak memiliki atribut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "skema enkripsi kata sandi tidak didukung" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "tidak ada obyek tersebut dalam direktori LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "tidak ada atribut `%s' yang ditemukan" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "gagal saat menset kata sandi dalam direktori LDAP untuk %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Nama Server LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Pencarian Base DN LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "Bind DN LDAP" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Bind Kata sandi LDAP" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Pengguna SASL LDAP" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Otorisasi Pengguna SASL LDAP" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Kesalahan SASL Cyrus saat membuat pengguna: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Kesalahan SASL Cyrus saat menghapus pengguna: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "gagal saat menginisiasikan SASL Cyrus: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "gagal saat membuat direktori home untuk pengguna" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "gagal saat menghapus direktori home untuk pengguna" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "gagal saat memindahkan direktori home untuk pengguna" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "gagal saat menginisiasi %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ID %s tidak valid\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Mencari grup dengan ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Mencari nama grup %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Mencari pengguna dengan ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Mencari nama pengguna %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Masukan tidak ketemu.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Prompt sukses.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Prompt gagal.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Kelas obyek pengguna standar:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Nama atribut pengguna standar:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Mengambil atribut pengguna standar:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Menyalin struktur pengguna:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s tidak memiliki direktori home.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Salah saat menghapus %s: %s.\n" libuser-0.60~dfsg/po/LINGUAS0000644000175000017500000000045412226342567015551 0ustar tzafrirtzafrir# To regenerate: (cd po; ls *.po | sed 's/\.po$//'). Then remove languages with # no translations. ar as bg bn bn_IN bs ca cs cy da de de_CH el en_GB es et eu fi fr gu he hi hr hu id is it ja kn ko lv mai mk ml mr ms nb nds nl or pa pl pt pt_BR ro ru sk sl sr sr@latin sv ta te tr uk vi zh_CN zh_TW libuser-0.60~dfsg/po/ms.po0000644000175000017500000010435312226342567015506 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Sharuzzaman Ahmat Raslan , 2004, 2006 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Malay (http://www.transifex.com/projects/p/fedora/language/" "ms/)\n" "Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Gagal untuk mengurangkan kepentingan.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Ralat dalaman.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s tidak dibenarkan untuk mengubah maklumat finger bagi %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Konteks pengguna tidak diketahui" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Tidak dapat menetapkan konteks default untuk /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Ralat memulakan PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Pengesahan gagal untuk %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Ralat dalaman PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Pengguna tidak diketahui disahkan.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Pengguna tidak sepadan.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[PILIHAN...] pengguna" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Ralat hujah penelitian: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Tiada nama pengguna dinyatakan.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Ralat memulakan %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Pengguna %s tidak wujud.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Akaun dikunci.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Akaun tidak dikunci.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maksimum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Amaran:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Tidak aktif:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Tidak sekali" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Perubahan Terakhir:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Katalaluan Luput:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Katalaluan Tidak Aktif:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Akaun Luput:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Gagal menukar maklumat usia untuk %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[PILIHAN...] [pengguna]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Tiada pengguna dinyatakan, tiada nama untuk uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Menukar maklumat finger untuk %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Nama Penuh" #: apps/lchfn.c:146 msgid "Surname" msgstr "Nama keluarga" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Nama Diberi" #: apps/lchfn.c:167 msgid "Office" msgstr "Pejabat" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefon Pejabat" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefon Rumah" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Alamat E-Mel" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Maklumat finger tidak bertukar: ralat masukan.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Maklumat finger berubah.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Maklumat finger tidak berubah: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Menukar shell untuk %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Shell Baru" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell tidak berubah: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell berubah.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] kumpulan" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Tiada nama kumpulan dinyatakan.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ID kumpulan %s tidak sah\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Gagal mencipta kumpulan: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Kumpulan %s tidak wujud.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Kumpulan %s tidak dapat dipadam: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Kedua-dua L dan U dinyatakan.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Gagal untuk menetapkan katalaluan bagi kumpulan %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Kumpulan %s tidak dapat dikunci: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Kumpulan %s tidak dapat dinyahkunci: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Kumpulan %s tidak dapat diubahsuai: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Ralat melihat %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Tiada nama kumpulan dinyatakan, menggunakan %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Tiada nama kumpulan dinyatakan, tiada nama untuk gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Tiada nama pengguna dinyatakan, menggunakan %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[PILIHAN...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Ralat membuka `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Ralat mencipta akaun untuk `%s': baris tidak diformat dengan betul.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ID pengguna tidak sah %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Enggan mencipta akaun dengan UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Ralat mencipta kumpulan untuk `%s' dengan GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Ralat mencipta direktori rumah untuk %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Ralat menetapkan katalaluan permulaan untuk %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Ralat mencipta akaun pengguna untuk %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Menukar katalaluan untuk %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Katalaluan baru" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Katalaluan baru (sahkan)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Katalaluan tidak sepadan, cuba lagi.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Pertukaran katalaluan dibatalkan.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Ralat menetapkan katalaluan untuk pengguna %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Ralat menetapkan katalaluan untuk kumpulan %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Katalaluan ditukar.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Kumpulan %jd tidak wujud\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Ralat mencipta kumpulan `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Gagal mencipta akaun: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Ralat mencipta %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Pengguna %s tidak dapat dipadam: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s tidak mempunyai nombor gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Tiada kumpulan dengan GID %jd wujud, tidak membuang.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Kumpulan dengan GID %jd tidak mempunyai nama kumpulan.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Kumpulan %s tidak dapat dipadam: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ralat membuang direktori rumah untuk pengguna" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Gagal untuk menetapkan katalaluan bagi pengguna %s: %s\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Pengguna %s tidak dapat dikunci: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Pengguna %s tidak dapat dinyahkunci: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Pengguna %s tidak dapat diubahsuai: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Kumpulan %s tidak dapat diubahsuai: %s\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Tiada direktori rumah lama untuk %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Tiada direktori rumah baru untuk %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Ralat memindahkan %s ke %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "tidak dapat membuka fail tetapan `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "tidak dapat stat fail tetapan `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "fail tetapan `%s' adalah terlalu besar" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "tidak dapat membaca fail tetapan `%s': %s" #: lib/error.c:62 msgid "success" msgstr "berjaya" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modul dimatikan oleh tetapan" #: lib/error.c:66 msgid "generic error" msgstr "ralat umum" #: lib/error.c:68 msgid "not enough privileges" msgstr "tidak cukup kelebihan" #: lib/error.c:70 msgid "access denied" msgstr "tiada kebenaran" #: lib/error.c:72 msgid "bad user/group name" msgstr "nama pengguna/kumpulan buruk" #: lib/error.c:74 msgid "bad user/group id" msgstr "id pengguna/kumpulan buruk" #: lib/error.c:76 msgid "user/group name in use" msgstr "nama pengguna/kumpulan sedang digunakan" #: lib/error.c:78 msgid "user/group id in use" msgstr "id pengguna/kumpulan sedang digunakan" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "ralat memanipulasi sifat terminal" #: lib/error.c:82 msgid "error opening file" msgstr "ralat membuka fail" #: lib/error.c:84 msgid "error locking file" msgstr "ralat mengunci fail" #: lib/error.c:86 msgid "error statting file" msgstr "ralat stat fail" #: lib/error.c:88 msgid "error reading file" msgstr "ralat membaca fail" #: lib/error.c:90 msgid "error writing to file" msgstr "ralat menulis ke fail" #: lib/error.c:92 msgid "data not found in file" msgstr "data tidak ditemui dalam fail" #: lib/error.c:94 msgid "internal initialization error" msgstr "ralat permulaan dalaman" #: lib/error.c:96 msgid "error loading module" msgstr "ralat memuatkan modul" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "ralat menyelesaikan simbol dalam modul" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "versi pustaka/modul tidak sepadan" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "menyahkunci akan membuatkan medan katalaluan kosong" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "ralat tidak diketahui" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "tiada fungsi permulaan %s dalam `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "versi modul tidak sepadan dalam `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modul `%s' tidak mentakrif `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "ralat membaca sifat terminal" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "ralat menetapkan sifat terminal" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "ralat membaca dari terminal" #: lib/user.c:218 msgid "name is not set" msgstr "nama tidak ditetapkan" #: lib/user.c:223 msgid "name is too short" msgstr "nama adalah terlalu pendek" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "nama adalah terlalu panjang (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "nama mengandungi aksara bukan-ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "nama mengandungi aksara kawalan" #: lib/user.c:249 msgid "name contains whitespace" msgstr "nama mengandungi ruangputih" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "nama bermula dengan tanda sempang" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "nama mengandungi aksara tidak sah `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "pengguna %s tidak mempunyai UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "kumpulan %s tidak mempunyai GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "pengguna %jd tidak mempunyai nama" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "kumpulan %jd tidak mempunyai nama" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "pengguna tidak mempunyai nama mahupun UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "kumpulan tidak mempunyai nama mahupun GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Nilai default bagi medan %s tidak sah: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ralat mengunci fail: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "tidak dapat menetapkan konteks keselamatan bagi `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "tidak dapat menetapkan konteks keselamatan default kepada `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "tidak dapat membuka `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "tidak dapat stat `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "ralat mencipta `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "fail salinan `%s' wujud dan bukan fail biasa" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Ralat menukar pemilik untuk `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Ralat membaca `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Ralat menulis `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "saiz fail salinan tidak sepadan" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "tidak dapat membaca dari `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "masukan telah ada dalam fail" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "tidak dapat menulis ke `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "objek entiti tidak mempunyai ciri %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "ralat mengenkrip katalaluan" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "tidak melaksanakan dengan kelebihan superuser" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "tiada fail bayang wujud -- mematikan" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "ralat menyambung ke pelayan kadm5 untuk servis `%s' dalam kawasan `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "ralat memulakan pustaka kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "ralat menghurai nama pengguna `%s' untuk kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "struktur entiti tidak mempunyai %s atau ciri %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entiti tidak mempunyai %s atau ciri %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entiti dicipta dengan tiada %s atau ciri %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "ralat membaca maklumat untuk `%s' dari kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entiti tidak mempunyai ciri %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "ralat menetapkan katalaluan untuk `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Realm Kerberos:" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Pentadbir Utama Kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Katalaluan Kerberos untuk Pentadbir Utama" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ralat memulakan pustaka ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "tidak dapat menetapkan protokol LDAP ke versi %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "tidak dapat merunding TLS dengan pelayan LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "tidak dapat mengikat ke pelayan LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "tidak dapat mengikat ke pelayan LDAP, cubaan pertama sebagai `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "objek pengguna tidak mempunyai ciri %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "objek pengguna telah dicipta dengan tanpa `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "ralat mencipta masukan direktori LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "ralat mengubahsuai masukan direktori LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "ralat menamakan semula masukan direktori LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "objek tidak mempunyai ciri %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "ralat membuang masukan direktori LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "objek tidak mempunyai ciri %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "tiada objek sebegitu dalam direktori LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "tiada ciri `%s' dijumpai" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "ralat menetapkan katalaluan dalam direktori LDAP untuk %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Nama Pelayan LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Asas Carian DN LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "DN Bind LDAP" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Katalaluan Bind LDAP" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Pengguna LDAP SASL" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Pengguna Pengesahan LDAP SASL" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL ralat mencipta pengguna: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL ralat membuang pengguna: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "ralat memulakan Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ralat mencipta direktori rumah untuk pengguna" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ralat membuang direktori rumah untuk pengguna" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ralat memindah direktori rumah untuk pengguna" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Ralat memulakan %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ID tidak sah %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Mencari untuk kumpulan dengan ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Mencari untuk kumpulan bernama %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Mencari untuk pengguna dengan ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Mencari untuk pengguna bernama %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Masukan tidak dijumpai.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Prompt berjaya.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Prom gagal.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Kelas objek pengguna default:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Nama atribut pengguna default:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Mendapatkan ciri-ciri pengguna default:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Menyalin struktur pengguna:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s tidak mempunyai direktori rumah.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Ralat membuang %s: %s.\n" libuser-0.60~dfsg/po/ar.po0000644000175000017500000011473112226342567015472 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Abd el rahman Ghareeb , 2004 # Ali Ghareb , 2007, 2009 # Miloslav Trmač , 2011 # Munzir Taha , 2011 # Munzir Taha , 2004 # taljurf , 2009 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/fedora/language/" "ar/)\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "فشل في إسقاط الصلاحيات.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "خطأ داخلي.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s ليس مخوّلا بتغيير معلومات finger لـ %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "سياق مستخدِم مجهول" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "لا يمكن ضبط سياق افتراضي لـ /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "خطأ في ابتداء PAM. \n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "فشل توثيق %s. \n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "خطأ داخلي في PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "تصديق مستخدم مجهول\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "عدم تطابق المستخدم.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] مُستخدِم" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "خطأ في إعراب المُعطيات: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "لم يُحَدَّد اسم للمستخدم.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "خطأ في ابتداء ´%s´. %s. \n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "لا وجود للمستخدم %s. \n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "الحساب مقفل.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "الحساب غير مقفل.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "الحد الأدنى:\t%ld \n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "الحد الأقصى: \t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "تحذير: \t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "غير فعّال:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "أبداً" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "آخر تغيير: \t%s \n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "تنتهي صلاحية كلمة السر في: \t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "كلمة السر غير فعالة: \t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "تنتهي صلاحية الحساب في: \t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "فشل في تعديل معلومات الفترة الزمنيّة لـ %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "لم يتم تحديد اسم مستخدم، لا يوجد اسم لرقم هويّة المستخدم %d. \n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "جاري تغيير معلومات finger للمستخدم %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "الاسم الكامل" #: apps/lchfn.c:146 msgid "Surname" msgstr "اسم العائلة" #: apps/lchfn.c:157 msgid "Given Name" msgstr "الاسم الشَّـخصيّ" #: apps/lchfn.c:167 msgid "Office" msgstr "المكتب" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "هاتف المكتب" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "هاتف المنزل" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "عنوان البريد الإلكتروني" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "لم يتمّ تغيير معلومات finger: خطأ إدخال.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "تمّ تغيير معلومات finger.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "معلومات finger لم تتغيّر: %s\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "جاري تغيير الصّدفة للمستخدم %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "صَدَفة جديدة" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "لم يتم تغيير الـ shell: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "تم تغيير الصَّدَفة. \n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] مجموعة" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "لم يتم تحديد اسم للمجموعة.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "رقم تعريف مجموعة غير صالح %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "فشل إنشاء المجموعة: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "المجموعة %s غير موجودة.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "تعذّر حذف مجموعة %s: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "تم تحديد كل من -L و -B \n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "فشل وضع كلمة المرور لمجموعة %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "تعذّر تأمين مجموعة %s: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "تعذّر إلغاء تأمين مجموعة %s: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "تعذّر تعديل مجموعة %s: %s.\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "خطأ في البحث عن %s. %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "لم يتم تحديد اسم مجموعة، جاري استخدام %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "لم يتم تحديد اسم للمجموعة، لا يوجد اسم لرقم هويّة المجموعة %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "لم يتم تحديد اسم المستخدم، جاري استخدام %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s غير موجود. \n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "خطأ في فتح ´%s´، %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "خطأ في إنشاء حساب للمستخدم %s، السطر منسّق بشكل خاطئ.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "رقم المستخدم %s غير صالح\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "رَفْض إنشاء حساب برقم هويّة مستخدم 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "خطأ في إنشاء مجموعة لـ`%s' برقم تعريف مجموعة %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "رَفْض استخدام مجلّد موطن خَطِر '%s' افتراضيّاً لـ'%s' \n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "خطأ في إنشاء الدّليل الموطن لـ%s. %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "خطأ في وضع كلمة السّر الابتدئيّة لـ%s. %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "خطأ في إنشاء حساب مستخدم لـ%s. %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "جاري تغيير كلمة المرور لـ%s. \n" #: apps/lpasswd.c:111 msgid "New password" msgstr "كلمة مرور جديدة" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "كلمة المرور الجديدة (تأكيد)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "كلمات المرور غير متطابقة، حاول مُجدّداًً. \n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "لَم يتِمّ تغيير كلمة المرور.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "خطأ في قراءة file descriptor %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "خطأ في وضع كلمة المرور للمستخدم %s. %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "خطأ في وضع كلمة مرور للمجموعة %s. %s\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "تم تغيير كلمة المرور.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "المجموعة %jd غير موجودة\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "خطأ في انشاء المجموعة `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "فشل في إنشاء الحساب: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "خطأ في إنشاء %s: %s. \n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "تعذّر حذف المستخدم %s: %s\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%sلم يكن له رقم تعريف مجموعة.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "لا توجد مجموعة برقم تعريف %jd، لن يتم الحذف.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "المجموعة ذات رقمّ التّعريف %jd لم تحمل اسم مجموعة.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "تعذّر حذف المجموعة %s: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "خطأ في ازالة المجلد الرئيسي للمستخدم" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "فشل وضع كلمة المرور للمستخدم %s؛ %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "تعذّر قفل حساب المستخدم %s: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "تعذّر إلغاء قفل حساب المستخدم %s: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "المجموعة ذات الرقم %jd غير موجودة\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "تعذّر تعديل المستخدم %s: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "تعذّر تعديل المجموعة %s: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "لا دليل موطن سابق لـ%s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "لا دليل موطن جديد لـ%s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "خطأ في نقل %s إلى %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "تعذّر فتح ملف التّهيئة '%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "تعذّر استعلام حالة ملف الإعداد '%s': %ss" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "ملف التهيئة '%s' كبير جدا" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "تعذّر قراءة ملف الإعداد '%s': %s" #: lib/error.c:62 msgid "success" msgstr "نجاح" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "الوحدة معطّلة في ملف الإعداد" #: lib/error.c:66 msgid "generic error" msgstr "خطأ عام" #: lib/error.c:68 msgid "not enough privileges" msgstr "الصلاحيات غير كافية" #: lib/error.c:70 msgid "access denied" msgstr "ممنوع الوصول" #: lib/error.c:72 msgid "bad user/group name" msgstr "اسم مستخدم/مجموعة سَيّئ" #: lib/error.c:74 msgid "bad user/group id" msgstr "رقم هويّة مستخدم/مجموعة سيّئ" #: lib/error.c:76 msgid "user/group name in use" msgstr "اسم المستخدِم/المجموعة المُستخدَم" #: lib/error.c:78 msgid "user/group id in use" msgstr "رقم هويّة المستخدِم/المجموعة المُستخدَم" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "خطأ في تعديل خصائص سطر الأوامر" #: lib/error.c:82 msgid "error opening file" msgstr "خطأ في فتح الملف" #: lib/error.c:84 msgid "error locking file" msgstr "خطأ في قفل الملف" #: lib/error.c:86 msgid "error statting file" msgstr "خطأ في استعلام حالة ملفّ" #: lib/error.c:88 msgid "error reading file" msgstr "خطأ في قراءة الملف" #: lib/error.c:90 msgid "error writing to file" msgstr "خطأ في الكتابة للملف" #: lib/error.c:92 msgid "data not found in file" msgstr "لم يتم العثور على البيانات في الملف" #: lib/error.c:94 msgid "internal initialization error" msgstr "خطأ داخلي في الابتداء" #: lib/error.c:96 msgid "error loading module" msgstr "خطأ في تحميل الوحدة" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "خطأ في فك ترميز الوحدة" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "عدم التوافق في إصدارة المكتبة/الوحدة" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "ألغاء القفل سوف يترك حقل كلمة المرور فارغاً" #: lib/error.c:105 msgid "invalid attribute value" msgstr "قيمة سمة غير صالحة" #: lib/error.c:107 msgid "invalid module combination" msgstr "وحدة نمطية غير صالحة" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "خطأ مجهول" #: lib/misc.c:240 msgid "invalid number" msgstr "رقم غير صالح" #: lib/misc.c:254 msgid "invalid ID" msgstr "هوية غير صالحة" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "لا توجد وظيفة ابتداء %s في '%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "عدم توافق إصدارة الوحدة في ´%s´" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "الوحدة '%s' لا تحدد '%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "خطأ في قراءة خصائص سطر الأوامر" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "خطأ في وضع خصائص سطر الأوامر" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "خطأ في القراءة من سطر الأوامر" #: lib/user.c:218 msgid "name is not set" msgstr "لم يتم تحديد اسم" #: lib/user.c:223 msgid "name is too short" msgstr "الاسم قصير جدّاً" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "الاسم طويل جدا (%zu>%d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "الاسم يحتوي على حروف ليست ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "يحتوي الاسم على أحرف تحكّم" #: lib/user.c:249 msgid "name contains whitespace" msgstr "الاسم يحتوي على مسافات" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "اسم يبدأ بشَـرطة" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "الاسم يحتوي على حرف غير صالح ´%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "المستخدم %s ليس له رقم تعريف" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "المجموعة %s ليس لها رقم تعريف" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "المستخدم %jd ليس له اسم" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "المجموعة %jd ليس لها اسم" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "المستخدم ليس له اسم أو رقم تعريف" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "المجموعة ليست لها اسم أو رقم تعريف" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "رَفْض استخدام مجلّد موطن خَطِر '%s' افتراضيّاً" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "قيمة غير صالحة للحقل %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "خطأ في قفل الملف: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "تعذّر الحصول على سياق الأمان الافتراضي: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "تعذّر الحصول على سياق الأمان لـ `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "تعذّر ضبط سياق أمان افتراضي لـ `%s': %s " #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "تعذّر تحديد سياق أمان لـ `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "تعذّر فتح ´%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "تعذّر استعلام وَضْع `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "خطأ في إنشاء ´%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "الملف الاحتياطي ´%s' موجود و ليس عاديَاً" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "خطأ في تغيير المالك لـ `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "خطأ في قراءة `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "خطأ في كتابة `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "حجم الملف الاحتياطي غير متطابق" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s القيمة `%s': `:' غير مسموح بها" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "تعذّرت القراءة من ´%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "المُدخل موجود مسبقاً في الملف" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "تعذّرت الكتابة إلى ´%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "الكائن ليس له خاصّيّة %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "هناك مُدخل باسم متعارض موجود مسبقاً في الملف" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "غير مسموح بـ':' في كلمة مرور مشفرة" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "خطأ في تشفير كلمة المرور" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "لم يتمّ التّنفيذ بصلاحيات المدير" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "لا يوجد ملف shadow -- جاري التعطيل" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "خطأ في الاتصال بخادم إدارة كِرْبِروس 5 للخدمة ´%s' في المملكة ´%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "خطأ في ابتداء مكتبة كِرْبِروس" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "خطأ في إعراب اسم المستخدم ´%s' لكِرْبِروس" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "بناء الكينونة ليس له %s أو خصائص %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "الكينونة ليس لها %s أو خاصّيّة %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "تم إنشاء الكينونة بدون %s أو خصائص %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "خطأ في قراءة المعلومات لـ ´%s' من كِرْبِروس" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "الكينونة ليس لها خاصّيّة %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "خطأ في وضع كلمة المرور لـ´%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "مملكة كِرْبِروس" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "المدير الرئيسي لكِرْبِروس" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "كلمة مرور كِرْبِروس للمدير الرئيسي" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "خطأ في ابتداء مكتبة ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "تعذّر وضع بروتوكول LDAP للإصدارة %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "تعذّر مفاوضة TLS مع خادم LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "لم يُمكن الرّبط بخادم LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "تعذّر الرّبط بخادم LDAP، المحاولة الأولى كـ `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "لم يحتوي كائن المستخدم على خاصّيّة %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "أُنشِء كائن المستخدم دون `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "خطأ في إنشاء مُدخل لدليل LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "خطأ في تعديل مُدخل دليل LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "خطأ في إعادة تسمية مُدخل دليل LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "لم يحتوي الكائن على خاصّيّة %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "خطأ في حذف مُدخل دليل LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "ليس للكائن خاصّيّة %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "نظام تشفير كلمة مرور غير مدعوم" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "لا وجود لهذا الكائن في دليل LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "لم يعثر على الخاصّيّة ´%s´" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "خطأ في وضع كلمة مرور في دليل LDAP لـ%s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "اسم خادم LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "الاسم المُميِّز (DN) الأساسي لبحث LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "الاسم المُميِّز (DN) لـLDAP Bind" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "كلمة مرور LDAP Bind" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "مستخدم LDAP SASL" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "مُستخدِم تخويل LDAP SASL" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "خطأ Cyrus SASL أثناء إنشاء المستخدم: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "خطأ Cyrus SASL أثناء إزالة المستخدم: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "خطأ في ابتداء Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "خطأ في انشاء مجلد رئيسي للمستخدم" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "خطأ في ازالة المجلد الرئيسي للمستخدم" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "خطأ في نقل المجلد الرئيسي للمستخدم" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "خطأ في ابتداء %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "رقم التعريف %s غير صالح\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "جاري البحث عن مجموعة برقم تعريف %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "جاري البحث عن مجموعة بالاسم %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "جاري البحث عن مستخدم برقم تعريف %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "جاري البحث عن مستخدم بالاسم %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "لم يتم العثور على المُدخل.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "نجح الحثّ.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "فشل الحثّ.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "أصناف كائنات المستخدم الافتراضيّة:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "أسماء خصائص المستخدم الافتراضية:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "جاري الاستعلام عن خصائص المستخدم الافتراضية:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "جاري نسخ بنية المستخدم:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "لم يكن له %s دليل موطن.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "خطأ في إزالة %s. %s.\n" libuser-0.60~dfsg/po/cy.po0000644000175000017500000010530112226342567015474 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Translation by Owain Green , 2004 # Updated by Rhys Jones , 2005 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Welsh (http://www.transifex.com/projects/p/fedora/language/" "cy/)\n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " "11) ? 2 : 3;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Methwyd gollwng breintiau.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Gwall mewnol.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "Does gan %s ddim caniatâd i newid gwybodaeth 'finger' %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Cyd-destun defnyddiwr yn anhysbys" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Methu gosod y cyd-destun rhagosodedig ar gyfer /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Gwall wrth ymgychwyn PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Methodd dilysiant ar gyfer %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Gwall PAM mewnol `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Dilyswyd defnyddiwr anhysbys.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Defnyddiwr anghydwedd.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[DEWISIAD...] defnyddiwr" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Gwall wrth ddyrannu ymresymiadau: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Ni phenodwyd enw defnyddiwr.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Gwall wrth ymgychwyn %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Nid yw'r defnyddiwr %s yn bodoli.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Mae'r cyfrif ar glo.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Nid yw'r cyfrif ar glo.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Isafswm:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Uchafswm:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Rhybudd:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Anweithredol:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Byth" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Newid Diwethaf:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Cyfrinair yn Darfod:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Cyfrinair Anweithredol:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Cyfrif yn Darfod:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Methwyd addasu'r wybodaeth heneiddio ar gyfer %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[DEWISIAD...] [defnyddiwr]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Ni phenodwyd enw defnyddiwr, dim enw ar gyfer uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Yn newid gwybodaeth byseddu ar gyfer %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Enw Llawn" #: apps/lchfn.c:146 msgid "Surname" msgstr "Cyfenw" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Enw Cyntaf" #: apps/lchfn.c:167 msgid "Office" msgstr "Swyddfa" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Ffôn Swyddfa" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Ffôn Cartref" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Cyfeiriad E-Bost" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Ni newidiwyd gwybodaeth fyseddu: gwall mewnbwn.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Newidiwyd gwybodaeth fyseddu.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Ni newidiwyd gwybodaeth fyseddu: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Yn newid plisgyn ar gyfer %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Plisgyn Newydd" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Ni newidiwyd y plisgyn: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Newidiwyd y plisgyn.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[DEWISIAD...] grŵp" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Ni phenodwyd enw grŵp.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "%s yn ID grŵp annilys\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Methwyd creu'r grŵp: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Nid yw'r grŵp %s yn bodoli.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Nid oedd modd dileu'r grŵp %s: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Penodwyd -L ac -U ill dau.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Methwyd gosod cyfrinair ar gyfer y grŵp %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Nid oedd modd cloi'r grŵp %s: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Nid oedd modd datgloi’r grŵp %s: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Nid oedd modd addasu'r grŵp %s: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Gwall wrth waredu %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Ni phenodwyd enw grŵp, yn defnyddio %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Ni phenodwyd enw grŵp, dim enw ar gyfer gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Ni phenodwyd enw defnyddiwr, yn defnyddio %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "{DEWISIAD...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Gwall wrth agor `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Gwall wrth greu cyfrif ar gyfer `%s': llinell wedi'i fformadu'n anghywir.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "%s yn ID defnyddiwr annilys\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Yn gwrthod creu cyfrif â UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Gwall wrth greu grŵp ar gyfer `%s' â GID %jd: %s.\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Gwall wrth greu cyfeiriadur cartref ar gyfer %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Gwall wrth osod cyfrinair dechreuol ar gyfer %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Gwall wrth greu cyfrif defnyddiwr ar gyfer %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Yn newid cyfrinair ar gyfer %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Cyfrinair newydd" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Cyfrinair newydd (gwiriwch)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Nid yw'r cyfrineiriau'n cydweddu, ceisiwch eto.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Diddymwyd newid y cyfrinair.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Gwall wrth osod cyfrinair ar gyfer defnyddiwr %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Gwall wrth osod cyfrinair ar gyfer grŵp %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Newidiwyd y cyfrinair.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Nid yw'r grŵp %jd yn bodoli\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Gwall wrth greu grŵp `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Methodd creu'r cyfrif: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Gwall wrth greu %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Nid oedd modd dileu'r defnyddiwr %s: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "Nid oedd rhif gid gyda %s.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Nid oes grŵp â'r GID %jd yn bodoli, felly gwaredir e ddim.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Doedd gan y grŵp â'r GID %jd ddim enw.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Nid oedd modd dileu'r grŵp %s: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "gwall wrth waredu cyfeiriadur cartref ar gyfer y defnyddiwr" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Methwyd gosod cyfrinair ar gyfer y defnyddiwr %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Nid oedd modd cloi'r defnyddiwr %s: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Nid oedd modd datgloi’r defnyddiwr %s: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Nid oedd modd addasu'r defnyddiwr %s: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Nid oedd modd addasu'r grŵp %s: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Nid oes hen gyfeiriadur cartref ar gyfer %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Nid oes cyfeiriadur cartref newydd ar gyfer %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Gwall wrth symud %s i %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "methwyd agor ffeil gyflunio `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "methwyd statio ffeil gyflunio `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "Mae ffeil gyfluniad '%s' yn rhy fawr" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "methwyd darllen ffeil gyflunio `%s': %s" #: lib/error.c:62 msgid "success" msgstr "llwyddiant" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "analluogwyd y modwl gan gyfluniad" #: lib/error.c:66 msgid "generic error" msgstr "gwall cyffredinol" #: lib/error.c:68 msgid "not enough privileges" msgstr "diffyg breintiau" #: lib/error.c:70 msgid "access denied" msgstr "gwrthodwyd cyrchiad" #: lib/error.c:72 msgid "bad user/group name" msgstr "enw defnyddiwr/grŵp gwael" #: lib/error.c:74 msgid "bad user/group id" msgstr "dynodiad defnyddiwr/grŵp gwael" #: lib/error.c:76 msgid "user/group name in use" msgstr "enw defnyddiwr/grŵp mewn defnydd" #: lib/error.c:78 msgid "user/group id in use" msgstr "dynodiad defnyddiwr/grŵp mewn defnydd" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "gwall wrth drin priodoleddau terfynell" #: lib/error.c:82 msgid "error opening file" msgstr "gwall wrth agor ffeil" #: lib/error.c:84 msgid "error locking file" msgstr "gwall wrth gloi ffeil" #: lib/error.c:86 msgid "error statting file" msgstr "gwall wrth statio ffeil" #: lib/error.c:88 msgid "error reading file" msgstr "gwall wrth ddarllen ffeil" #: lib/error.c:90 msgid "error writing to file" msgstr "gwall wrth ysgrifennu i ffeil" #: lib/error.c:92 msgid "data not found in file" msgstr "ni chanfuwyd y data yn y ffeil" #: lib/error.c:94 msgid "internal initialization error" msgstr "gwall ymgychwyn mewnol" #: lib/error.c:96 msgid "error loading module" msgstr "gwall wrth lwytho modwl" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "gwall wrth ddatrys symbol mewn modwl" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "Fersiwn llyfrgell/modwl yn wahanol" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "mi fyddai datgloi yn achosi i'r maes cyfrinair fod yn wag" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "gwall anhysbys" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "dim ffwythiant ymgychwyn %s yn `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "anghydweddiad fersiwn modwl yn `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "nid yw modiwl '%s' yn diffinio '%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "gwall wrth ddarllen priodoleddau terfynell" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "gwall wrth osod priodoleddau terfynell" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "gwall wrth ddarllen o derfynell" #: lib/user.c:218 msgid "name is not set" msgstr "enw heb ei osod" #: lib/user.c:223 msgid "name is too short" msgstr "mae'r enw rhy fyr" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "Mae enw yn rhy hir (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "mae'r enw'n cynnwys nodau di-ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "mae'r enw'n cynnwys nodau rheoli" #: lib/user.c:249 msgid "name contains whitespace" msgstr "mae'r enw'n cynnwys gofod gwyn" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "Enw yn cychwyn gyda chysylltnod" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "mae'r enw'n cynnwys nod annilys `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "Nid oes UID gan defynddiwr %s" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "Nid oes GID gan grŵp %s" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "Nid oes enw gan defnyddiwr %jd" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "Nid oes enw gan grŵp %jd" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "Nid oes enw neu UID gan defynddiwr %jd" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "Nid oes enw neu GID gan grŵp %jd" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Annilys yw'r gwerth rhagosodiedig o maes %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "gwall wrth gloi ffeil: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "methwyd cael cyd-destun diogelwch `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "methwyd gosod y cyd-destun diogelwch rhagosodedig i `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "methwyd agor: `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "methwyd statio: `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "gwall wrth greu: `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "mae'r ffeil wrthgefn `%s' yn bodoli, ac nid yw'n ffeil arferol" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Gwall wrth newid perchennog `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Gwall wrth ddarllen `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Gwall wrth ysgrifennu `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "maint ffeiliau wrthgefn yn wahanol i'w gilydd" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "methwyd darllen o `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "cofnod eisoes yn bresennol yn y ffeil" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "methwyd ysgrifennu i `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "nid oes gan y gwrthrych endid briodoledd %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "gwall wrth amgryptio cyfrinair" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "ddim yn gweithredu â breintiau'r uwchddefnydiwr" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "dim ffeil gysgod yn bresennol -- yn analluogi" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "gwall wrth gysylltu â'r gweinydd kadm5 ar gyfer y gwasanaeth '%s' ym mro `" "%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "gwall wrth ymgychwyn y llyfrgell kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "gwall wrth ddyrannu'r enw defnyddiwr `%s' ar gyfer kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "nid oes gan y strwythur endid briodoleddau %s na %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "nid oes gan yr endid briodoleddau %s na %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "crëwyd yr endid heb briodoleddau %s na %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "gwall wrth ddarllen gwybodaeth ar gyfer `%s' o kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "nid oes gan yr endid briodoledd %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "gwall wrth osod cyfrinair ar gyfer `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Bro Kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Pennaeth Gweinyddol Kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Cyfrinair Kerberos ar gyfer y Pennaeth Gweinyddol" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "gwall wrth ymgychwyn y llyfrgell ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "methwyd gosod y protocol LDAP i fersiwn %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "methwyd trafod TLS â'r gweinydd LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "methwyd rhwymo â'r gweinydd LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "methwyd rhwymo â'r gweinydd LDAP, cynnig cyntaf fel `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "nid oedd priodoledd %s gan y gwrthrych defnyddiwr" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "crëwyd y gwrthrych defnyddiwr heb `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "gwall wrth greu cofnod cyfeiriadur LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "gwall wrth addasu cofnod cyfeiriadur LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "gwall wrth ail-enwi cofnod cyfeiriadur LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "nid oedd gan y gwrthrych briodoledd %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "gwall wrth waredu'r cofnod cyfeiriadur LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "nid oes gan y gwrthrych briodoledd %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "nid oes y fath wrthrych yn y cyfeiriadur LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "ni chanfuwyd priodoledd `%s'" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "gwall wrth osod cyfrinair yn y cyfeiriadur LDAP ar gyfer %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Enw Gweinydd LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "EP Sail Chwilio LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "EP Rhwymo LDAP" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Cyfrinair Rhwymo LDAP" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Defnyddiwr SASL LDAP" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Defnyddiwr Awdurdodi SASL LDAP" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Gwall SASL Cyrus wrth greu'r defnyddiwr: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Gwall SASL Cyrus wrth greu'r defnyddiwr: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "gwall wrth ymgychwyn SASL Cyrus: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "gwall wrth greu cyfeiriadur cartref ar gyfer y defnyddiwr" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "gwall wrth waredu cyfeiriadur cartref ar gyfer y defnyddiwr" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "gwall wrth symud cyfeiriadur cartref ar gyfer y defnyddiwr" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Gwall wrth ymgychwyn %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ID annilys %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Yn chwilio am grŵp â'r ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Yn chwilio am grŵp o'r enw %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Yn chwilio am ddefnyddiwr â'r ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Yn chwilio am ddefnyddiwr o'r enw %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Cofnod heb ei ganfod.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Promptiau wedi llwyddo.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Promptiau wedi methu.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Dosbarthiadau gwrthrych defnyddiwr rhagosodedig:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Enwau priodoleddau gwrthrych defnyddiwr rhagosodedig:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Yn nôl priodoleddau defnyddiwr rhagosodedig:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Yn copïo strwythur defnyddiwr:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "Nid oedd gan %s gyfeiriadur cartref.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Gwall wrth waredu %s: %s.\n" libuser-0.60~dfsg/po/ko.po0000644000175000017500000011422412226342567015476 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # bardisch , 2011 # trans22 , 2013 # eukim , 2006, 2007, 2008, 2009 # eukim , 2012 # Michelle Ji Yeen Kim , 2005, 2006 # Michelle J Kim , 2004 # Michelle Kim , 2001, 2002 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Korean (http://www.transifex.com/projects/p/fedora/language/" "ko/)\n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "슈퍼유저 권한을 없애는데 실패했습니다.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "내부 오류가 발생했습니다.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s은(는) %s의 finger 정보를 변경할 권한이 없습니다\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "알 수 없는 사용자 문맥" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd의 기본 문맥을 설정할 수 없습니다\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM을 초기화 하는 도중 오류가 발생했습니다.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s의 인증에 실패했습니다.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "내부 PAM 오류 `%s'(이)가 발생했습니다.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "알 수 없는 사용자 인증함.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "사용자가 일치하지 않습니다.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "모든 정보를 요청하다." #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "최소한의 암호 유지기간" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "일" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "암호 최대 유지기간" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "일단위로 표시한 1970년 1월 1일 이후 마지막으로 암호가 변경될 날짜" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[옵션...] 사용자" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "인수를 처리(parsing)하는 도중 오류 발생: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "사용자 이름이 지정되지 않았습니다.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s(을)를 초기화하는 도중 오류 발생: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s 사용자가 존재하지 않습니다.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "계정이 정지되었습니다.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "계정이 정지되지 않았습니다.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "최소값:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "최대값:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "경고:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "비활성:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "없음" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "최종 변경:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "암호 만기일:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "암호 비활성:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "계정 만기일:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s의 사용 기한(aging) 정보를 수정하는데 실패했습니다: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [사용자]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "사용자 이름과 uid %d에 대한 이름이 지정되지 않았습니다.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s의 finger (핑거) 정보를 변경합니다.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "성명" #: apps/lchfn.c:146 msgid "Surname" msgstr "성" #: apps/lchfn.c:157 msgid "Given Name" msgstr "이름" #: apps/lchfn.c:167 msgid "Office" msgstr "직장" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "직장 전화 번호" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "집 전화 번호" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "이메일 주소" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "finger 정보가 변경되지 않았습니다: 입력 오류.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "finger 정보가 변경되었습니다.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "finger 정보가 변경되지 않았습니다: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s 용 쉘을 변경합니다.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "새로운 쉘" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "쉘이 변경되지 않았습니다: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "쉘이 변경되었습니다.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[옵션...] 그룹" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "그룹 이름이 지정되지 않았습니다.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "잘못된 그룹 ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "그룹 생성에 실패했습니다: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "%s 그룹이 존재하지 않습니다.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "%s 그룹을 삭제할 수 없습니다: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L 와 -U 이 함께 지정되었습니다.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s 그룹의 암호를 설정하는데 실패했습니다: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s 그룹을 잠글 수 없습니다: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s 그룹 잠금을 해제할 수 없습니다: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s 그룹을 편집할 수 없습니다: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s(을)를 조회하는 도중 오류 발생: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "%s를 사용하여 그룹 이름이 지정되지 않았습니다.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "그룹 이름과 gid %d에 대한 이름이 지정되지 않았습니다.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "%s를 사용하여 사용자 이름이 지정되지 않았습니다.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s이(가) 존재하지 않습니다\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s'(을)를 여는 도중 오류 발생: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "`%s'의 계정을 생성하는데 오류가 발생했습니다: 라인이 부적절하게 포맷되었습니" "다.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "잘못된 사용자 ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0를 가진 계정을 생성하기를 거부합니다.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s'에 GID %jd를 사용하여 그룹을 생성하는데 오류 발생: : %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "%s에 대해 기본값으로 안전하지 않은 `%s' 홈 디렉토리 사용을 거부합니다\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s의 홈 디렉토리를 생성하는 도중 오류가 발생했습니다: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "`%s'의 초기 암호를 설정하는 도중 오류가 발생했습니다: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s의 사용자 계정을 생성하는 도중 오류 발생: %s.\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "`%s'의 암호를 변경합니다.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "새 암호" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "새 암호 (확인)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "암호가 일치하지 않습니다, 다시 입력해 주십시오.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "암호 변경이 취소되었습니다.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "파일 기술어 %d를 읽지 못했습니다.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s 사용자의 암호를 설정하는데 오류 발생: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "`%s' 그룹의 암호를 설정하는 도중 오류 발생: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "암호가 변경되었습니다.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd 그룹이 존재하지 않습니다\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "`%s' 그룹을 생성하는 도중 오류 발생: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "계정 생성에 실패함: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s(을)를 생성하는 도중 오류 발생: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "%s 사용자를 삭제할 수 없습니다: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s(은)는 gid number를 갖고 있지 않습니다.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd라는 그룹이 존재하지 않으므로, 삭제할 수 없습니다.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd 라는 그룹에는 이름이 지정되어 있지 않습니다.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s 그룹은 삭제할 수 없습니다: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "사용자의 홈 디렉토리를 삭제하는 중 오류 발생" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s 사용자의 암호를 설정하는데 실패함: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%s 사용자를 정지시킬 수 없습니다: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%s 사용자의 정지를 해제할 수 없습니다: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "경고: ID %jd로된 그룹이 존재하지 않습니다.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s 사용자를 편집할 수 없습니다: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%s 그룹을 편집할 수 없습니다: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s의 이전 홈 디렉토리가 없습니다.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s의 새로운 홈 디렉토리가 없습니다.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s에서 %s(으)로 이동하는 도중 오류 발생: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "설정 파일 `%s'(을)를 열 수 없습니다: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "설정 파일 `%s'에 stat 명령 실행하는데 실패했습니다: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "설정 파일 `%s' 용량이 너무 큽니다" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "설정 파일 `%s'(을)를 읽을 수 없습니다: %s" #: lib/error.c:62 msgid "success" msgstr "성공" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "설정에 의해 모듈을 사용할 수 없음" #: lib/error.c:66 msgid "generic error" msgstr "일반적인 오류" #: lib/error.c:68 msgid "not enough privileges" msgstr "수퍼유저 권한이 충분치 않음" #: lib/error.c:70 msgid "access denied" msgstr "접근이 거부됨" #: lib/error.c:72 msgid "bad user/group name" msgstr "사용자/그룹의 이름이 잘못됨" #: lib/error.c:74 msgid "bad user/group id" msgstr "사용자/그룹의 id가 잘못됨" #: lib/error.c:76 msgid "user/group name in use" msgstr "사용자/그룹의 이름이 이미 사용되고 있음" #: lib/error.c:78 msgid "user/group id in use" msgstr "사용자/그룹의 id가 이미 사용되고 있음" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "터미널 속성을 설정하는 도중 오류 발생" #: lib/error.c:82 msgid "error opening file" msgstr "파일을 여는 도중 오류 발생" #: lib/error.c:84 msgid "error locking file" msgstr "파일을 잠그는 도중 오류 발생" #: lib/error.c:86 msgid "error statting file" msgstr "파일의 상태를 확인하는 도중 오류 발생" #: lib/error.c:88 msgid "error reading file" msgstr "파일을 읽는 도중 오류 발생" #: lib/error.c:90 msgid "error writing to file" msgstr "파일에 기록하는 도중 오류 발생" #: lib/error.c:92 msgid "data not found in file" msgstr "파일에서 자료(data)를 찾을 수 없음" #: lib/error.c:94 msgid "internal initialization error" msgstr "내부 초기화 오류" #: lib/error.c:96 msgid "error loading module" msgstr "모듈을 적재하는 도중 오류 발생" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "모듈에서 심볼을 처리하는 도중 오류 발생" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "라이브러리/모듈 버젼이 일치하지 않음" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "잠금 해제하시면 암호 입력란이 비워집니다" #: lib/error.c:105 msgid "invalid attribute value" msgstr "올바르지 않은 속성 " #: lib/error.c:107 msgid "invalid module combination" msgstr "올바르지 않은 모듈 " #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "알 수 없는 오류" #: lib/misc.c:240 msgid "invalid number" msgstr "잘못된 번호 " #: lib/misc.c:254 msgid "invalid ID" msgstr "잘못된 ID " #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "`%s'에 초기화 기능 %s(이)가 없습니다" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s'의 모듈 버젼이 일치하지 않습니다" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' 모듈은 `%s'을(를) 정의하지 않습니다" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "터미널 속성을 읽는 도중 오류 발생" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "터미널 속성을 설정하는 도중 오류 발생" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "터미널로 부터 읽는 도중 오류 발생" #: lib/user.c:218 msgid "name is not set" msgstr "이름이 설정되지 않았습니다." #: lib/user.c:223 msgid "name is too short" msgstr "이름이 너무 짧습니다." #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "이름이 너무 깁니다 (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "이름에 아스키 (ASCII)가 아닌 문자가 들어 있습니다." #: lib/user.c:242 msgid "name contains control characters" msgstr "이름에 제어 문자가 포함되어 있습니다." #: lib/user.c:249 msgid "name contains whitespace" msgstr "이름에 공백이 포함되어 있습니다." #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "이름이 하이픈(연결 부호)로 시작합니다" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "이름에 잘못된 문자 `%c'가 있습니다." #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "사용자 %s는 UID가 없습니다" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "그룹 %s는 GID가 없습니다" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "사용자 %jd는 이름이 없습니다" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "그룹 %jd는 이름이 없습니다" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "사용자는 이름과 UID가 없습니다" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "그룹은 이름과 GID가 없습니다" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "기본값으로 안전하지 않은 `%s' 홈 디렉토리 사용을 거부합니다 " #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s 란의 기본값이 잘못됨: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "파일을 잠그는 도중 오류 발생: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "기본 보안 문맥을 읽어오지 못했습니다: %s " #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s'의 보안 문맥을 읽어오지 못했습니다: %s " #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "기본 보안 문맥을 `%s'으로 설정할 수 없습니다: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s'의 보안 문맥을 결정하지 못했습니다: %s " #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s'(을)를 열 수 없음: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s'(을)를 표시(stat)할 수 없음: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s'(을)를 생성하는 도중 오류 발생: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "백업 파일 `%s' 존재하지만 정규 파일이 아닙니다" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' 소유자를 변경하는 도중 오류 발생: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s' 모드 변경 도중 오류 발생: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s'(을)를 읽는 도중 오류 발생: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s'(을)를 기록하는 도중 오류 발생: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "백업 파일 용량이 일치하지 않음" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s 값 `%s': `:'은 허용되지 않음 " #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s'(을)를 읽을 수 없음: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "파일 안에 목록(entry)이 이미 존재합니다" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s'에 작성할 수 없음: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "entity 개체에 %s 속성이 없습니다" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "목록에 이미 중복되는 이름을 가진 파일이 존재합니다." #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:'은 암호화된 암호에서 허용되지 않음 " #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "암호를 암호화하는 도중 오류 발생" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "'%s', '%s 모듈은 같이 사용될 수 없습니다." #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "수퍼유저 권한으로 실행할 수 없습니다" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "현재 섀도우 파일이 없음 -- 불가능" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "`%2$s' 분류 안의 `%1$s' 서비스를 위해 kadm5 서버에 연결하는 도중 오류 발생: " "%3$s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "kerberos 라이브러리를 초기화하는 도중 오류가 발생했습니다" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "kerberos의 사용자 이름 `%s'(을)를 분석하는 도중 오류가 발생했습니다" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "entity structure에 %s(이)가 없거나 %s 속성이 없습니다" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entity에 %s(이)가 없거나 %s 속성이 없습니다" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "%s(이)가 없거나 %s 속성이 없는 entity가 생성되었습니다" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "kerberos에서 `%s'의 정보를 읽는 도중 오류가 발생했습니다" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entity에 %s 속성이 없습니다" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s'의 암호를 설정하는 도중 오류가 발생했습니다" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Admin Principal의 Kerberos 암호" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap 라이브러리를 초기화하는 도중 오류가 발생했습니다" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "%d 버전에 LDAP 프로토콜을 설정할 수 없습니다" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP 서버와 TLS 연결할 수 없습니다" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP 서버와 연결할 수 없습니다" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP 서버와 연결할 수 없습니다, `%s'로 첫번째 시도: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "사용자 개체에 %s 속성이 없습니다" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "`%s'(이)가 없는 사용자 개체가 생성되었습니다" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP 디렉토리 항목을 생성하는 도중 오류 발생: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP 디렉토리 목록(entry)을 편집하는 도중 오류 발생: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP 디렉토리 항목의 이름을 변경하는 도중 오류 발생: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "개체에 %s 속성이 없습니다" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP 디렉토리 항목을 삭제하는 도중 오류 발생: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "개체에 %s 속성이 없습니다" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "지원되지 않는 암호화 체계입니다 " #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP 디렉토리 안에 그러한 개체가 없습니다" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "`%s' 속성을 찾을 수 없습니다" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s의 LDAP 디렉토리 안에 암호를 설정하는 도중 오류 발생: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP 서버 이름" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP 검색 기반 DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN " #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind 암호" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL 사용자" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL 권한부여 사용자" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "사용자를 생성하는 중 Cyrus SASL 오류 발생: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "사용자를 삭제하는 중 Cyrus SASL 오류 발생: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL를 초기화하는 중 오류 발생: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "사용자의 홈 디렉토리를 생성하는 중 오류 발생" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "사용자의 홈 디렉토리를 삭제하는 중 오류 발생" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "사용자의 홈 디렉토리를 이동하는 중 오류 발생" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s(을)를 초기화하는 도중 오류 발생: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "잘못된 ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "%jd라는 ID를 가진 그룹을 검색하고 있습니다.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s 그룹을 검색하고 있습니다.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID가 %jd인 사용자를 검색하고 있습니다.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s 사용자를 검색하고 있습니다.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "목록(Entry)을 찾을 수 없습니다.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "프롬프트 성공.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "프롬프트 실패.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "기본 사용자 객체 클래스:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "기본 사용자 속성 이름들:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "기본 사용자 속성을 읽음:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "사용자 구조를 복사함:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s의 홈 디렉토리가 없습니다.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s(을)를 삭제하는 도중 오류 발생: %s.\n" libuser-0.60~dfsg/po/ja.po0000644000175000017500000012461112226342567015460 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Hajime Taira , 2011-2012 # Hirofumi Saito , 2004, 2005, 2006 # hyuugabaru , 2007, 2009 # Kiyoto Hashida , 2002 # Kiyoto Hashida , 2009 # Makoto Mizukami , 2008 # Miloslav Trmač , 2011 # Noriko Mizumoto , 2007, 2008, 2009 # Tomoyuki KATO , 2011-2013 # 高一人参 @欠陥遺伝子 , 2011 # Yukihiro Nakai , 2001 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora/language/" "ja/)\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "特権の停止に失敗しました。\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "内部エラーです。\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s は %s の finger 情報を変更するのに認可されていません\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "不明なユーザーのコンテキスト" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd 用のデフォルトのコンテキストが設定できません\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM の初期化に失敗\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s の認証に失敗しました。\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "内部PAMエラー `%s'\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "不明なユーザー認証です。\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "ユーザーが一致しませんでした。\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "すべての情報について入力確認する" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "ユーザーのエージングパラメーターを一覧表示する" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "パスワード変更間隔の最小日数" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "日数" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "パスワード変更後の有効日数" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "パスワード変更日 (1970/1/1 からの日数)" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "パスワード失効後、アカウントが無効であるとみなされるまでの日数" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "パスワード失効日 (1970/1/1 からの日数)" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "ユーザーに警告を開始する、パスワード失効までの日数" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[オプション...] ユーザー" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "引数の構文解析に失敗: %s\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "ユーザー名が指定されていません。\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s の初期化に失敗: %s\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "ユーザー %s は存在しません。\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "アカウントはロックされています。\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "アカウントはロックされていません。\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "最小:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "最大:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "最大値:\tなし\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "警告:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "無効:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "無効化:\tなし\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "次回ログイン時に必ずパスワード変更" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "なし" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "最終更新: \t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "パスワード期限切れ:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "パスワード無効:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "アカウント期限切れ:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s の情報の更新に失敗しました: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [ユーザー]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "ユーザー名が未指定で、uid %dの名前がありません。\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s用のfinger情報を変更しています。\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "フルネーム" #: apps/lchfn.c:146 msgid "Surname" msgstr "姓" #: apps/lchfn.c:157 msgid "Given Name" msgstr "名" #: apps/lchfn.c:167 msgid "Office" msgstr "勤務先" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "勤務先電話番号" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "自宅電話番号" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "メールアドレス" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger情報は変更されていません: 入力エラー\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger情報が変更されました。\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger情報は変更されていません: %s\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s 用にシェルを変更中\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "新規のシェル" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "シェル変更不可能: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "シェル変更済み\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "新しいグループの GID" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "番号" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "システムグループを作成します" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] グループ" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "グループ名は指定されていません。\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "無効なグループID: %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "グループの作成に失敗しました: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "グループ %s は存在しません。\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "グループ %s は削除できませんでした: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "グループの GID を設定します" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "グループを指定された名前に変更する" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "名前" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "グループに用いる平文パスワード" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "文字列" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "グループに用いるハッシュ化パスワード" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "追加する管理者の一覧" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "削除する管理者の一覧" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "追加するグループメンバーの一覧" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "削除するグループメンバーの一覧" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "グループをロックします" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "グループをロック解除します" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L と -U の両方のオプションが指定されています。\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "グループ %s のパスワード設定に失敗しました: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "グループ %s はロックされませんでした: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "グループ %s はロック解除できませんでした: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "グループ %s は修正できませんでした: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s の検索に失敗: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "指定された名前のユーザーがメンバーであるグループの代わりに、指定された名前の" "グループのメンバーを一覧表示します" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "名前かつ/または UID/GID によりメンバー情報のみを一覧表示する" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "グループ名は未指定です。%s を使用中\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "グループ名は未指定です。gid %d の名前は未設定\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "ユーザー名が未指定です。%s を使用中\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s は存在しません。\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "ユーザー情報レコードを持つファイル" #: apps/lnewusers.c:47 msgid "PATH" msgstr "パス" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "ホームディレクトリーを作成しない" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "メールスプールを作成しない" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[オプション...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "%s の読み込みエラー: %s\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "%s 用のアカウント作成に失敗: 不正な書式が含まれています。\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "無効なユーザーID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID:0 でのアカウント作成を拒否中です。\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "%s 用にGID %jd でグループ作成中にエラーが発生しました: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "デフォルトで %s 用の危険なホームディレクトリー %s の使用を拒否中です\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s 用の新規ホームディレクトリー作成に失敗しました: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "%s のメールスプールの作成中にエラーが発生しました: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s 用の初期パスワード設定中にエラーが発生しました: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s 用のユーザーアカウント作成に失敗しました: %s。\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "ユーザーのパスワードの代わりにグループのパスワードを設定します" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "新しい平文パスワード" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "新しい暗号文パスワード" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "指定された記述子から新しい平文パスワードを読み込みます" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "指定された記述子から新しい暗号パスワードを読み込みます" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s のパスワード変更中にエラー。\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "新規パスワード" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "新規パスワード(確認)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "パスワードが一致しません。もう一度やり直してください。\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "パスワード変更は取り消されました。\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "エラー: ファイルディスクリプター %d から読み込みできません。\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "ユーザー %s のパスワード設定に失敗: %s。\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "グループ %s のパスワード設定中にエラーが発生しました: %s 。\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "パスワード変更済み。\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "システムユーザーを作成する" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "新しいユーザーのゲコス情報" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "新しいユーザーのホームディレクトリー" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "新しいユーザー向けファイルを持つディレクトリー" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "新しいユーザーのシェル" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "新しいユーザーの UID" #: apps/luseradd.c:69 msgid "group for new user" msgstr "新しいユーザーのグループ" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "ユーザーのホームディレクトリーを作成しない" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "ユーザーと同じ名前のグループを作成しない" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "新しいユーザーの一般名" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "新しいユーザーの名" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "新しいユーザーの姓" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "新しいユーザーの部屋番号" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "新しいユーザーの電話番号" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "新しいユーザーの自宅電話番号" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "グループ %jd は存在しません\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "グループ `%s' の作成に失敗: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "アカウントの作成に失敗しました: %s。\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s の作成に失敗: %s。\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "メールスプールの作成中にエラーが発生しました: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "ユーザーがプライベートグループを持っていても、それを削除しません。" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "ユーザーのホームディレクトリーを削除する" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "ユーザー %s は削除できませんでした: %s。\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s には GID 番号がありません。\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd のグループが存在しないため、削除しません。\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd のグループにはグループ名がありません。\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "グループ %s は削除できませんでした: %s。\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ユーザーのホームディレクトリー削除に失敗しました" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "メールスプールの削除中にエラーが発生しました: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS の情報" #: apps/lusermod.c:60 msgid "home directory" msgstr "ホームディレクトリー" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "ホームディレクトリーの内容を移動する" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "ユーザーのシェルを設定する" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "ユーザーの UID を設定する" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "ユーザーのプライマリー GID を設定する" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "ユーザーのログイン名を変更する" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "ユーザーの平文パスワード" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "ユーザーのハッシュ済みパスワード" #: apps/lusermod.c:75 msgid "lock account" msgstr "アカウントをロックする" #: apps/lusermod.c:78 msgid "unlock account" msgstr "アカウントをロック解除する" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "ユーザーの一般名を設定する" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "ユーザーの名を設定する" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "ユーザーの姓を設定する" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "ユーザーの部屋番号を設定する" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "ユーザーの電話番号を設定する" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "ユーザーの自宅電話番号を設定する" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "ユーザーのパスワード設定に失敗 %s: %s。\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "ユーザー %s はロックできませんでした: %s。\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "ユーザー %s はロック解除できませんでした: %s。\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "警告: グループ ID %jd は存在しません。\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "ユーザー %s は編集できませんでした: %s\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "グループ %s は修正できませんでした:%s\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s には古いホームディレクトリーがありません。\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s には新しいホームディレクトリーはありません。\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "" "%s を %s に移動できませんでした: %s\n" "\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "設定ファイル `%s' を開けませんでした: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "設定ファイル `%s' を stat できませんでした: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "設定ファイル `%s' が大きすぎます" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "設定ファイル `%s' を開けませんでした: %s" #: lib/error.c:62 msgid "success" msgstr "成功" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "モジュールが設定で無効になっています。" #: lib/error.c:66 msgid "generic error" msgstr "一般エラー" #: lib/error.c:68 msgid "not enough privileges" msgstr "権限がありません" #: lib/error.c:70 msgid "access denied" msgstr "アクセスが拒否されました" #: lib/error.c:72 msgid "bad user/group name" msgstr "正しくないユーザー/グループ名" #: lib/error.c:74 msgid "bad user/group id" msgstr "正しくないユーザー/グループ ID" #: lib/error.c:76 msgid "user/group name in use" msgstr "ユーザー/グループ名は使われています" #: lib/error.c:78 msgid "user/group id in use" msgstr "ユーザー/グループ ID は使われています" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "端末属性の取得にエラーが発生しました" #: lib/error.c:82 msgid "error opening file" msgstr "ファイルの読み込みに失敗" #: lib/error.c:84 msgid "error locking file" msgstr "ファイルのロックに失敗" #: lib/error.c:86 msgid "error statting file" msgstr "ファイルの stat 情報取得に失敗" #: lib/error.c:88 msgid "error reading file" msgstr "ファイルの読み込み中にエラーが発生しました" #: lib/error.c:90 msgid "error writing to file" msgstr "ファイルへの書き込み中にエラーが発生しました" #: lib/error.c:92 msgid "data not found in file" msgstr "データはファイルに見つかりませんでした" #: lib/error.c:94 msgid "internal initialization error" msgstr "内部の初期化に失敗" #: lib/error.c:96 msgid "error loading module" msgstr "モジュールのロードに失敗" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "モジュールのシンボル解決に失敗しました。" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "ライブラリー/モジュールバージョンの不一致" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "ロックを解除するとパスワード領域は空になります" #: lib/error.c:105 msgid "invalid attribute value" msgstr "無効な属性の値です" #: lib/error.c:107 msgid "invalid module combination" msgstr "無効なモジュールの組み合わせです" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "新しいユーザーのホームディレクトリー" #: lib/error.c:115 msgid "unknown error" msgstr "不明なエラーが発生しました" #: lib/misc.c:240 msgid "invalid number" msgstr "無効な番号" #: lib/misc.c:254 msgid "invalid ID" msgstr "無効な ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "`%s' の関数 %s で初期化できません" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' のモジュールバージョンの不一致" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "モジュール `%s' が `%s' を定義していません" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "端末属性の読み込み中にエラーが発生しました" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "端末属性の設定中にエラーが発生しました" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "端末から読み込み中にエラーが発生しました" #: lib/user.c:218 msgid "name is not set" msgstr "名前が設定されていません" #: lib/user.c:223 msgid "name is too short" msgstr "名前が短すぎます" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "名前が長すぎます (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "名前に ASCII 以外の文字があります" #: lib/user.c:242 msgid "name contains control characters" msgstr "名前が制御文字を含んでいます" #: lib/user.c:249 msgid "name contains whitespace" msgstr "名前に空白があります" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "名前がハイフンから始まっています" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "名前に無効な文字 `%c' があります" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "ユーザー %s には UID がありません。" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "ユーザー %s が見つかりませんでした" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "グループ %s には GID がありません。" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "グループ %s が見つかりませんでした" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "ユーザー %jd には 名前がありません。" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "グループ %jd にはありません。" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "ユーザーには名前もしくは UID がありません。" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "グループには名前もしくは GID がありません。" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "デフォルトで危険なホームディレクトリ `%s' の使用を拒否中です" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "領域 %s の値は無効なデフォルト値です : %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ファイルのロック中にエラーが発生しました: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "デフォルトのセキュリティー情報を取得できません: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' のセキュリティー情報を取得できません: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "`%s' にデフォルトのセキュリティー情報を設定できません: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' のセキュリティー情報を決定できません: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' を開けません: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' の stat 情報を取得できません: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' の作成中にエラーが発生しました: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "バックアップファイル `%s' は存在しますが通常のファイルではありません。" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' の所有者変更に失敗: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "エラー: `%s' のモードを変更できません: %s " #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s'の読み込みに失敗: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s'の書き込みに失敗: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "バックアップファイルサイズの不一致" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s 値 `%s': `:' は許可されていません" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' から読みこめません: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "エントリーはファイルにすでにあります" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s' に書き込めません: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "エンティティーオブジェクトには %s 属性はありません" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "競合する名前のエントリーはすでにファイル内にあります" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' は暗号化パスワードでは許可されていません" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "パスワードの暗号化中にエラーが発生しました" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' と `%s' のモジュールは組み合わせできません。" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "スーパーユーザー特権で実行できません" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "shadow ファイルはありません -- 無効になっています" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "レルム `%s' のサービス `%s' で kadm5 サーバーに接続できません: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "kerberosライブラリーの初期化でエラーが発生しました" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "kerberosのユーザー名 `%s' で構文解析エラーが発生しました" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "エンティティー構造体には %s および %s 属性はありません。" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "エンティティーには %s および %s 属性はありません。" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "エンティティーは %s や %s 属性なしで作成されました" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "kerberosから `%s' の情報を読み込み中にエラーが発生しました" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "エンティティーには %s 属性はありません" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' のパスワード設定中にエラーが発生しました" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "kerberosレルム" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "kerberos管理プリンシパル" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "管理プリンシパルのkerberosパスワード" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "LDAP ライブラリーの初期化でエラー" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP プロトコルをバージョン %d に設定できませんでした" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP サーバーと TLS ネゴシエートできませんでした" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP サーバーとバインドできませんでした" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "LDAP サーバーとバインドできませんでした。最初に `%s' として試みます: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "ユーザーオブジェクトには %s 属性はありません" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "ユーザーオブジェクトは `%s' なしで生成されました" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP ディレクトリーエントリーの作成中にエラーが発生しました: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP ディレクトリーエントリーを変更するときにエラー: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP ディレクトリーエントリーの名前変更でエラー: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "オブジェクトには %s 属性はありません" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP ディレクトリーエントリーの削除でエラー: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "オブジェクトには %s 属性はありません" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "サポートされていないパスワード暗号化スキームです" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP ディレクトリーにはそのようなオブジェクトはありません" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "`%s' 属性は見つかりませんでした" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s の LDAP ディレクトリーのパスワード設定でエラー: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP サーバー名" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP 検索ベース DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP バインド DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP バインドパスワード" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL ユーザー" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL 認証ユーザー" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "ユーザーの作成中に Cyrus SASL エラー: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "ユーザーの削除で Cyrus SASL エラー: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL の初期化に失敗: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ユーザー用のホームディレクトリー作成に失敗しました" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ユーザーのホームディレクトリー削除に失敗しました" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ユーザーのホームディレクトリー移動に失敗しました" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s の初期化に失敗: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "無効な ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID %jd のグループを検索中。\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "名前が %s のグループを検索中。\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID %jd のユーザーを検索中。\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "名前が %s のユーザーを検索中。\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "エントリーは見つかりませんでした。\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "指示成功。\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "指示失敗。\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "デフォルトユーザーオブジェクトクラス:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "デフォルトユーザー属性名:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "デフォルトユーザー属性を取得中:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "ユーザー構造体をコピー中:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s にはホームディレクトリーがありません。\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s の削除に失敗: %s。\n" libuser-0.60~dfsg/po/pt.gmo0000644000175000017500000005014112226342604015641 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----//@/!030!E0g000%0D0&+1R1n1"1'1*132342h2|2 2 22@2030N3-3/333404K4j4"44)4*4)5.:5i5+5F5356*6a676&6 616 7,7%F7&l7&7(7)7) 878 P8'q888888,8!9;9#Z9-~99999::6:L: e: s:: : ::::.:$;6D;-{;/;?;3<$M< r<~<<< <<*<=.=0D=Au=J=%>$(>*M>)x>>> >%>#?)'?-Q?.?0??? @-@ J@W@q@@%@ @J@2A NA"oA5A)AKA3>B<rB<B>BE+CDqCBC=C!7D"YDQ|D#D)D"E?E&_E!E3E-E& F71FFiFF0F0F)G"@G)cG%GGGG&H0-H0^HH;HHH/I >I-_I2I8I$I!J6@J&wJJJJJK!K?K _KlK"KK0K!K&L+7L%cL(L$L!LL'M;MUM#qM2M5M*M!)N6KN"N NN1NO+O->OlOO"O+O(O#PAP>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora/language/pt/) Language: pt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s não tem um número gid. %s não existe %s não está autorizado a modificar os dados de 'finger' de %s %s valor `%s': `:' não permitidoConta Expira: %s A criação da conta falhou: %s. A conta está bloqueada. A conta não está bloqueada. Autenticação falhou para %s. Foi indicado -L e -U ao mesmo tempo. Não é possível configurar o contexto por omissão de /etc/passwd A alterar os dados de 'finger' de %s. A modificar a senha de %s. A alterar a 'shell' de %s. A copiar estrutura do utilizador: Erro ao criar utilizador Cyrus SASL: %sErro ao remover utilizador Cyrus SASL : %sNomes dos atributos por omissão dos utilizadores: Classes de objectos por omissão dos utilizadores: Endereço de E-mailEntrada não encontrada. Erro ao mudar o modo de `%s': %sErro ao mudar o dono de `%s': %sErro ao criar %s: %s. Erro ao criar conta para `%s': linha formatada incorrectamente. Erro ao criar grupo `%s': %s Erro ao criar grupo para `%s' com o GID %jd: %s Erro ao criar a directoria pessoal de %s: %s Erro ao criar a conta para o utilizador %s: %s Erro ao inicializar %s: %s Erro ao inicializar %s: %s. Erro ao inicializar PAM. Erro ao procurar o %s: %s Erro ao mover %s para %s: %s. Erro ao abrir `%s': %s. Erro ao processar argumentos: %s. Erro ao ler `%s': %sErro ao ler do descritor do ficheiro %d. Erro ao definir a senha inicial de %s: %s Erro ao alterar a senha do grupo %s: %s. Erro ao alterar a senha do utilizador %s: %s. Erro ao escrever `%s': %sNão foi possível abandonar privilégios. Não foi possível alterar a informação de envelhecimento de %s: %s Não foi possível alterar a senha do grupo %s: %s Não foi possível mudar a senha do utilizador %s: %s Dados do 'finger' alterados. Dados do 'finger' não alterados: erro de inserção. Dados do 'finger' não alterados: %s. Nome CompletoA obter atributos por omissão dos utilizadores: Primeiro NomeO grupo %jd não existe. O grupo %s não pode ser apagado: %s O grupo %s não pode ser apagado: %s. O grupo %s não pode ser trancado: %s O grupo %s não pode ser modificado: %s O grupo %s não pode ser modificado: %s. O grupo %s não pode ser destrancado: %s O grupo %s não existe. A criação do grupo falhou: %s O grupo com o GID %jd não tinha nome. Telefone de CasaInactivo: %ld Erro interno no PAM `%s'. Erro interno. ID inválido %s Valor por omissão do campo inválido %s: %sID de grupo inválido %s ID de utilizador inválido %s Administrador Principal do KerberosSenha Kerberos para o Administrador PrincipalReino KerberosDN de Ligação LDAPSenha de Ligação LDAPUtilizador Autorizado SASL LDAPUtilizador SASL LDAPBase DN de Pesquisa LDAPNome do Servidor LDAPÚltima Alteração: %s Máximo: %ld Mínimo: %ld NuncaNova 'Shell'Nova senhaNova senha (confirmação)Nenhum nome de grupo indicado, nenhum nome para o gid %d. Nenhum nome de grupo indicado, a utilizar %s. Nenhum nome de grupo indicado. Não existe grupo com o GID %jd, não será removido. Não existe nova directoria pessoal para %s. Não existe directoria pessoal antiga para %s. Nenhum nome de utilizador indicado, nenhum nome para o uid %d. Nenhum nome de utilizador indicado, a utilizar %s. Nenhum nome de utilizador indicado. EscritórioTelefone do EscritórioSenha Expira: %s Senha Inactiva: %s Alteração de senha cancelada. Senha alterada. As senhas não condizem, tente novamente. Perguntas falharam. Perguntas sucederam. A recusar a criação de uma conta com o UID 0. A recusar utilizar directório pessoal perigoso `%s' por omissãoA recusar utilizar directório pessoal perigoso `%s' para %s por omissão A procurar pelo grupo com o nome %s. A procurar pelo grupo com o ID %jd. A procurar pelo utilizador com o nome %s. A procurar pelo utilizador com o ID %jd. 'Shell' alterada. 'Shell' não alterada: %s Último NomeUtilizador desconhecido autenticado. Contexto de utilizador desconhecidoUtilizador %s não pode ser apagado: %s. O utilizador %s não pode ser bloqueado: %s. O utilizador %s não pode ser modificado: %s. O utilizador %s não pode ser desbloqueado: %s. Utilizador %s não existe. Utilizador trocado. Aviso: %ld Atenção: O grupo com o ID %jd não existe. [OPÇÃO...][OPÇÃO...] [utilizador][OPÇÃO...] grupo[OPÇÃO...] utilizador`:' não permitido em senhas cifradasacesso negadoficheiro de cópia de segurança `%s' existe e não é um ficheiro regulartamanho do ficheiro de cópia de segurança difereid do utilizador/grupo inválidonome do utilizador/grupo inválidoo ficheiro de configuração `%s' é demasiado grandenão foi possível ligar ao servidor LDAPnão foi possível ligar ao servidor LDAP, primeira tentativa como `%s': %snão foi possível negociar TLS com o servidor LDAPnão foi possível abrir ficheiro de configuração `%s': %snão foi possível ler o ficheiro de configuração `%s': %snão foi possível definir o protocolo LDAP para a versão %dnão foi possível obter dados do ficheiro de configuração `%s': %snão foi possível determinar o contexto de segurança para `%s': %snão foi possível obter o contexto de segurança por omissão: %snão foi possível obter o contexto de segurança de `%s': %snão foi possível abrir `%s': %snão foi possível ler de `%s': %snão foi possível configurar o contexto de segurança por omissão para `%s': %snão possível obter dados `%s': %snão foi possível escrever para `%s': %sdados não encontrados no ficheiroentidade não tem o atributo %sa entidade não tem atributos %s ou %sa entidade não tem o atributo %sa estrutura da entidade não tem atributos %s ou %sentidade foi criada sem os atributos %s ou %sentrada já está presente no ficheiroentrada com o mesmo nome já está presente no ficheiroerro ao ligar ao servidor kadm5 para o serviço `%s' no reino `%s': %serro ao criar `%s': %serro ao criar uma entrada na directoria LDAP: %serro ao criar a directoria pessoal do utilizadorerro ao cifrar a senhaerro ao inicializar Cyrus SASL: %serro ao inicializar a biblioteca kerberoserro ao inicializar a biblioteca ldaperro ao carregar móduloerro ao bloquear ficheiroerro ao bloquear o ficheiro: %serro ao manipular atributos da consolaerro ao modificar entrada na directoria LDAP: %serro ao mover a directoria pessoal do utilizadorerro ao abrir ficheiroerro ao processar o nome de utilizador `%s' para o kerberoserro ao ler ficheiroerro ao ler da consolaerro ao ler informações para `%s' do kerberoserro ao ler atributos da consolaerro ao apagar entrada na directoria LDAP: %serro ao remover a directoria pessoal do utilizadorerro ao alterar o nome da entrada na directoria LDAP: %serro ao resolver símbolo em móduloerro ao definir a senha para `%s'erro ao definir a senha na directoria LDAP para %s: %serro ao modificar atributos da consolaerro ao obter dados do ficheiroerro ao escrever para ficheiroerro genéricoO grupo %jd não tem nomeo grupo %s não tem um GIDo grupo não tem nome nem GIDerro interno de inicializaçãoID inválidovalor de atributo inválidocombinação de módulos inválidanúmero inválidoversões não compatíveis de biblioteca/móduloo módulo `%s' não define o `%s'módulo desactivado por configuraçãoversão não compatível de módulo em `%s'o nome contém caracteres de controloo nome contém o caracter inválido `%c'o nome contém caracteres não-ASCIIo nome contém espaços em branconome não foi configuradoo nome é demasiado comprido (%zu > %d)o nome é demasiado curtoo nome começa com o hífeno atributo `%s' não foi encontradonão existe função de inicialização %s em `%s'o ficheiro shadow não está presente -- a desactivarobjecto não encontrada na directoria LDAPnão tem privilégios suficientesnão vou executar com privilégios de super-utilizadoro objecto não tinha o atributo %so objecto não tem o atributo %ssucessoos módulos `%s' e `%s' não podem ser combinadoserro desconhecidodesbloquear tornaria o campo de senha vazioEsquema de cifras de passwords não suportadoo utilizador %jd não tem nomeo utilizador %s não tem um UIDo utilizador não tem nome nem UIDo objecto utilizador não tem o atributo %so objecto utilizador foi criado sem `%s'id do utilizador/group em usonome do utilizador/group em usolibuser-0.60~dfsg/po/el.po0000644000175000017500000013570312226342567015472 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Dimitris Glaros , 2011, 2012 # Dimitris Glezos , 2006, 2007 # ioza1964 , 2013 # Kostas Papadimas , 2009 # Miloslav Trmač , 2011 # Simos Xenitellis , 2006 # mitzie , 2013 # Thalia Papoutsaki , 2010 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-08-06 08:52+0000\n" "Last-Translator: ioza1964 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/fedora/language/" "el/)\n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Αποτυχία εγκατάλειψης δικαιωμάτων.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Εσωτερικό σφάλμα.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "O %s δεν επιτρέπεται να τροποποιήσει τις πληροφορίες finger του %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Άγνωστο πλαίσιο χρήστη" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Αδυναμία ορισμού προεπιλεγμένου περιβάλλοντος για /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Σφάλμα αρχικοποίησης PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Η πιστοποίηση απέτυχε για %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Εσωτερικό σφάλμα PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Πιστοποιήθηκε άγνωστος χρήστης.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Κακό ταίριασμα χρήστη.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "έτοιμο για όλες τις πληροφορίες " #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "προβάλετε χρονικές παραμέτρους για τον χρήστη στη λίστα " #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "ελάχιστος αριθμός ημερών ανάμεσα στις αλλαγές " #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "ΗΜΕΡΕΣ" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "μέγιστος αριθμός ημερών μεταξύ των αλλαγών κωδικών πρόσβασης " #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "ημερομηνία τελευταίας αλλαγής κωδκού από τις 1/1/70." #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "αριθμός ημερών μετά την λήξη του κωδικού πρόσβασης όταν ο λογαρισμός είναι " "ανενεργός " #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "ημερομηνία λήξης κωδικού πρόσβασης σε μέρες από 1/1/70" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "μέρες πριν την ειδοποίηση του χρήστη για την λήξη." #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ΕΠΙΛΟΓΗ...] χρήστης" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Σφάλμα κατά την ανάλυση ορισμάτων: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Δεν έχει οριστεί όνομα χρήστη.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Σφάλμα κατά την αρχικοποίηση %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Ο χρήστης %s δεν υπάρχει.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Ο λογαριασμός είναι κλειδωμένος.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Ο λογαριασμός δεν είναι κλειδωμένος.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Ελάχιστο:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Μέγιστο:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Μέγιστο: Τίποτα\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Προειδοποίηση:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Ανενεργό:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Ανενεργό: Ποτέ\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Πρέπει να αλλάξει ο κωδικός στην επόμενη σύνδεση " #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Ποτέ" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Τελευταία αλλαγή:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Ο κωδικός λήγει:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Ανενεργός κωδικός:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Ο λογαριασμός λήγει:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Αδυναμία τροποποίησης πληροφοριών aging για %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ΕΠΙΛΟΓΗ...] [χρήστης]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Δεν καθορίστηκε όνομα χρήστη, κανένα όνομα για uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Τροποποίηση προσωπικών πληροφοριών για %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Πλήρες όνομα" #: apps/lchfn.c:146 msgid "Surname" msgstr "Επώνυμο" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Δοθέν όνομα" #: apps/lchfn.c:167 msgid "Office" msgstr "Γραφείο" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Τηλέφωνο γραφείου" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Τηλέφωνο οικίας" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Διεύθυνση E-Mail " #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Οι πληροφορίες Finger δεν άλλαξαν: σφάλμα εισόδου.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Οι πληροφορίες Finger άλλαξαν.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Οι πληροφορίες Finger δεν άλλαξαν: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Τροποποίηση κελύφους για %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Νέο κέλυφος" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Δεν έγινε αλλαγή κελύφους: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Έγινε αλλαγή κελύφους.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid για νέα ομάδα " #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "ΑΡΙΘ." #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "δημιουργείστε συστημική ομάδα " #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ΕΠΙΛΟΓΗ...] ομάδα" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Δεν έχει οριστεί όνομα ομάδας.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Μη έγκυρο ID ομάδας %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Η δημιουργία ομάδας απέτυχε: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Η ομάδα %s δεν υπάρχει.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Δε μπόρεσε να γίνει διαγραφή ομάδας %s: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "εγκατασττήστε το GID για την ομάδα. " #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "αλλαγή της ομάδς για να έχει συγκεκριμένο όνομα " #: apps/lgroupmod.c:58 msgid "NAME" msgstr "ΟΝΟΜΑ " #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "κωδικός πρόσβασης βασικού κειμένου για χρήση με την ομάδα " #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "ΣΕΙΡΑ " #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "προ-θεώρημένος κωδικός πρόσβασης για χρήση με την ομάδα " #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "πρόσθση λίστας διαχειριστών " #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "λίστα διαχειριστών για αφαίρεση " #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "λίστα μελών ομάδας για πρόσθεση" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "λίστα μελών ομάδας για αφαίρεση " #: apps/lgroupmod.c:71 msgid "lock group" msgstr "ξεκλειδώστε την ομάδα " #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "ξεκλειδώστε ομάδα " #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Καθορίστηκε και το -L και το -U.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Αποτυχία ορισμού συνθηματικού για ομάδα %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Δε μπόρεσε να γίνει κλείδωμα ομάδας %s: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Δε μπόρεσε να γίνει ξεκλείδωμα ομάδας %s: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Δε μπόρεσε να γίνει τροποποίηση ομάδας %s: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Σφάλμα εύρεσης %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "λίστα μελών μιας συγκεκριμένης ομάδας αντί των εγγραφών μελών για τον " "ονομασμένο χρήστη. " #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "πληροφοριες μόνο για την λίστα συνδρομής με όνομα, και όχι UID/GID. " #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Δεν έχει οριστεί όνομα ομάδας, γίνεται χρήση %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Δεν έχει οριστεί όνομα ομάδας, κανένα όνομα για gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Δεν έχει οριστεί όνομα χρήστη, γίνεται χρήση %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr " %s δεν υπάρχει\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "φάκελλος με εγγραφές πληροφοριών χρήστη " #: apps/lnewusers.c:47 msgid "PATH" msgstr "ΕΙΣΟΔΟΣ " #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "μην δημιουργήσετε λίστα διευθύνσεων για χρήστη " #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "μην δημιουργείτε συνωστισμό μηνυμάτων " #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ΕΠΙΛΟΓΗ...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Σφάλμα ανοίγματος `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Σφάλμα δημιουργία λογαριασμού για `%s': μη επιτρεπτή μορφοποίηση γραμμής.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Μη έγκυρο ID χρήστη %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Άρνηση δημιουργίας λογαριασμού με UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Σφάλμα στη δημιουργία ομάδας για `%s' με GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "Απαγόρευσή χρήσης πρόσβασις κατάλογου `%s 'για%s από προεπιλογή\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Σφάλμα ορισμού αρχικού καταλόγου για %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" "Σφάλμα στη δημιουργία του ταχυδρομικού νήματος για %s: %s\n" "\n" "\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Σφάλμα ορισμού αρχικού συνθηματικού για %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Σφάλμα δημιουργίας λογαριασμού χρήστη για %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "βάλτε κωδικό ομάδας αντί κωδικό χρήστη " #: apps/lpasswd.c:51 msgid "new plain password" msgstr "νέος κωδικός πεδίου " #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "νέος κωδικός με απόκρυψη " #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "διαβάστε τον νέο κωδικό πεδίο από την δοσμένη περιγραφή " #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "διαβάστε τον νέο κωδικό πεδίο από την δοσμένη περιγραφή " #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Αλλαγή συνθηματικού για %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Νέος κωδικός" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Νέος κωδικός (επιβεβαίωση)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Οι κωδικοί δε συμπίπτουν, παρακαλώ προσπαθήστε ξανά.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Ακύρωση αλλαγής συνθηματικού.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Σφάλμα κατά την ανάγνωση από το αρχείο Περιγραφή %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Σφάλμα ορισμού συνθηματικού για το χρήστη %s: %s\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Σφάλμα ορισμού συνθηματικού για την ομάδα %s: %s\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Το συνθηματικό άλλαξε.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "δημιουργήστε χρήστη συστήματος " #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "Πληροφορίες GEGOS για τον νέο χρήστη " #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "αρχική λίστα διευθύνσεων για τον νέο χρήστη " #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "λίστα διευθύνσεων με φακέλλους για τον νέο χρήστη " #: apps/luseradd.c:65 msgid "shell for new user" msgstr "περίβλημα για τον νέο χρήστη " #: apps/luseradd.c:67 msgid "uid for new user" msgstr "Πληροφορίες GEGOS για τον νέο χρήστη " #: apps/luseradd.c:69 msgid "group for new user" msgstr "ομάδα για τον νέο χρήστη " #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "μην δημιουργήσετε λίστα διευθύνσεων για χρήστη " #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "μην δημιουργείτε ομάδα με το ίδιο όνομα χρήστη " #: apps/luseradd.c:79 msgid "common name for new user" msgstr "κοινό όνομα για τον νέο χρήστη " #: apps/luseradd.c:81 msgid "given name for new user" msgstr "δεδομένο όνομα για νέο χρήστη " #: apps/luseradd.c:83 msgid "surname for new user" msgstr "επίθετο του νέου χρήστη " #: apps/luseradd.c:85 msgid "room number for new user" msgstr "αριθμός χώρου για τον νέο χρήστη " #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "αριθμός τηλεφώνου για τον νέο χρήστη " #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "αρχική λίστα διευθύνσεων για τον νέο χρήστη " #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Δεν υπάρχει η ομάδα %jd\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Σφάλμα στη δημιουργία ομάδας `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Αποτυχία δημιουργίας λογαριασμού: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Σφάλμα στη δημιουργία %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" "Σφάλμα στη δημιουργία του ταχυδρομικού νήματος: %s\n" "\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "μην αφαιρείτε την προσωπική ομάδα χρήστη, αν ο χρήστης έχει μία " #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "αφαιρέστε την λίστα διευθύνσεων χρήστη " #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Δεν είναι δυνατή η διαγραφή του χρήστη %s: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s δεν έχει αριθμό gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Με υπάρχει ομάδα με GID %jd, δεν γίνεται απομάκρυνση.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Η ομάδα με GID %jd δεν έχει όνομα ομάδας.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Δεν ήταν δυνατή η διαγραφή της ομάδας %s: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "σφάλμα διαγραφής αρχικού καταλόγου χρήστη" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Σφάλμα απομάκρυνσης ταχυδρομικού νήματος: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "πληροφορίες GECOS " #: apps/lusermod.c:60 msgid "home directory" msgstr "αρχική λίστα διευθύνσεων για τον νέο χρήστη " #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "μετακινείστε τα περιεχόμενα της λίστας σπιτιών " #: apps/lusermod.c:64 msgid "set shell for user" msgstr "θέστε το πλαίσιο για τον χρήστη " #: apps/lusermod.c:66 msgid "set UID for user" msgstr "θέστε το UID για τον χρήστη " #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "θέστε το βασικό GID του χρήστη " #: apps/lusermod.c:70 msgid "change login name for user" msgstr "αλλάξτε τον κωδικό εισόδπυ για τον χρήστη " #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "κωδικός κυρίως κειμένου για τον χρήστη " #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "προ-κλείδωσμα κωδικού για τον χρήστη " #: apps/lusermod.c:75 msgid "lock account" msgstr "κλείδωμα λογαριασμού " #: apps/lusermod.c:78 msgid "unlock account" msgstr "ξεκλείδωμα λογαρισμού " #: apps/lusermod.c:80 msgid "set common name for user" msgstr "βάλτε κοινό όνομα χρήστη " #: apps/lusermod.c:82 msgid "set given name for user" msgstr "βάλτε συγκεκριμένο όνομα χρήστη " #: apps/lusermod.c:84 msgid "set surname for user" msgstr "βάλτε κύριο όνομα χρήστη " #: apps/lusermod.c:86 msgid "set room number for user" msgstr "βάλτε αριθμό δωματίου χρήστη " #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "βάλτε αριθμό τηλεφώνου για τον χρήστη " #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "βάλτε αριθμό τηλεφώνου για τον χρήστη " #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Αποτυχία στον ορισμό συνθηματικού για το χρήστη %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Δε μπόρεσε να γίνει κλείδωμα του χρήστη %s: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Δε μπόρεσε να γίνει ξεκλείδωμα του χρήστη %s: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Προειδοποίηση: Η ομάδα με ID %jd δεν υπάρχει.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Δε μπόρεσε να γίνει τροποποίηση του χρήστη %s: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Δε μπόρεσε να γίνει κλείδωμα της ομάδας %s: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Δεν υπάρχει παλιός αρχικός κατάλογος για %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Δεν υπάρχει νέος αρχικός κατάλογος για %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Σφάλμα στη μετακίνηση του %s στο %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "δεν ήταν δυνατό το άνοιγμα του αρχείου ρύθμισης `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "δεν ήταν δυνατό το stat του αρχείου ρύθμισης `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "το αρχείο ρύθμισης `%s' είναι πολύ μεγάλο" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "αδυναμία ανάγνωσης αρχείου ρυθμίσεων `%s': %s" #: lib/error.c:62 msgid "success" msgstr "επιτυχία" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "το άρθρωμα είναι απενεργοποιημένο μέσω ρύθμισης" #: lib/error.c:66 msgid "generic error" msgstr "γενικό σφάλμα" #: lib/error.c:68 msgid "not enough privileges" msgstr "ανεπαρκή προνόμια χρήστη" #: lib/error.c:70 msgid "access denied" msgstr "Άρνηση πρόσβασης" #: lib/error.c:72 msgid "bad user/group name" msgstr "κακό όνομα χρήστη/ομάδας" #: lib/error.c:74 msgid "bad user/group id" msgstr "κακό id χρήστη/ομάδας" #: lib/error.c:76 msgid "user/group name in use" msgstr "όνομα χρήστη/ομάδας σε χρήση" #: lib/error.c:78 msgid "user/group id in use" msgstr "id χρήστη/ομάδας σε χρήση" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "σφάλμα χειραγώγησης γνωρισμάτων τερματικού" #: lib/error.c:82 msgid "error opening file" msgstr "σφάλμα στο άνοιγμα αρχείου" #: lib/error.c:84 msgid "error locking file" msgstr "Σφάλμα στο κλείδωμα αρχείου" #: lib/error.c:86 msgid "error statting file" msgstr "Σφάλμα στο stat αρχείου" #: lib/error.c:88 msgid "error reading file" msgstr "Σφάλμα στην ανάγνωση αρχείου" #: lib/error.c:90 msgid "error writing to file" msgstr "Σφάλμα στην εγγραφή στο αρχείο" #: lib/error.c:92 msgid "data not found in file" msgstr "δεν βρέθηκαν δεδομένα στο αρχείο" #: lib/error.c:94 msgid "internal initialization error" msgstr "εσωτερικό σφάλμα αρχικοποίησης" #: lib/error.c:96 msgid "error loading module" msgstr "σφάλμα φόρτωσης αρθρώματος" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "σφάλμα στην επίλυση συμβόλου στο άρθρωμα" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "αταίριαστη έκδοση αρθρώματος/βιβλιοθήκης" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "το ξεκλείδωμα θα καταστήσει το πεδίο κωδικού κενό" #: lib/error.c:105 msgid "invalid attribute value" msgstr "μη έγκυρη τιμή χαρακτηριστικού" #: lib/error.c:107 msgid "invalid module combination" msgstr "μη έγκυρος συνδυασμό module" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "αρχική λίστα διευθύνσεων για τον νέο χρήστη " #: lib/error.c:115 msgid "unknown error" msgstr "άγνωστο σφάλμα" #: lib/misc.c:240 msgid "invalid number" msgstr "μη έγκυρος αριθμός" #: lib/misc.c:254 msgid "invalid ID" msgstr "μη έγκυρο ID " #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "δεν υπάρχει συνάρτηση αρχικοποίησης %s in `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "αταίριαστη έκδοση αρθρώματος σε `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "το άρθρωμα `%s' δεν ορίζει `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "σφάλμα κατά την ανάγνωση των γνωρισμάτων τερματικού" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "σφάλμα κατά τον ορισμό των γνωρισμάτων τερματικού" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "σφάλμα ανάγνωσης από τερματικό" #: lib/user.c:218 msgid "name is not set" msgstr "το όνομα δεν έχει οριστεί" #: lib/user.c:223 msgid "name is too short" msgstr "το όνομα είναι πολύ σύντομο" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "το όνομα είναι πολύ μακρύ (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "Το όνομα περιέχει χαρακτήρες εκτός συνόλου ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "το όνομα περιέχει χαρακτήρες ελέγχου" #: lib/user.c:249 msgid "name contains whitespace" msgstr "το όνομα περιέχει κενό διάστημα" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "το όνομα ξεκινά με μια παύλα" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "το όνομα περιέχει μη έγκυρο χαρακτήρα `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "ο χρήστης %s δεν έχει UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "ο χρήστης %s δεν βρέθηκε " #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "η ομάδα %s δεν έχει GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "η ομάδα %s δεν βρέθηκε " #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "ο χρήστης %jd δεν έχει όνομα" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "η ομάδα %jd δεν έχει όνομα" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "ο χρήστης δεν έχει όνομα ούτε UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "η ομάδα δεν έχει όνομα ούτε UID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Άρνησή χρίσης επικίνδυνου κατάλογου `%s 'από προεπιλογή" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Μη έγκυρη προεπιλεγμένη τιμή για το πεδίο %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "σφάλμα κλειδώματος αρχείου %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "αδυναμία λήψης προεπιλεγμένου περιβάλλοντος ασφάλειας: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "αδυναμία λήψης περιβάλλοντος ασφάλειας του `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "αδυναμία λήψης περιβάλλοντος ασφάλειας του `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "αδυναμία καθορισμού περιβάλλοντος ασφάλειας του `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "αδυναμία ανοίγματος `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "αδυναμία stat `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "σφάλμα στη δημιουργία `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "το αντίγραφο ασφάλειας`%s' υπάρχει αλλά δεν είναι ένα κανονικό αρχείο." #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Σφάλμα αλλαγής ιδιοκτήτη του `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Σφάλμα αλλαγής την κατάσταση του `%s:%s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Σφάλμα στην ανάγνωση `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Σφάλμα εγγραφής `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "αταίριαστο μέγεθος αντιγράφου ασφαλείας" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "η %s τιμή `%s': `:' δεν επιτρέπεται" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "αδυναμία ανάγνωσης από `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "η καταχώριση υπάρχει ήδη στο αρχείο" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "αδυναμία εγγραφής σε `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "το αντικείμενο οντότητας δεν έχει γνώρισμα %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "καταχώρηση με όνομα που υπάρχει ήδη" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "η `:' δεν επιτρέπεται σε κρυπτογραφημένο συνθηματικό" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "σφάλμα κρυπτογράφησης συνθηματικού" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "το `%s 'και`%s' μονάδες δεν μπορούν να συνδυαστούν" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "δεν γίνεται εκτέλεση με προνόμια υπερχρήστη" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "δεν υπάρχει αρχείο shadow -- γίνεται πενεργοποίηση" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "σφάλμα σύνδεσης στον εξυπηρετητή kadm5 για την υπηρεσία `%s' στο realm `%s': " "%s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "σφάλμα κατά την ενεργοποίηση της βιβλιοθήκης kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "σφάλμα ανάλυσης ονόματος χρήστη `%s' για kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "η δομή οντότητας δεν έχει %s ή %s γνωρίσματα" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "η οντότητα δεν έχει %s ή %s γνωρίσματα" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "η οντότητα δημιουργήθηκε με %s ή %s γνωρίσματα" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "σφάλμα ανάγνωσης πληροφοριών για `%s' από kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "η οντότητα δεν έχει %s γνώρισμα" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "σφάλμα ορισμού συνθηματικού πρόσβασης για `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Περιοχή Kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Συνθηματικό για Kerberos Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "σφάλμα κατά την ενεργοποίηση της βιβλιοθήκης ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "δε μπόρεσε να οριστεί πρωτόκολλο LDAP στην έκδοση %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "δεν ήταν δυνατή η πιστοποίηση TLS στο διακομιστή LDAP." #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "αδυναμία δέσμευσης με τον εξυπηρετητή LDAP," #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "αδυναμία δέσμευσης με τον εξυπηρετητή LDAP, πρώτη προσπάθεια ως `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "το αντικείμενο χρήστη δεν είχε όρισμα %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "το αντικείμενο χρήστη δημιουργήθηκε χωρίς `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "Σφάλμα δημιουργίας εγγραφής καταλόγου LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "Σφάλμα επεξεργασίας εγγραφής καταλόγου LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "Σφάλμα μετονομασίας εγγραφής καταλόγου LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "το αντικείμενο δεν έχει ιδιότητα %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "σφάλμα κατά την απομάκρυνση καταχώρισης καταλόγου LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "το αντικείμενο δεν έχει ιδιότητα %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "μη υποστηριζόμενο σχήμα κρυπτογράφησης συνθηματικού" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "δεν υπάρχει τέτοιο αντικείμενο στον κατάλογο LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "δε βρέθηκε ιδιότητα `%s'" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "σφάλμα καθορισμού συνθηματικού στον κατάλογο LDAP για %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Όνομα εξυπηρετητή LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Συνθηματικό LDAP Bind" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Χρήστης LDAP SASL" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Χρήστης εξουσιοδότησης LDAP SASL" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Σφάλμα Cyrus SASL στη δημιουργία χρήστη: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Σφάλμα Cyrus SASL στη διαγραφή χρήστη: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "σφάλμα αρχικοποίησης Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "σφάλμα δημιουργίας αρχικού καταλόγου χρήστη" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "σφάλμα διαγραφής αρχικού καταλόγου χρήστη" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "σφάλμα μετακίνησης αρχικού καταλόγου χρήστη" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Σφάλμα αρχικοποίησης %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Μη έγκυρο ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Αναζήτηση για ομάδα με ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Αναζήτηση για ομάδα με όνομα %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Αναζήτηση για χρήστη με ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Αναζήτηση για χρήστη με όνομα %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Η είσοδος δε βρέθηκε\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Οι ειδοποιήσεις ολοκληρώθηκαν.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Οι ειδοποιήσεις απέτυχαν.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Προεπιλεγμένες κλάσεις αντικειμένων χρήστη:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Προεπιλεγμένα ονόματα ιδιοτήτων χρήστη:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Λήψη προεπιλεγμένων ιδιοτήτων χρήστη:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Αντιγραφή δομής χρήστη:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "Ο %s δεν έχει ένα αρχικό κατάλογο.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Σφάλμα κατά την αφαίρεση του %s: %s.\n" libuser-0.60~dfsg/po/bn.po0000644000175000017500000013724512226342567015474 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Ayesha Akhtar , 2012 # Jamil Ahmed , 2006 # Mahay Alam Khan , 2012 # Miloslav Trmač , 2011 # newton , 2012 # Robin Mehdee , 2012 # Runa Bhattacharjee , 2008 # runab , 2004, 2005, 2006, 2007, 2008, 2009, 2010 # runa , 2012 # Samia Niamatullah , 2005 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Bengali (http://www.transifex.com/projects/p/fedora/language/" "bn/)\n" "Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "অধিকার হ্রাসের প্রচেষ্টা ব্যর্থ।\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "অভ্যন্তরীণ সমস্যা।\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s-র, %s-র finger সংক্রান্ত তথ্য পরিবর্তন করার অধিকার নেই।\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "ব্যবহারকারীর প্রাসঙ্গিক বিবরণ অজানা" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd-র ডিফল্ট প্রসঙ্গ নির্ধারণ করা সম্ভব হয়নি\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM আরম্ভ করতে সমস্যা।\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s-র পরিচয়প্রমাণ প্রক্রিয়া ব্যর্থ হয়েছে।\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "PAM-র অভ্যন্তরীণ সমস্যা `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "অজানা ব্যবহারকারী অনুমোদিত রয়েছেন।\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "ব্যবহারকারীর গরমিল।\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] user" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "আর্গুমেন্ট পার্স করতে সমস্যা: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "কোনো ব্যবহারকারীর নাম উল্লেখ করা হয়নি।\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s আরম্ভ করতে সমস্যা: %s।\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s ব্যবহারকারী বর্তমানে উপস্থিত নেই।\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "অ্যাকাউন্ট লক করা আছে।\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "অ্যাকাউন্ট লক করা নেই।\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "সর্বনিম্ন:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "সর্বোচ্চ:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "সতর্কবার্তা:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "নিষ্ক্রিয়:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "কখনো নয়" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "সর্বশেষ পরিবর্তন:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "পাসওয়ার্ডের মেয়াদপূর্তী:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "পাসওয়ার্ড নিষ্ক্রিয়:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "অ্যাকাউন্টের মেয়াদপূর্তী:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s সংক্রান্ত পুরোনো তথ্য পরিবর্তনের প্রচেষ্টা ব্যর্থ: %s।\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "কোনো ব্যবহারকারীর নাম নির্দিষ্ট হয়নি, %d uid-র কোনো নাম উল্লিখিত হয়নি।\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s সংক্রান্ত finger তথ্য পরিবর্তন করা হচ্ছে।\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "সম্পূর্ণ নাম" #: apps/lchfn.c:146 msgid "Surname" msgstr "পদবি" #: apps/lchfn.c:157 msgid "Given Name" msgstr "প্রদত্ত নাম" #: apps/lchfn.c:167 msgid "Office" msgstr "কর্মস্থল" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "কর্মস্থলের ফোন" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "গৃহের ফোন" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ই-মেইল ঠিকানা" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger সংক্রান্ত তথ্য পরিবর্তন করা যায়নি: ইনপুটজড়িত ত্রুটি।\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger সংক্রান্ত তথ্য পরিবর্তন করা হয়েছে।\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger সংক্রান্ত তথ্য পরিবর্তন করা হয়নি: %s।\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s-র শেল পরিবর্তন করা হচ্ছে।\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "নতুন শেল" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "শেল পরিবর্তিত হয়নি: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "শেল পরিবর্তিত হয়েছে।\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] group" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "কোনো দলের নাম নির্ধারণ করা হয়নি।\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "দলের অবৈধ ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "দল তৈরি করতে ব্যর্থ: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "%s দলটি বর্তমানে উপস্থিত নেই।\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "%s দলটি মুছে ফেলা সম্ভব হয়নি: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L এবং -U দুটিই নির্দিষ্ট করা হয়েছে।\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s দলের পাসওয়ার্ড তৈরি করতে ব্যর্থ: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s দলটি লক করা যায়নি: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s দলটি আন-লক করা যায়নি: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s দল পরিবর্তন করা যায়নি: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s অনুসন্ধানে সমস্যা: %s।\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "দলের নাম উল্লেখ করা হয়নি, %s ব্যবহার করা হচ্ছে।\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "দলের নাম উল্লেখ করা হয়নি, %d gid-র জন্য কোনো নাম লেখা হয়নি।\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "ব্যবহারকারীর নাম উল্লেখ করা হয়নি, %s ব্যবহার করা হচ্ছে।\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s বর্তমানে উপস্থিত নেই\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' খুলতে সমস্যা: %s।\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "`%s' -র জন্য অ্যাকাউন্ট তৈরি করতে সমস্যা: পংক্তিটি সঠিক বিন্যাসে গঠিত হয়নি।\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ব্যবহারকারী অবৈধ ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 ব্যবহার করে অ্যাকাউন্ট তৈরি করা হবে না।\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s'-র জন্য, GID %jd ব্যবহার করে দল তৈরি করতে সমস্যা: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "ডিফল্টরূপে, ক্ষতিকর ব্যক্তিগত ডিরেক্টরি `%s'-টি %s-র জন্য ব্যবহার করতে প্রত্যাখ্যান করা " "হয়েছে\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s-র জন্য ব্যক্তিগত (হোম) ডিরেক্টরি তৈরি করতে সমস্যা: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s-র জন্য প্রারম্ভিক পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s-র জন্য ব্যবহারকারীর অ্যাকাউন্ট তৈরি করতে সমস্যা:%s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s-র পাসওয়ার্ড পরিবর্তন করা হচ্ছে।\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "নতুন পাসওয়ার্ড" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "নতুন পাসওয়ার্ড (নিশ্চায়ন)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "পাসওয়ার্ড দুটি মেলেনি, পুনরায় চেষ্টা করুন।\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "পাসওয়ার্ড পরিবর্তন প্রক্রিয়া বাতিল করা হয়েছে।\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "ফাইল ডিসক্রিপ্টর %d থেকে পড়তে সমস্যা দেখা দিয়েছে।\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s ব্যবহারকারীর জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s।\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s দলের জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s।\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "পাসওয়ার্ড পরিবর্তিত হয়েছে।\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd দলটি বর্তমানে উপস্থিত নেই।\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "`%s' দল তৈরি করতে সমস্যা: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "অ্যাকাউন্ট তৈরি করতে ব্যর্থ: %s।\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s তৈরি করতে সমস্যা: %s।\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "ব্যবহারকারী %s'র অ্যাকাউন্ট মুছে ফেলা সম্ভব হয়নি: %s।\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s-র কোনো gid সংখ্যা নেই।\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "%jd GIDসহ কোনো দল বর্তমানে উপস্থিত নেই, মুছে ফেলা সম্ভব নয়।\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "%jd GIDসহ দলের কোনো নাম উল্লিখিত হয়নি।\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s দলটি মুছে ফেলা সম্ভব হয়নি: %s।\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি মুছে ফেলতে সমস্যা" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s ব্যবহারকারীর জন্য পাসওয়ার্ড নির্ধারণ করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%s ব্যবহারকারীকে লক (lock) করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%s ব্যবহারকারীকে আন-লক (unlock) করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "সতর্কবার্তা: %jd ID সহ দলটি বর্তমানে উপস্থিত নেই।\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s ব্যবহারকারীর তথ্য পরিবর্তন করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%s দলের তথ্য পরিবর্তন করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s-র ক্ষেত্রে পুরোনো ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত নেই।\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s-র কোনো নতুন ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত নেই।\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s কে %s-এ সরিয়ে নিতে সমস্যা হয়েছে: %s।\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "কনফিগারেশন ফাইল `%s' খোলা যায়নি: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "কনফিগারেশন ফাইল `%s' stat করা যায়নি: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "কনফিগারেশন ফাইল `%s' অত্যাধিক বড়" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "কনফিগারেশন ফাইল `%s' পড়া যায়নি: %s" #: lib/error.c:62 msgid "success" msgstr "সফল" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "কনফিগারেশনের দরুণ মডিউলটি নিষ্ক্রিয় হয়ে গেছে" #: lib/error.c:66 msgid "generic error" msgstr "সাধারণ সমস্যা" #: lib/error.c:68 msgid "not enough privileges" msgstr "অপর্যাপ্ত অধিকার" #: lib/error.c:70 msgid "access denied" msgstr "অনুমোদন করা হয়নি" #: lib/error.c:72 msgid "bad user/group name" msgstr "অবৈধ ব্যবহারকারী/দলের নাম" #: lib/error.c:74 msgid "bad user/group id" msgstr "অবৈধ ব্যবহারকারী/দলের id" #: lib/error.c:76 msgid "user/group name in use" msgstr "ব্যবহারকারী/দলের নাম বর্তমানে ব্যবহৃত হচ্ছে" #: lib/error.c:78 msgid "user/group id in use" msgstr "ব্যবহারকারী/দলের id বর্তমানে ব্যবহৃত হচ্ছে" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "টার্মিনালের বৈশিষ্ট্য পরিবর্তন করতে সমস্যা" #: lib/error.c:82 msgid "error opening file" msgstr "ফাইল খুলতে সমস্যা" #: lib/error.c:84 msgid "error locking file" msgstr "ফাইল লক করতে সমস্যা" #: lib/error.c:86 msgid "error statting file" msgstr "ফাইল stat করতে সমস্যা" #: lib/error.c:88 msgid "error reading file" msgstr "ফাইল পড়তে সমস্যা" #: lib/error.c:90 msgid "error writing to file" msgstr "ফাইলে লিখতে সমস্যা" #: lib/error.c:92 msgid "data not found in file" msgstr "ফাইলে তথ্য পাওয়া যায়নি" #: lib/error.c:94 msgid "internal initialization error" msgstr "অভ্যন্তরীণ প্রারম্ভিক সমস্যা" #: lib/error.c:96 msgid "error loading module" msgstr "মডিউল লোড করতে সমস্যা" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "মডিউলের সিম্বল মীমাংসা করতে সমস্যা" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "লাইব্রেরি/মডিউলের সংস্করণে গরমিল" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "আন-লক করা হলে পাসওয়ার্ডের ক্ষেত্র ফাঁকা হয়ে যাবে" #: lib/error.c:105 msgid "invalid attribute value" msgstr "অ্যাট্রিবিউটের মান বৈধ নয়" #: lib/error.c:107 msgid "invalid module combination" msgstr "বৈধ রূপে মডিউল একত্রিত করা হয়নি" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "অজানা সমস্যা" #: lib/misc.c:240 msgid "invalid number" msgstr "অবৈধ সংখ্যা" #: lib/misc.c:254 msgid "invalid ID" msgstr "অবৈধ ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "%s প্রারম্ভিক কার্য `%s'-র মধ্যে উপস্থিত নেই" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s'-র মডিউল সংস্করণে গরমিল" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' মডিউলের দ্বারা `%s'-র ব্যাখ্যা করা যায়নি" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "টার্মিনালের বৈশিষ্ট্য পড়তে সমস্যা" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "টার্মিনালের বৈশিষ্ট্য নির্ধারণ করতে সমস্যা" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "টার্মিনাল থেকে পড়তে সমস্যা" #: lib/user.c:218 msgid "name is not set" msgstr "নাম নির্ধারণ করা হয়নি" #: lib/user.c:223 msgid "name is too short" msgstr "নাম অত্যাধিক ছোট" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "উল্লিখিত নাম অত্যাধিক লম্বা (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "নামের মধ্য non-ASCII অক্ষর লেখা হয়েছে" #: lib/user.c:242 msgid "name contains control characters" msgstr "নামের মধ্য নিয়ন্ত্রক (control) অক্ষর লেখা হয়েছে" #: lib/user.c:249 msgid "name contains whitespace" msgstr "নামের মধ্যে শূণ্যস্থান রয়েছে" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "নামের প্রারম্ভে হাইফেন চিহ্ন (-) উপস্থিত রয়েছে" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "নামের মধ্য অবৈধ অক্ষর `%c' লেখা হয়েছে" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "%s নামক ব্যবহারকারীর ক্ষেত্রে UID ধার্য করা হয়নি" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "%s নামক দলের ক্ষেত্রে GID ধার্য করা হয়নি" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "%jd ব্যবহারকারীর নাম উল্লিখিত নেই" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "%jd দলের নাম উল্লিখিত নেই" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "ব্যবহারকারীর নাম ও UID ধার্য করা হয়নি" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "দলের নাম ও GID ধার্য করা হয়নি" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "ডিফল্টরূপে, ক্ষতিকর ব্যক্তিগত ডিরেক্টরি `%s' ব্যবহার প্রত্যাখ্যান করা হয়েছে" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s ক্ষেত্রে ডিফল্ট মান বৈধ নয়: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ফাইল লক করতে সমস্যা: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "ডিফল্ট প্রাসঙ্গিক নিরাপত্তার বিবরণ নির্ধারণ করা যায়নি: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s'-র জন্য প্রাসঙ্গিক নিরাপত্তার বিবরণ প্রাপ্ত করা যায়নি: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "ডিফল্ট প্রাসঙ্গিক নিরাপত্তার বিবরণ`%s' হিসাবে নির্ধারণ করা যায়নি: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s'-র জন্য প্রাসঙ্গিক নিরাপত্তার বিবরণ প্রাপ্ত করা যায়নি: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' খোলা সম্ভব হয়নি: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' stat করা যায়নি: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' তৈরি করতে সমস্যা: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "ব্যাক-আপ ফাইল `%s' বর্তমানে উপস্থিত আছে এবং এটি কোনো সাধারণ ফাইল নয়" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s'-র মালিকানা পরিবর্তন করতে সমস্যা: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s'-র মোড পরিবর্তন করতে ত্রুটি: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' পড়তে সমস্যা: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' লিখতে সমস্যা: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "ব্যাক-আপ ফাইলের মাপে গরমিল" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s মান `%s': `:' অনুমোদিত নয়" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' থেকে পড়া সম্ভব হয়নি: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "ফাইলের মধ্যে এন্ট্রি বর্তমানে উপস্থিত আছে" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s'-এ লেখা যায়নি: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "স্বত্বার অবজেক্টের মধ্যে %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "দ্বন্দযুক্ত নাম সহ একটি এন্ট্রি ফাইলের মধ্যে বর্তমানে উপস্থিত আছে" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "এনক্রিপ্ট করা পাসওয়ার্ডের মধ্যে `:' ব্যবহার করা যাবে না" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "পাসওয়ার্ড এনক্রিপ্ট করতে সমস্যা" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' ও `%s' মডিউলগুলি একত্রিত করা যাবে না" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "সুপার-ইউজারের অধিকারসহ সঞ্চালিত হচ্ছে না" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "কোনো শেডো ফাইল উপস্থিত নেই -- নিষ্ক্রিয় করা হচ্ছে" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "`%s' পরিসেবার জন্য kdam5 সার্ভারটির সাথে সংযোগ করতে `%s' realm-এ সমস্যা হয়েছে: " "%s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "kerberos লাইব্রেরি আরম্ভ করতে সমস্যা" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "`%s' ব্যবহারকারীর নাম kerberos-র জন্য পার্স করতে সমস্যা" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "স্বত্বার গঠনে কোনো %s অথবা %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "স্বত্বায় কোনো %s অথবা %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "কোনো %s অথবা %s বৈশিষ্ট্য বিনা স্বত্বা তৈরি করা হয়েছে" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "`%s'-র জন্য kerberos থেকে তথ্য পড়তে সমস্যা" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "এন্ট্রিতে কোনো %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s'-র জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Admin Principal-র জন্য Kerberos পাসওয়ার্ড" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "Ldap লাইব্রেরি আরম্ভ করতে সমস্যা" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP প্রোটোকল %d সংস্করণের সাথে স্থাপন করা যায়নি" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP সার্ভারের সাথে TLS মীমাংসা করা সম্ভব হয়নি" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP সার্ভারে bind করা সম্ভব হয়নি" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP সার্ভারে bind করা সম্ভব হয়নি, `%s' রূপে প্রথম প্রচেষ্টা করা হয়েছে: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "ব্যবহারকারীর অবজেক্টে কোনো `%s' বৈশিষ্ট্য উপস্থিত নেই" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "ব্যবহারকারীর অবজেক্ট `%s' বিনা নির্মিত হয়েছে" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP ডিরেক্টরি এন্ট্রি তৈরি করতে সমস্যা: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP ডিরেক্টরি এন্ট্রি পরিবর্তন করতে সমস্যা: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP ডিরেক্টরি এন্ট্রির নাম পরিবর্তন করতে সমস্যা: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "অবজেক্টের মধ্যে কোনো %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP ডিরেক্টরি এন্ট্রি মুছে ফেলতে সমস্যা: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "অবজেক্টের মধ্যে %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "পাসওয়ার্ড এনক্রিপশনের বিন্যাস সমর্থিত নয়" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP ডিরেক্টরির মধ্যে এই ধরনের কোনো বস্তু উপস্থিত নেই" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "কোনো `%s' বৈশিষ্ট্য পাওয়া যায়নি" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s-র জন্য LDAP ডিরেক্টরিতে পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP সার্ভারের নাম" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind পাসওয়ার্ড" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL ব্যবহারকারী" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL-র অনুমোদন ব্যবহারকারী" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "ব্যবহারকারী তৈরি করতে Cyrus SASL সংক্রান্ত সমস্যা: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "ব্যবহারকারী মুছে ফেলার সময় Cyrus SASL সংক্রান্ত সমস্যা: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL আরম্ভ করতে সমস্যা: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ব্যবহারকারীর জন্য ব্যক্তিগত (হোম) ডিরেক্টরি তৈরি করতে সমস্যা" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি মুছে ফেলতে সমস্যা" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি সরাতে সমস্যা" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s আরম্ভ করতে সমস্যা: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "অবৈধ ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "%jd ID-ধারী দলের সন্ধান করা হচ্ছে।\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s নামক দলের সন্ধান করা হচ্ছে।\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "%jd ID-ধারী ব্যবহারকারীর সন্ধান করা হচ্ছে।\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s নামক ব্যবহারকারীর সন্ধান করা হচ্ছে।\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "এন্ট্রি খুঁজে পাওয়া যায়নি।\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "সফল চিহ্নকারী প্রম্পট।\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "বিফল চিহ্নকারী প্রম্পট\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "ব্যবহারকারীর ডিফল্ট অবজেক্ট ক্লাস:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "ব্যবহারকারীর ডিফল্ট বৈশিষ্ট্যর নাম:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "ব্যবহারকারীর ডিফল্ট বৈশিষ্ট্য আহরণ করা হচ্ছে:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "ব্যবহারকারীর বৈশিষ্ট্যের পরিকাঠামো কপি করা হচ্ছে:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s-র ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত ছিল না।\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s সরিয়ে ফেলতে সমস্যা: %s।\n" libuser-0.60~dfsg/po/nb.gmo0000644000175000017500000006270712226342604015630 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<>>=>#.?R?$d?????1?"@@@X@n@0@,@@$@$A 6ADA&]A-A!AMA+"B;NB2B,B%B1C!BC!dCCC&C!C% D2D&PD"wD)D1D1D(E$HE0mE+E1EE0F$IF nFyFF#F FF F"G9GYG!yG#GG G-G*H :HHHYH rH H%HHHH$HI /ILeLxL&L7L?L-M!4M VM!wM MMM MM N""N!EN!gN%NNNN,NO(OAOXO)oOO;O"OP P;PVPqP$P P?P( Q-6Q,dQ.Q7Q3Q0,R+]RRR;R#R SASUSiS2S2SS)T0T!ITkT4T T)T%U2&U5YU U4UQU!7V3YV1V V&V-W'5W]WyWW,W0W/X?X3YXXX6X(X1#Y/UY9Y$Y(Y7 Z)EZ%oZZ Z ZZZ[[4[O[(d[ [[[[ [[\5\ D\!e\[\-\*]-<]*j] ] ]*]']"]!"^D^]^{^%^!^^^_._A___u__#_%_%_`(5`C^`!``@`)$aNa%ja#a-aa0a+/bwbbbbb-bc6cRclccccccc0d8d JdVded/ud.ddde$e(De&meee0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-05-13 09:35+0000 Last-Translator: Kjartan Maraas Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora/language/nb/) Language: nb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s hadde ikke gid-nummer. %s eksisterer ikke %s er ikke autorisert for å endre finger-informasjon for %s %s verdi «%s»: «:» ikke tillattKonto utgår: %s Feil under oppretting av konto: %s. Konto er låst. Konto er ikke låst. Autentisering feilet for %s. Både -L og -U spesifisert. Kan ikke sette forvalgt kontekst for /etc/passwd Endrer finger-informasjon for %s. Endrer passord for %s. Endrer skall for %s. Kopierer brukerstruktur: Feil i Cyrus SASL under oppretting av bruker: %sFeil i Cyrus SASL ved fjerning av bruker: %sDAGERStandardnavn for brukerattributter: Standardklasser for brukerobjekter: E-postadresseOppføring ikke funnet. Feil ved bytte av modus for «%s»: %sFeil under endring av eierskap for «%s»: %sFeil under oppretting av %s: %s. Feil under oppretting av konto for «%s»: linjen er ikke riktig formattert. Feil under oppretting av gruppe «%s»: %s Feil under oppretting av gruppe for «%s» med GID %jd: %s Feil under oppretting av hjemmekatalog for %s: %s Feil ved oppretting av e-postkø for %s: %s Feil ved oppretting av e-postkø: %s Feil under oppretting av brukerkonto for %s: %s. Feil under initiering av %s: %s. Feil under initiering av %s: %s. Feil under initiering av PAM. Feil under oppslag av %s: %s Feil under flytting av %s til %s: %s. Feil under åpning av «%s»: %s Feil under lesing av argumenter: %s. Feil under lesing av `%s': %sFeil ved lesing fra fildeskriptor %d. Feil ved fjerning av e-postkø: %sFeil under setting av passord for %s: %s Feil under setting av passord for gruppe %s: %s. Feil under setting av passord for bruker %s: %s. Feil under skriving av `%s': %sFeil under frislipp av privilegier. Kunne ikke endre aldringsinformasjon for %s: %s Kunne ikke sette passord for gruppe %s: %s Feil under setting av passord for bruker %s: %s. finger-informasjon endret. finger-informasjon ikke endret: feil i inndata. finger-informasjon ikke endret: %s. Fullt navnGECOS-informasjonGECOS-informasjon for ny brukerHenter standard brukerattributter: Gitt navnGruppe %jd eksisterer ikke Kunne ikke slette gruppe %s: %s Gruppe %s kunne ikke slettes: %s. Kunne ikke låse gruppe %s: %s Kunne ikke endre gruppe %s: %s Gruppe %s kunne ikke endres: %s. Kunne ikke låse opp gruppe %s: %s Gruppe %s eksisterer ikke. Oppretting av gruppe feilet: %s Gruppe med GID %jd hadde ikke et gruppenavn. Telefon, hjemmeInaktiv: %ld Inaktiv:»Aldri Intern PAM-feil «%s». Intern feil. Ugylig ID %s Ugyldig standardverdi for felt %s: %sUgyldig gruppe-ID %s Ugyldig bruker-ID %s Kerberos Admin PrincipalKerberos-passord for Admin PrincipalKerberos-områdeLDAP Bind DNLDAP Bind-passordLDAP SASL-autorisasjonsbrukerLDAP SASL-brukerLDAP Search Base DNNavn på LDAP-tjenerSiste Endring: %s Maksimum: %ld Maksimum:»Ingen Minimum: %ld Må bytte passord ved neste påloggingNAVNTALLAldriNytt skallNytt passordNytt passord (bekreft)Ingen gruppenavn spesifisert. Fant ikke navn for gid %d. Ingen gruppenavn spesifisert, bruker %s. Ingen gruppenavn spesifisert. Det finnes ingen gruppe med GID %jd, fjernes ikke. Ingen ny hjemmekatalog for %s. Ingen gammel hjemmekatalog for %s. Brukernavn ikke spesifisert. Fant ikke navn for uid %d. Brukernavn ikke spesifisert, bruker %s. Brukernavn ikke spesifisert. KontorTelefon, arbeidSTIPassord Utløper: %s Passord inaktivt: %s Endring av passord avbrutt. Passord endret. Passordene er ikke like. Prøv igjen. Spørring feilet. Spørring fullført. Nekter oppretting av konto med UID 0. Nekter å bruke farlig hjemmekatalog «%s» som forvalgNekter å bruke farlig hjemmekatalog «%s» for %s som forvalg STRENGSøker etter gruppe med navn %s. Søker etter gruppe med ID %jd. Søker etter bruker ved navn %s. Søker etter bruker med ID %jd. Skall endret. Skallet ble ikke endret: %s EtternavnUkjent bruker autentisert. Ukjent brukerkontekstBruker %s kunne ikke slettes: %s. Bruker %s kunne ikke låses: %s. Bruker %s kunne ikke endres: %s. Bruker %s kunne ikke låses opp: %s. Bruker %s eksisterer ikke. Feil med bruker Advarsel: %ld Advarsel: Gruppe med ID %jd eksisterer ikke [ALTERNATIV...][ALTERNATIV...] [bruker][ALTERNATIV...] gruppe[ALTERNATIV...] bruker«:» er ikke tillatt i krypterte passordtilgang nektetsikkerhetskopien «%s» eksisterer og er ikke en vanlig filfeil størrelse på sikkerhetskopiugyldig bruke-/gruppe-IDugyldig bruker-/gruppenavnendre gruppe til gitt navnbytt brukernavn for brukerfullt navn for brukerkonfigurasjonsfil «%s» er for storkunne ikke binde til LDAP-tjenerkunne ikke binde til LDAP-tjener, prøvde først som «%s»: %skunne ikke forhandle TLS med LDAP-tjenerkunne ikke åpne konfigurasjonsfil «%s»: %skunne ikke lese konfigurasjonsfil «%s»: %skunne ikke sette LDAP-protokoll til versjon %dkunne ikke kjøre stat på konfigurasjonsfil «%s»: %skan ikke bestemme sikkerhetskontekst for «%s»: %skunne ikke finne forvalgt sikkerhetskontekst: %sfant ikke sikkerhetskontekst for «%s»: %skunne ikke åpne `%s': %skunne ikke lese fra `%s': %skunne ikke sette forvalgt sikkerhetskontekst til «%s»: %skunne ikke kjøre stat på `%s': %skunne ikke skrive til «%s»: %slag en systemgruppelag en systembrukerdata ikke funnet i fildato for siste passordbytte i dager siden 1.1.1970dager før utløp før varsling til bruker starteskatalog med filer for ny brukerikke lag gruppe med samme navn som brukerikke lag hjemmekatalogerikke lag hjemmekatalog for brukerikke lag e-postkøerikke fjern brukers private gruppe hvis bruker har enentiteten har ingen %s-attributtentitet har ingen %s eller %s-attributterentitetsobjekt har ingen %s-attributtentitetsstruktur har ingen %s eller %s-attributterentiteten ble opprettet uten %s- eller %s-attributteroppføringen er allerede i filenoppføring med navnekonflikt finnes allerede i filenfeil under tilkobling til kadm5-tjeneren for tjeneste «%s» i område «%s»: %sfeil under oppretting av `%s': %sfeil under oppretting av LDAP-katalogoppføring: %sfeil under oppretting av hjemmekatalog for brukerfeil under kryptering av passordfeil ved initiering av Cyrus SASL: %s.feil under initiering av kerberos-biblioteketfeil under initiering av ldap-bibliotekfeil under lasting av modulfeil under låsing av filfeil under låsing av fil: %sfeil ved manipulering av terminalattributterfeil under endring av LDAP-katalogoppføring: %sfeil under flytting av hjemmekatalog for brukerfeil under åpning av filfeil under lesing av brukernavn «%s» for kerberosfeil under lesing av filfeil ved lesing fra terminalfeil under lesing av informasjon for `%s' fra kerberosfeil under lesing av terminalattributterfeil under fjerning av LDAP-katalogoppføring: %sfeil under fjerning av hjemmekatalog for brukerfeil under endring av navn på LDAP-katalogoppføring: %sfeil under søk etter symbol i modulfeil under setting av passord for «%s»Feil under setting av passord i LDAP-katalog for %s: %sfeil under setting av terminalattributterfeil under kjøring av stat() på filfeil under skriving til filfil med brukerinformasjonspostervanlig feilGID for ny gruppefornavn for brukerGruppe %jd har ikke navngruppe %s har ingen GIDgruppen %s ble ikke funnetgruppe for ny brukergruppen har hverken et navn eller en GIDhjemmekataloghjemmekatalog for ny brukerhjemmetelefon for ny brukerintern feil under initieringugylig IDugyldig verdi for attributtugyldig kombinasjon av modulerugyldig nummerfeil med bibliotek-/modulversjonvis aldringsparametere for brukerliste med medlemmer av en navngitt gruppe i stedet for gruppemedlemskap for navngitt brukerliste med administratorer som skal legges tilliste med administratorer som skal fjernesliste med gruppemedlemmer som skal legges tilliste med gruppemedlemmer som skal fjerneslås kontolås gruppemaksimalt antall dager mellom passordbytteminste antall dager mellom passordbyttemodul «%s» definerer ikke «%s»modul deaktivert av konfigurasjonfeil modulversjon i `%s'flytt innhold i hjemmekatalognavnet inneholder kontrolltegnnavnet inneholder ugyldig tegn «%c»navnet inneholder ikke-ASCII tegnnavnet inneholder tomromnavnet er ikke sattnavnet er for langt (%zu > %d)navnet er for kortnavnet starter med bindestreknytt kryptert passordnytt vanlig passordingen `%s'-attributt funnetingen initieringsfunksjon %s i `%s'ingen skyggefil finnes -- deaktivereringen slike objekter i LDAP-katalogenikke tilstrekkelige privilegierkjører ikke med superbruker-privilegierantall dager etter passordutløp før kontoen betraktes som inaktivobjektet hadde ingen %s-attributtobjektet har ikke attributt %svis kun informasjon om listemedlemskap med navn, og ikke UID/GIDpassordutløpsdato i dager siden 1.1.1970klartekstpassord for brukerklartekstpassord for bruk med gruppenforhånds-hashet passord for brukerforhånds-hashet passord for bruk med gruppenspør etter all informasjonles nytt kryptert passord fra oppgitt deskriptorles klartekstpassord fra oppgitt deskriptorfjern brukers hjemmekatalogromnummer for ny brukersett GID for gruppesett UID for brukersett fullt navn for brukersett fornavn for brukersett gruppepassord i stedet for brukerpassordsett hjemmetelefon for brukersett primær GID for brukersett romnummer for brukersett skall for brukersett etternavn for brukersett telefonnummer for brukerskall for ny brukersuksessetternavn for brukertelefonnummer for ny brukermodulene «%s» og «%s» kan ikke brukes sammenUID for ny brukerukjent feillås opp kontolås opp gruppehvis du låser opp vil passord-feltet stå tomtikke støttet schema for kryptering av passordbruker %jd har ikke navnbruker %s har ingen UIDbruker %s ble ikke funnetbruker har hverken navn eller en UIDbruker-objektet hadde ingen %s-attributtbrukerobjektet ble opprettet uten `%s'bruker-/gruppe-ID i brukbruker-/gruppenavn i bruklibuser-0.60~dfsg/po/is.po0000644000175000017500000010615512226342567015504 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Richard Allen , 2001 # tommi , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora/" "language/is/)\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Gat ekki minnkað heimildir.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Innvær villa.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s hefur ekki heimild til að breyta notandaupplýsingum %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "óþekktur notandaöryggishamur" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Get ekki stillt sjálfgefinn öryggisham /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Villa við frumstillingu PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Auðkenning mistókst hjá %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Innvær PAM villa `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "óþekktur notandi auðkenndi sig.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Misræmi í notanda.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ROFI...] notandi" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Villa við að þátta viðföng: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Ekkert notandanafn tiltekið.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Villa við að frumstilla %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Notandinn %s er ekki til.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Notandinn er læstur.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Notandinn er ekki læstur.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minnst:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Mest:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Aðvörun:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Óvirkur:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Aldrei" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Síðast breytt:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Lykilorðið rennur út:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Lykilorðið ógilt:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Aðgangurinn rennur út:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Gat ekki breytt úreldingarupplýsingum notandans %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ROFI...] [notandi]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Ekkert notandanafn tiltekið, ekkert heiti fyrir notandanúmer %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Breyti upplýsingum notandans %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Fullt nafn" #: apps/lchfn.c:146 msgid "Surname" msgstr "Eftirnafn" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Nafn" #: apps/lchfn.c:167 msgid "Office" msgstr "Skrifstofa" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Vinnusími" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Heimasími" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Tölvupóstfang" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Upplýsingum notandans ekki breytt: villa.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Upplýsingum notandans breytt.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Upplýsingum notandans ekki breytt: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Skipti um skél hjá %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Ný skel" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Skél óbreytt: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Skél breytt.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ROFI...] hópur" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Enginn hópur tiltekinn.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Ógilt hópnúmer %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Ekki tókst að búa til hópinn: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Hópurinn %s er ekki til.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Ekki var hægt að eyða hópnum %s: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Bæði -L og -U tiltekið.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Gat ekki sett lykilorð á hópinn %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Ekki var hægt að læsa hópnum %s: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Ekki var hægt að aflæsa hópnum %s: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Ekki var hægt að breyta hópnum %s: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Villa við að fletta upp %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Ekkert hópsheiti tiltekið, nota %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Ekkert hópsheiti tiltekið, ekkert heiti fyrir gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Ekkert notandanafn tiltekið, nota %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s er ekki til.\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ROFI...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Villa við að opna `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Villa við að búa til notandaaðgang fyrir `%s': rangt sniðnar upplýsingar.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Ógilt notandanúmer %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Ég neita að búa til notandaaðgang með UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Gat ekki búið til hóp fyrir `%s' með GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "Neita sjálfgefið að nota hina varasömu heimamöppu `%s' fyrir %s\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Villa við að búa til heimasvæði fyrir %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Villa við að setja lykilorð fyrir %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Villa við að búa til notandaaðgang fyrir %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Breyti lykilorði notandans %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nýtt lykilorð" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nýtt lykilorð (staðfesta)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Lykilorðin eru ekki eins. Reyndu aftur.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Hætt við að breyta lykilorði.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Villa við að búa til lykilorð notandans %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Villa við að setja lykilorð fyrir hópinn %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Lykilorði breytt.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Hópurinn %jd er ekki til.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Gat ekki búið til hóp `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Gat ekki búið til notanda: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Villa við að búa %s til: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Ekki var hægt að eyða notandanum %s: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s var ekki með gid tölu.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Enginn hópur með GID %jd er til. Fjarlægi hann ekki.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Hópur með GID %jd er ekki með hópheiti.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Ekki var hægt að eyða hóp %s: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "villa við að fjarlægja heimasvæði notanda" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Gat ekki sett lykilorð notanda %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Ekki var hægt að læsa notandanum %s: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Ekki var hægt að aflæsa notandanum %s: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Aðvörun Hópur með auðkenni %jd er ekki til.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Ekki var hægt að breyta notandanum %s: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Ekki var hægt að breyta hópnum %s: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Ekkert gamalt heimasvæði til fyrir notandann %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Ekkert nýtt heimasvæði til fyrir notandann %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Villa við að færa %s í %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "gat ekki opnað stillingaskrána `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "gat ekki fundið stillingaskrána `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "stillingaskráin `%s' er of stór" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "gat ekki lesið stillingaskrána `%s': %s" #: lib/error.c:62 msgid "success" msgstr "tókst" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "slökkt er á einingunni skv. stillingum" #: lib/error.c:66 msgid "generic error" msgstr "almenn villa" #: lib/error.c:68 msgid "not enough privileges" msgstr "er ekki með nægar heimildir" #: lib/error.c:70 msgid "access denied" msgstr "aðgangi hafnað" #: lib/error.c:72 msgid "bad user/group name" msgstr "ógildur notandi/hópur" #: lib/error.c:74 msgid "bad user/group id" msgstr "ógildur notandi/hópnúmer" #: lib/error.c:76 msgid "user/group name in use" msgstr "notandi/hópur er þegar í notkun" #: lib/error.c:78 msgid "user/group id in use" msgstr "notandanúmer/hópnúmer er þegar í notkun" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "gat ekki breytt eiginleikum skjás" #: lib/error.c:82 msgid "error opening file" msgstr "villa við opnun skráar" #: lib/error.c:84 msgid "error locking file" msgstr "villa við að læsa skrá" #: lib/error.c:86 msgid "error statting file" msgstr "villa við að lesa skrá" #: lib/error.c:88 msgid "error reading file" msgstr "villa við að lesa skrá" #: lib/error.c:90 msgid "error writing to file" msgstr "villa við að rita skrá" #: lib/error.c:92 msgid "data not found in file" msgstr "gögnin fundust ekki í skránni" #: lib/error.c:94 msgid "internal initialization error" msgstr "villa við að frumstillingu" #: lib/error.c:96 msgid "error loading module" msgstr "villa við að lesa einingu" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "villa við að fjarlægja merkingu úr einingu" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "útgáfumismunur eininga eða skráarsafna" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "ef tekið er úr lás verður lykilorðasviðið tómt" #: lib/error.c:105 msgid "invalid attribute value" msgstr "Ógilt gildi eiginleika" #: lib/error.c:107 msgid "invalid module combination" msgstr "Ógild samsetning eininga" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "óþekkt villa" #: lib/misc.c:240 msgid "invalid number" msgstr "ógilt númer" #: lib/misc.c:254 msgid "invalid ID" msgstr "ógilt auðkenni" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "ekkert frumstillingastef %s í `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "útgáfumismunur eininga í `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "einingin `%s' skilgreinir ekki `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "villa við að lesa einigleika skjás" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "villa við að setja skjáeiginleika" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "villa við lestur frá skjá" #: lib/user.c:218 msgid "name is not set" msgstr "heitið er ekki stillt" #: lib/user.c:223 msgid "name is too short" msgstr "heitið er of stutt" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "heitið er of langt (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "heitið inniheldur stafi sem ekki eru ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "heitið inniheldur stjórntákn" #: lib/user.c:249 msgid "name contains whitespace" msgstr "heitið inniheldur orðabil" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "heitið byrjar á bandstriki" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "heitið inniheldur ógilt tákn `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "notandinn %s hefur ekkert UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "hópurinn %s hefur ekkert GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "notandinn %jd hefur ekkert heiti" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "hópurinn %jd hefur ekkert heiti" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "notandinn hefur hvorki heiti eða UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "hópurinn hefur hvorki heiti eða GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Neita sjálfgefið að nota hina varasömu heimamöppu `%s'" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Ógilt sjálfgefið gildi í svæði %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "villa við að læsa skrá: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "gat ekki sett sjálfgefinn öryggisham: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "gat ekki lesið öryggisham `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "gat ekki sett sjálfgefinn öryggisham í `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "gat ekki skilgreint öryggisham fyrir `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "gat ekki opnað `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "gat ekki fundið `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "villa við að búa til `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "afritið `%s' er til og er ekki venjuleg skrá" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Villa við að breyta eiganda `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Villa við lestur `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Villa við að skrifa í `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "stærðarmunur á afritum" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s gildi `%s': `:' er ekki leyfilegt" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "gat ekki lesið úr `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "færslan er þegar til staðar í skránni" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "gat ekki ritað í `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "hluturinn er ekki með %s eiginleika" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "færsla sem stangast á við heitið er þegar til staðar í skránni" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' er ekki leyfilegt í dulkóðuðu lykilorði" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "villa við að dulrita lykilorðið" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "Ekki er hægt að blanda '%s' og '%s' einingum" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "er ekki keyrandi með rótarheimildum" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "engin shadow skrá til staðar -- afvirki" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "villa við að tengjast kadm5 þjóni fyrir þjónustuna `%s' í svæði `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "villa við að frumstilla kerberos aðgerðasafnið" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "villa við að þátta notandaheitið `%s' fyrir kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "hlutstrúkúrinn hefur engann %s eða %s eiginleika" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "hluturinn hefur engann %s eða %s eiginleika" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "hluturinn var búinn til án %s eða %s eiginleika" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "villa við að lesa upplýsingar um `%s úr kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "hluturinn hafði engann %s eiginleika" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "villa við að setja lykilorð fyrir `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos svæði" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos lykilorð fyrir Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "villa við að frumstilla ldap aðgerðasafnið" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "gat ekki stillt LDAP prótókollsútgáfuna á %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "gat ekki samið um TLS við LDAP þjóninn" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "gat ekki tengst LDAP þjóni" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "gat ekki tengst LDAP þjóni, fyrsta tilraun gerð sem `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "notandahluturinn hafði engann %s eiginleika" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "notandahluturinn var búinn til án `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "villa við að búa til LDAP færslu: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "villa við að breyta LDAP færslu: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "villa við að endurnefna LDAP færslu: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "hluturinn hefur engann %s eiginleika" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "villa við að fjarlægja færslu úr LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "hluturinn hefur engann %s eiginleika" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "dulkóðunarskema lykilorðs er ekki þekkt" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "enginn slíkur hlutur í LDAP skránum" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "enginn `%s' eiginleiki fannst" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "villa við að setja lykilorð í LDAP skrá fyrir %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP þjónn" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP lykilorð" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL notandi" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL Auðkennir" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL villa við að búa til notanda: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL villa við að fjarlægja notandann: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Villa við að frumstilla Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "villa við að búa til nýtt heimasvæði fyrir notandann" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "villa við að fjarlægja heimasvæði notanda" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "villa við að færa heimasvæði notanda" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Villa við að frumstilla %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Ógilt kenni %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Leita að hóp númer %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Leita að hóp sem heitir %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Leita að notanda númer %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Leita að notanda sem heitir %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Færslan fannst ekki.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Fyrirspurnir tókust.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Fyrirspurnir brugðust.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Sjálfgefnar notendahlutahópar:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Sjálfgefin heiti notandaeiginleika:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Sæki sjálfgefna notandaeiginleika:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Afrita notendastrúktúr:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s var ekki með heimasvæði.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Villa við að eyða %s: %s.\n" libuser-0.60~dfsg/po/id.gmo0000644000175000017500000004713712226342604015625 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----/ /6/%/%0:0U0d0y0050$0 1,1F1.c10111 22'2(G2p2P2!262/63.f33333%4,4E4b4'{4-4044575V53q5(5+5516$G6 l6$y6 66 6!6 7!7 A7(b777.7 7 78 858'H8p888$88 889-9@9W9h99 9 9 999B97!:%Y:0:(:(:=;;@;)|;; ;#;;";<#5<Y<h<)x<D<N<6=M=j= === =+= >%0>%V>$|>,>>>>)? 8?B?U?g?0x? ?3?"?@%@%>@#d@B@1@/@/-A,]A=A5A3A52BhB!B7B1BC!1C SC(tC&C1C,C#D5@DKvDD+D0 E;E)[E(E$EEEF(%F0NF4FF8FG!G6=G#tG-G2G2G+,H'XH>H"H#HI#I5IRI!mI$IIIII J$+J$PJ"uJ J.J"J K&K7KWK kK%K-K(K- L7L-QLLLL-LL8M(GMpMM$M(M"M!N#;N>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora/language/id/) Language: id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; %s tidak memiliki nomer gid. %s tidak ada %s tidak diijinkan untuk mengubah info finger dari %s %s bernilai '%s': ':' tidak diijinkanMasa Akun Habis: %s Pembuatan akun gagal: %s. Akun dikunci. Akun tidak dikunci. Otentikasi gagal untuk %s. -L dan -U telah ditetapkan. Tidak dapat menset konteks standar untuk /etc/passwd Mengubah informasi finger untuk %s. Mengubah kata-sandi untuk %s. Mengubah shell untuk %s. Menyalin struktur pengguna: Kesalahan SASL Cyrus saat membuat pengguna: %sKesalahan SASL Cyrus saat menghapus pengguna: %sNama atribut pengguna standar: Kelas obyek pengguna standar: Alamat E-MailMasukan tidak ketemu. Error changing mode of `%s': %sGagal mengubah kepemilikan dari `%s': %sGagal saat membuat %s: %s. Gagal saat membuat akun untuk `%s': baris tidak terformat sebagaimana mestinya. Gagal saat membuat grup `%s': %s Gagal saat membuat grup untuk `%s' dengan GID %jd: %s Gagal saat membuat direktori home untuk %s: %s Gagal saat membuat akun pengguna untuk %s: %s gagal saat menginisiasi %s: %s Gagal menginisiasi %s: %s. Gagal menginisiasi PAM. Salah saat mencari %s: %s. Gagal saat memindahkan %s ke %s: %s. Gagal membuka `%s': %s. Gagal memparse argumen: %s. Salah pembacaan `%s': %sKesalahan pembacaan file deskripto %d. Gagal saat menset password awal untuk %s: %s Gagal saat menset kata sandi untuk grup %s: %s. Gagal saat menset kata sandi untuk pengguna %s: %s. Gagal dalam penulisan `%s': %sGagal mencabut hak akses. Gagal mengubah informasi masa berlaku untuk %s: %s Gagal menset password untuk grup %s: %s Gagal menset kata sandi untuk user %s: %s. Informasi finger berubah. Informasi finger tidak berubah: kesalahan input. Informasi finger tidak berubah: %s. Nama LengkapMengambil atribut pengguna standar: Nama DepanGrup %jd tidak ada Grup %s tidak dapat dihapus: %s Grup %s tidak dapat dihapus: %s. Grup %s tidak dapat dikunci: %s Grup %s tidak dapat diubah: %s Grup %s tidak dapat diubah: %s. Grup %s tidak dapat dibuka kuncinya: %s Grup %s tidak ada. Pembuatan grup gagal: %s Grup dengan GID %jd tidak memiliki nama grup. Telp. RumahInaktif: %ld Kesalahan internal PAM `%s'. Kesalahan internal. ID %s tidak valid Nilai default kolom %s tidak valid: %s ID grup %s tidak valid ID pengguna %s tidak valid Kepala Admin KerberosPassword Kerberos untuk Kepala AdminRealm KerberosBind DN LDAPBind Kata sandi LDAPOtorisasi Pengguna SASL LDAPPengguna SASL LDAPPencarian Base DN LDAPNama Server LDAPPerubahan Terakhir: %s Maksimum: %ld Minimum: %ld Tidak PernahShell BaruKata-sandi baruKata-sandi baru (ulangi)Tidak ada nama grup yang ditetapkan, tidak ada nama untuk gid %d. Tidak ada nama grup yang ditetapkan, mempergunakan %s. Tidak ada nama grup yang dimasukkan. Tidak ada grup dengan GID %jd, batal menghapus. Tidak ada direktori home baru untuk %s. Tidak ada direktori home lama untuk %s. Nama pengguna tidak dimasukkan, tidak ada nama untuk uid %d. Tidak ada nama pengguna yang ditetapkan, mempergunakan %s. Tidak ada nama pengguna yang dimasukkan. KantorTelp. KantorMasa berlakunya password habis: %s Password Tidak Aktif: %s Pengubahan kata sandi dibatalkan. Kata sandi telah diubah. Kata-sandi tidak cocok, coba lagi. Prompt gagal. Prompt sukses. Menolak untuk membuat akun dengan UID 0. Menolak penggunaan direktori home `%s' yang berbahaya secara defaultMenolak penggunaan direktori home `%s' yang berbahaya untuk %s secara default Mencari nama grup %s. Mencari grup dengan ID %jd. Mencari nama pengguna %s. Mencari pengguna dengan ID %jd. Shell telah berubah. Shell tidak berubah: %s Nama KeluargaPengguna yang tidak dikenal terotentikasi. Konteks pengguna tidak diketahuiPengguna %s tidak dapat dihapus: %s. Pengguna %s tidak dapat dikunci: %s. Pengguna %s tidak dapat diubah: %s. Penguna %s tidak dapat dibuka kuncinya: %s. Pengguna %s tidak ada. Pengguna tidak cocok. Peringatan: %ld Peringatan: Grup dengan ID %jd tidak ada [OPSI...][OPTION...] [user][OPTION...] group[OPTION...] user':' tidak diijinkan dalam kata sandi terenkripsiakses ditolakada berkas cadangan `%s' dan itu bukan berkas biasaukuran berkas cadangan tidak cocokid pengguna/grup salahNama pengguna/grup salahberkas konfigurasi `%s' terlalu besartidak dapat mengikat ke server LDAPtidak dapat mengikat ke server LDAP, usaha pertama adalah `%s': %stidak dapat menegosiasikan TLS dengan server LDAPtidak dapat membuka berkas konfigurasi `%s': %stidak dapat membaca berkas konfigurasi `%s': %stidak dapat menset protokol LDAP ke versi %dtidak dapat menampilkan informasi berkas konfigurasi `%s': %stidak dapat menentukan konteks keamanan dari `%s': %stidak dapat memperoleh konteks keamanan standar: %stidak dapat memperoleh konteks keamanan dari `%s': %stidak dapat membuka `%s': %stidak dapat membaca dari `%s': %stidak dapat menset konteks keamanan standar ke `%s': %stidak dapat menampilkan informasi berkas `%s': %stidak dapat menulis ke `%s': %sdata tidak ditemukan dalam berkasentiti tidak memiliki atribut %sentiti tidak memiliki atribut %s atau %sobyek entiti tidak memiliki atribut %sstruktur entiti tidak memiliki atribut %s atau %sentiti telah dibuat tanpa atribut %s atau %sentri telah ada dalam berkasentri dengan nama yang konflik telah ada dalam berkasgagal saat menghubungi server kadm5 untuk layanan `%s' dalam realm `%s': %sgagal saat membuat `%s': %sgagal saat membuat entri direktori LDAP: %sgagal saat membuat direktori home untuk penggunasalah saat meng-enkrip passwordgagal saat menginisiasikan SASL Cyrus: %sgagal saat menginisiasi pustaka kerberosgagal saat menginisiasi pustaka ldapgagal saat memuat modulgagal saat mengunci berkassalah saat mengunci berkas: %sgagal saat memanipulasi atribut terminalgagal saat memodifikasi entri direktori LDAP: %sgagal saat memindahkan direktori home untuk penggunagagal saat membuka berkasgagal saat menguraikan nama pengguna `%s' untuk kerberosgagal saat membaca berkasgagal saat membaca terminalgagal saat membaca informasi untuk `%s' untuk kerberosgagal saat membaca atribut terminalgagal saat menghapus entri direktori LDAP: %sgagal saat menghapus direktori home untuk penggunagagal saat mengganti nama entri direktori LDAP: %sgagal saat menerjemahkan simbol dalam modulgagal saat menset kata sandi untuk `%s'gagal saat menset kata sandi dalam direktori LDAP untuk %s: %sgagal saat menset atribut terminalgagal saat melihat informasi berkasgagal saat menulis ke berkaskesalahan generikGrup %jd tidak memiliki namagrup %s tidak memiliki GIDgrup tidak memiliki nama atau GIDkesalahan internal saat menginisiasiID tidak validnilai atribut tidak validkombinasi modul tidak validnomor tidak validversi pustaka/modul tidak cocokmodul `%s' tidak mendefinisikan `%s'modul dinonaktifkan oleh konfigurasiversi modul tidak cocok dalam `%s'nama mengandung karakter kontrolnama mengandung karakter `%c' yang tidak validnama mengandung karakter non-ASCIInama mengandung whitespacenama tidak disetnama terlalu panjang (%zu > %d)nama terlalu pendeknama dimulai dengan tanda hubungtidak ada atribut `%s' yang ditemukantidak ada fungsi penginisiasian %s dalam `%s'tidak ada berkas shadow -- menonaktifkantidak ada obyek tersebut dalam direktori LDAPhak akses tidak mencukupitidak mengeksekusi dengan hak akses superuserobyek tidak memiliki atribut %sobyek tidak memiliki atribut %ssuksesmodul `%s' dan `%s' tidak bisa dikombinasikankesalahan tidak diketahuimembuka kunci akan membuat kolom password menjadi kosongskema enkripsi kata sandi tidak didukunguser %jd tidak memiliki namauser %s tidak memiliki UIDuser tidak memiliki nama ataupun UIDobyek pengguna tidak memiliki atribut %sobyek user telah dibuat tanpa `%s'id pengguna/grup sedang digunakannama pengguna/grup sedang digunakanlibuser-0.60~dfsg/po/ca.po0000644000175000017500000011237612226342567015456 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Bernabé Borrero , 2012 # Isabel Cama , 2004 # Miloslav Trmač , 2011 # Xavier Conde Rueda , 2004 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/fedora/language/" "ca/)\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "No s'han pogut eliminar els privilegis.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "S'ha produït un error intern.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s no té permís per canviar la informació de finger de %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Context d'usuari desconegut" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "No s'ha pogut establir el context predeterminat per a /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "S'ha produït un error en iniciar PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Ha fallat l'autenticació per a %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "S'ha produït un error intern «%s» del PAM.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "S'ha autenticat un usuari desconegut.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "L'usuari és discordant.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPCIÓ...] usuari" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "S'ha produït un error en analitzar els arguments: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "No s'ha especificat cap nom d'usuari.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "S'ha produït un error en inicialitzar %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "L'usuari %s no existeix.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "El compte està bloquejat.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "El compte no està bloquejat.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Mínim:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Màxim:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Advertència:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inactiu:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Mai" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Últim canvi:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "La contrasenya venç el:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Contrasenya inactiva:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "El compte venç el:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "No s'ha pogut modificar la informació d'envelliment de %s: %s.\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPCIÓ...] [usuari]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "" "No s'ha especificat cap nom d'usuari, no hi ha cap nom per a l'uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "S'està canviant la informació del finger per a %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Nom i cognoms" #: apps/lchfn.c:146 msgid "Surname" msgstr "Cognom" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Nom facilitat" #: apps/lchfn.c:167 msgid "Office" msgstr "Oficina" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telèfon de l'oficina" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telèfon particular" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Adreça electrònica" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "La informació del finger no ha canviat: error d'entrada.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "La informació del finger ha canviat.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "La informació del finger no ha canviat: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "S'està canviant l'intèrpret d'ordres per a %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nou intèrpret d'ordres" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "L'intèrpret d'ordres no s'ha canviat: %s.\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "L'intèrpret d'ordres ha canviat.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPCIÓ...] grup" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "No s'ha especificat cap nom de grup.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "L'ID del grup %s no és vàlid\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "No s'ha pogut crear el grup: %s.\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "El grup %s no existeix.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "No s'ha pogut suprimir el grup %s: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "S'han especificat -L i -U a la vegada.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "No s'ha pogut definir la contrasenya per al grup %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "No s'ha pogut bloquejar el grup %s: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "No s'ha pogut desbloquejar el grup %s: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "No s'ha pogut modificar el grup %s: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "S'ha produït un error en cercar %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "No s'ha especificat cap nom de grup. Es farà servir %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "No s'ha especificat cap nom de grup, el gid %d no té nom.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "No s'ha especificat cap nom d'usuari. Es farà servir %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s no existeix.\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPCIÓ...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "S'ha produït un error en obrir '%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "S'ha produït un error en crear un compte per a '%s': s'ha formatat la línia " "incorrectament.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "L'ID de l'usuari %s no és vàlid\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "No es pot crear un compte amb l'UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "S'ha produït un error en crear un grup per a «%s» amb el GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Es refusa la utilització per defecte del directori perillós d'inici «%s» per " "a «%s»\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "S'ha produït un error en crear un directori personal per a %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "" "S'ha produït un error en establir la contrasenya inicial per a %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "S'ha produït un error en crear un compte per a %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "S'està canviant la contrasenya per a %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nova contrasenya" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nova contrasenya (confirmació)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Les contrasenyes són diferents, intenteu-ho de nou.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "S'ha cancel·lat el canvi de contrasenya.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "S'ha produït un error al llegir des del descriptor d'arxiu %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "" "S'ha produït un error en configurar la contrasenya per a l'usuari %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "" "S'ha produït un error en configurar la contrasenya per al grup %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "S'ha canviat la contrasenya.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "El grup %jd no existeix\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "S'ha produït un error en crear el grup «%s»: %s.\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "No s'ha pogut crear el compte: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "S'ha produït un error en crear %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "L'usuari %s no s'ha pogut suprimir: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "A %s li falta el nombre de gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "No existeix cap grup amb el gid %jd. No se suprimirà.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "El grup amb el GID %jd no tenia un nom de grup.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "No s'ha pogut suprimir el grup %s: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "s'ha produït un error en eliminar el directori personal per a l'usuari" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "No s'ha pogut definir la contrasenya per a l'usuari %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "L'usuari %s no s'ha pogut bloquejar: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "L'usuari %s no s'ha pogut desbloquejar: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Avís: el grup amb ID %jd no existeix\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "No s'ha pogut modificar l'usuari %s: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "No s'ha pogut modificar el grup %s: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "No hi ha cap directori personal antic per a %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "No hi ha cap directori personal nou per a %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "S'ha produït un error en moure %s cap a %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "no s'ha pogut obrir el fitxer de configuració «%s»: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "no s'ha pogut obtenir informació del fitxer de configuració «%s»: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "el fitxer de configuració «%s» és massa llarg" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "no s'ha pogut llegir el fitxer de configuració «%s»: %s" #: lib/error.c:62 msgid "success" msgstr "correcte" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "mòdul deshabilitat per la configuració" #: lib/error.c:66 msgid "generic error" msgstr "error genèric" #: lib/error.c:68 msgid "not enough privileges" msgstr "no té prou privilegis" #: lib/error.c:70 msgid "access denied" msgstr "accés denegat" #: lib/error.c:72 msgid "bad user/group name" msgstr "nom d'usuari o de grup incorrecte" #: lib/error.c:74 msgid "bad user/group id" msgstr "identificador d'usuari o de grup incorrecte" #: lib/error.c:76 msgid "user/group name in use" msgstr "el nom d'usuari o de grup ja s'està utilitzant" #: lib/error.c:78 msgid "user/group id in use" msgstr "l'identificador d'usuari o de grup ja s'està utilitzant" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "s'ha produït un error en manipular els atributs del terminal" #: lib/error.c:82 msgid "error opening file" msgstr "s'ha produït un error en obrir el fitxer" #: lib/error.c:84 msgid "error locking file" msgstr "s'ha produït un error en bloquejar el fitxer" #: lib/error.c:86 msgid "error statting file" msgstr "s'ha produït un error en intentar obtenir l'estat del fitxer" #: lib/error.c:88 msgid "error reading file" msgstr "s'ha produït un error en llegir el fitxer" #: lib/error.c:90 msgid "error writing to file" msgstr "s'ha produït un error en escriure en el fitxer" #: lib/error.c:92 msgid "data not found in file" msgstr "no s'han trobat les dades en el fitxer" #: lib/error.c:94 msgid "internal initialization error" msgstr "error d'inicialització interna" #: lib/error.c:96 msgid "error loading module" msgstr "s'ha produït un error en carregar el mòdul" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "s'ha produït un error en determinar el símbol en el mòdul" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "la versió del mòdul o de la biblioteca no coincideix" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "en desbloquejar, el camp de la contrasenya quedarà buit" #: lib/error.c:105 msgid "invalid attribute value" msgstr "valor d'atribut invàlid" #: lib/error.c:107 msgid "invalid module combination" msgstr "combinació de mòdul invàlida" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "error desconegut" #: lib/misc.c:240 msgid "invalid number" msgstr "número invàlid" #: lib/misc.c:254 msgid "invalid ID" msgstr "ID invàlid" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "no s'ha trobat cap funció d'inicialització %s a «%s»" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "la versió del mòdul no coincideix a «%s»" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "el mòdul %s no defineix «%s»" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "s'ha produït un error en llegir els atributs del terminal" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "s'ha produït un error en configurar els atributs del terminal" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "s'ha produït un error en llegir del terminal" #: lib/user.c:218 msgid "name is not set" msgstr "no s'ha definit el nom" #: lib/user.c:223 msgid "name is too short" msgstr "el nom és massa curt" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "el nom és massa llarg (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "el nom conté caràcters que no són ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "el nom conté caràcters de control" #: lib/user.c:249 msgid "name contains whitespace" msgstr "el nom conté espais en blanc" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "el nom comença amb un guió" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "el nom conté el caràcter invàlid «%c»" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "l'usuari %s no té UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "el grup %s no té GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "l'usuari %jd no té nom" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "El grup %jd no té nom" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "l'usuari no té ni nom ni UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "el grup no té ni nom ni GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" "Es refusa la utilització per defecte del directori perillós d'inici «%s»" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "El valor per defecte del camp %s no és vàlid: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "s'ha produït un error en bloquejar el fitxer: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "no s'ha pogut obtenir el context de seguretat predeterminat: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "no s'ha pogut obtenir el context de seguretat de «%s»: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" "no s'ha pogut establir el context de seguretat predeterminat a «%s»: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "no s'ha pogut determinar el context de seguretat per a «%s»: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "no s'ha pogut obrir «%s»: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "no s'ha pogut obtenir informació de «%s»: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "s'ha produït un error en crear «%s»: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "la còpia de seguretat «%s» existeix i no és un fitxer per a dades" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "S'ha produït un error en canviar el propietari de «%s»: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "S'ha produït un error en llegir «%s»: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "S'ha produït un error en escriure «%s»: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "la mida del fitxer de còpia de seguretat no coincideix" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s valor «%s»: ':' no està disponible" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "no s'ha podut llegir res de «%s»: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "el registre ja es troba en el fitxer" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "no s'ha pogut escriure a «%s»: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "l'objecte de l'entitat no té l'atribut %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "el registre amb el nom conflictiu ja es troba en el fitxer" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "no es permet ':' a la contrasenya xifrada" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "s'ha produït un error en xifrar la contrasenya" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "els mòduls «%s» i «%s» no es poden combinar" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "no s'està executant amb permisos de superusuari" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "no hi ha cap fitxer shadow present -- es deshabilitarà" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "s'ha produït un error en connectar amb el servidor kadm5 per al servei «%s» " "en el regne «%s»: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "s'ha produït un error en inicialitzar la biblioteca del Kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "s'ha produït un error en analitzar el nom d'usuari «%s» pel Kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "l'estructura de l'entitat no té atributs %s ni %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "l'entitat no té atributs %s ni %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "s'ha creat l'entitat sense atributs %s o %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "s'ha produït un error en llegir la informació per a «%s» del Kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "l'entitat no té cap atribut %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "s'ha produït un error en configurar la contrasenya per a «%s»" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Regne del Kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Administrador principal del Kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Contrasenya del Kerberos per a l'administrador principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "s'ha produït un error en inicialitzar la biblioteca ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "no s'ha pogut establir la versió del protocol LDAP a %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "el TLS no ha pogut negociar amb el servidor de LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "no s'ha pogut crear un vincle amb el servidor de LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "no s'ha pogut vincular amb el servidor de LDAP. El primer intent ha estat " "com a «%s»: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "l'objecte de l'usuari no tenia atribut %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "s'ha creat l'objecte de l'usuari sense «%s»" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "s'ha produït un error en crear l'entrada del directori de LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "" "s'ha produït un error en modificar el registre del directori del LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "s'ha produït un error en canviar l'entrada del directori del LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "l'objecte no tenia cap atribut %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "s'ha produït un error en eliminar l'entrada del directori LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "l'objecte no té cap atribut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "esquema de xifratge de contrasenyes no disponible" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "aquest objecte no existeix en el directori LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "no s'ha trobat cap atribut «%s»" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "" "s'ha produït un error en establir una contrasenya en el directori LDAP per a " "%s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Nom del servidor LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "DN de la base de cerca de LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "DN del vincle de LDAP" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Contrasenya del vincle de LDAP" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Usuari del SASL del LDAP" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Usuari d'autorització del SASL del LDAP" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "s'ha produït un error del SASL en crear un usuari del Cyrus: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "s'ha produït un error del SASL en eliminar un usuari del Cyrus: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "s'ha produït un error en inicialitzar el SASL del Cyrus: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "s'ha produït un error en crear el directori personal per a l'usuari" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "s'ha produït un error en eliminar el directori personal per a l'usuari" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "s'ha produït un error en moure el directori personal per a l'usuari" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "S'ha produït un error en inicialitzar %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "L'ID %s no és vàlid\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "S'està cercant un grup amb ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "S'està cercant un grup anomenat %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "S'està cercant un usuari amb ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "S'està cercant un usuari anomenat %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "No s'ha trobat el registre.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Les sol·licituds s'han completat amb èxit.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Les sol·licituds han falla.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Classes d'objecte de l'usuari per defecte:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Noms d'atribut de l'usuari per defecte:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "S'estan definint els atributs de l'usuari per defecte:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "S'està copiant l'estructura de l'usuari:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s no té un directori personal.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "S'ha produït un error en eliminar %s: %s.\n" libuser-0.60~dfsg/po/ko.gmo0000644000175000017500000005513612226342604015640 0ustar tzafrirtzafrirl95 (=[o*$,D"]" &G<_/)'=Xt'*8)c(.((Aj.$ ! ",#O!s#$#.7 fq% %"H Wdw    -)#W{,,"-Pi p}# '!8I@! " C S j r  " ! # # !1!J! Z!+h! !!!!%! !1 "<"V"h"$|""8"("*!#*L#)w#*#0#)#)'$Q$h$1$$$$1$1%!L%!n%+%.%%3 &G=&&)&&&&!'#*'N'n'''&'('$'"()5(_(r(0(!('(& )'0) X)y)3)!))* *'*=*"Q*t* *****%*%%+ K+ l++ ++"+,*,:,V,h,,%,#, ,-'-C-^-y---- ---&.-.B."U.x.$....50%0C0(>1g1 }1!1(1$1,2;;21w2#222: 3:H33#3#33*3+ 47742o4q455NJ5O5A54+65`6=626;7.C7:r7,7/7N 8@Y8=8288 9LD9>999( :?3:3s::#::(:,;-/;)];,;-;3;(<(?<Hh<<<3<%=-=$>=c={=="== == >!>5>K>^>q>>> > >>J>B?/S?O?2?/@M6@E@2@@AA/A(EA!nADAAA;BU=BaB(B<C+[C5CC(CD$ D.D0ND3D0D:D+E(KE tE:E EEEE5 F?F@SF+F#F'F- G):GGdG-G3G6H<EHHH:H:I:AI|I"IAI+J -J.NJZ}J#J8J*5KB`KHK5KJ"LgmL2LAM?JM.M3MOMK=N+N(N,N5 OHAO?O%OZO%KP/qPKP/PAQ?_QKQ8QB$RNgR5R5R+"SNS$bS S'SS SST.T4@TuT T6T/T2U5KU0UDU.U'&V%NVtV5V&V0V.!W9PW'W4W#W# X/XNX6UXX:X/X' Y#5Y*YY-Y=Y4Y8%ZQT2sgmPpxhI&e }Yz M<S%#N{_\1=^KDqAlurf[9yGc"bUn)v-~a!4w6:8OC0?,j@ JW7;$BiX' ZL3 FH|(`>k+dVt]oRE.5/ *%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in filedate of last password change in days since 1/1/70entity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributeprompt for all informationsuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Korean (http://www.transifex.com/projects/p/fedora/language/ko/) Language: ko MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; %s(은)는 gid number를 갖고 있지 않습니다. %s이(가) 존재하지 않습니다 %s은(는) %s의 finger 정보를 변경할 권한이 없습니다 %s 값 `%s': `:'은 허용되지 않음 계정 만기일: %s 계정 생성에 실패함: %s. 계정이 정지되었습니다. 계정이 정지되지 않았습니다. %s의 인증에 실패했습니다. -L 와 -U 이 함께 지정되었습니다. /etc/passwd의 기본 문맥을 설정할 수 없습니다 %s의 finger (핑거) 정보를 변경합니다. `%s'의 암호를 변경합니다. %s 용 쉘을 변경합니다. 사용자 구조를 복사함: 사용자를 생성하는 중 Cyrus SASL 오류 발생: %s사용자를 삭제하는 중 Cyrus SASL 오류 발생: %s일기본 사용자 속성 이름들: 기본 사용자 객체 클래스: 이메일 주소목록(Entry)을 찾을 수 없습니다. `%s' 모드 변경 도중 오류 발생: %s`%s' 소유자를 변경하는 도중 오류 발생: %s%s(을)를 생성하는 도중 오류 발생: %s. `%s'의 계정을 생성하는데 오류가 발생했습니다: 라인이 부적절하게 포맷되었습니다. `%s' 그룹을 생성하는 도중 오류 발생: %s `%s'에 GID %jd를 사용하여 그룹을 생성하는데 오류 발생: : %s %s의 홈 디렉토리를 생성하는 도중 오류가 발생했습니다: %s %s의 사용자 계정을 생성하는 도중 오류 발생: %s. %s(을)를 초기화하는 도중 오류 발생: %s %s(을)를 초기화하는 도중 오류 발생: %s. PAM을 초기화 하는 도중 오류가 발생했습니다. %s(을)를 조회하는 도중 오류 발생: %s. %s에서 %s(으)로 이동하는 도중 오류 발생: %s. `%s'(을)를 여는 도중 오류 발생: %s. 인수를 처리(parsing)하는 도중 오류 발생: %s. `%s'(을)를 읽는 도중 오류 발생: %s파일 기술어 %d를 읽지 못했습니다. `%s'의 초기 암호를 설정하는 도중 오류가 발생했습니다: %s `%s' 그룹의 암호를 설정하는 도중 오류 발생: %s. %s 사용자의 암호를 설정하는데 오류 발생: %s. `%s'(을)를 기록하는 도중 오류 발생: %s슈퍼유저 권한을 없애는데 실패했습니다. %s의 사용 기한(aging) 정보를 수정하는데 실패했습니다: %s %s 그룹의 암호를 설정하는데 실패했습니다: %s %s 사용자의 암호를 설정하는데 실패함: %s. finger 정보가 변경되었습니다. finger 정보가 변경되지 않았습니다: 입력 오류. finger 정보가 변경되지 않았습니다: %s. 성명기본 사용자 속성을 읽음: 이름%jd 그룹이 존재하지 않습니다 %s 그룹을 삭제할 수 없습니다: %s %s 그룹은 삭제할 수 없습니다: %s. %s 그룹을 잠글 수 없습니다: %s %s 그룹을 편집할 수 없습니다: %s %s 그룹을 편집할 수 없습니다: %s. %s 그룹 잠금을 해제할 수 없습니다: %s %s 그룹이 존재하지 않습니다. 그룹 생성에 실패했습니다: %s GID %jd 라는 그룹에는 이름이 지정되어 있지 않습니다. 집 전화 번호비활성: %ld 내부 PAM 오류 `%s'(이)가 발생했습니다. 내부 오류가 발생했습니다. 잘못된 ID %s %s 란의 기본값이 잘못됨: %s잘못된 그룹 ID %s 잘못된 사용자 ID %s Kerberos Admin PrincipalAdmin Principal의 Kerberos 암호kerberos RealmLDAP Bind DN LDAP Bind 암호LDAP SASL 권한부여 사용자LDAP SASL 사용자LDAP 검색 기반 DNLDAP 서버 이름최종 변경: %s 최대값: %ld 최소값: %ld 없음새로운 쉘새 암호새 암호 (확인)그룹 이름과 gid %d에 대한 이름이 지정되지 않았습니다. %s를 사용하여 그룹 이름이 지정되지 않았습니다. 그룹 이름이 지정되지 않았습니다. GID %jd라는 그룹이 존재하지 않으므로, 삭제할 수 없습니다. %s의 새로운 홈 디렉토리가 없습니다. %s의 이전 홈 디렉토리가 없습니다. 사용자 이름과 uid %d에 대한 이름이 지정되지 않았습니다. %s를 사용하여 사용자 이름이 지정되지 않았습니다. 사용자 이름이 지정되지 않았습니다. 직장직장 전화 번호암호 만기일: %s 암호 비활성: %s 암호 변경이 취소되었습니다. 암호가 변경되었습니다. 암호가 일치하지 않습니다, 다시 입력해 주십시오. 프롬프트 실패. 프롬프트 성공. UID 0를 가진 계정을 생성하기를 거부합니다. 기본값으로 안전하지 않은 `%s' 홈 디렉토리 사용을 거부합니다 %s에 대해 기본값으로 안전하지 않은 `%s' 홈 디렉토리 사용을 거부합니다 %s 그룹을 검색하고 있습니다. %jd라는 ID를 가진 그룹을 검색하고 있습니다. %s 사용자를 검색하고 있습니다. ID가 %jd인 사용자를 검색하고 있습니다. 쉘이 변경되었습니다. 쉘이 변경되지 않았습니다: %s 성알 수 없는 사용자 인증함. 알 수 없는 사용자 문맥%s 사용자를 삭제할 수 없습니다: %s. %s 사용자를 정지시킬 수 없습니다: %s. %s 사용자를 편집할 수 없습니다: %s. %s 사용자의 정지를 해제할 수 없습니다: %s. %s 사용자가 존재하지 않습니다. 사용자가 일치하지 않습니다. 경고: %ld 경고: ID %jd로된 그룹이 존재하지 않습니다. [OPTION...][OPTION...] [사용자][옵션...] 그룹[옵션...] 사용자`:'은 암호화된 암호에서 허용되지 않음 접근이 거부됨백업 파일 `%s' 존재하지만 정규 파일이 아닙니다백업 파일 용량이 일치하지 않음사용자/그룹의 id가 잘못됨사용자/그룹의 이름이 잘못됨설정 파일 `%s' 용량이 너무 큽니다LDAP 서버와 연결할 수 없습니다LDAP 서버와 연결할 수 없습니다, `%s'로 첫번째 시도: %sLDAP 서버와 TLS 연결할 수 없습니다설정 파일 `%s'(을)를 열 수 없습니다: %s설정 파일 `%s'(을)를 읽을 수 없습니다: %s%d 버전에 LDAP 프로토콜을 설정할 수 없습니다설정 파일 `%s'에 stat 명령 실행하는데 실패했습니다: %s`%s'의 보안 문맥을 결정하지 못했습니다: %s 기본 보안 문맥을 읽어오지 못했습니다: %s `%s'의 보안 문맥을 읽어오지 못했습니다: %s `%s'(을)를 열 수 없음: %s`%s'(을)를 읽을 수 없음: %s기본 보안 문맥을 `%s'으로 설정할 수 없습니다: %s`%s'(을)를 표시(stat)할 수 없음: %s`%s'에 작성할 수 없음: %s파일에서 자료(data)를 찾을 수 없음일단위로 표시한 1970년 1월 1일 이후 마지막으로 암호가 변경될 날짜entity에 %s 속성이 없습니다entity에 %s(이)가 없거나 %s 속성이 없습니다entity 개체에 %s 속성이 없습니다entity structure에 %s(이)가 없거나 %s 속성이 없습니다%s(이)가 없거나 %s 속성이 없는 entity가 생성되었습니다파일 안에 목록(entry)이 이미 존재합니다목록에 이미 중복되는 이름을 가진 파일이 존재합니다.`%2$s' 분류 안의 `%1$s' 서비스를 위해 kadm5 서버에 연결하는 도중 오류 발생: %3$s`%s'(을)를 생성하는 도중 오류 발생: %sLDAP 디렉토리 항목을 생성하는 도중 오류 발생: %s사용자의 홈 디렉토리를 생성하는 중 오류 발생암호를 암호화하는 도중 오류 발생Cyrus SASL를 초기화하는 중 오류 발생: %skerberos 라이브러리를 초기화하는 도중 오류가 발생했습니다ldap 라이브러리를 초기화하는 도중 오류가 발생했습니다모듈을 적재하는 도중 오류 발생파일을 잠그는 도중 오류 발생파일을 잠그는 도중 오류 발생: %s터미널 속성을 설정하는 도중 오류 발생LDAP 디렉토리 목록(entry)을 편집하는 도중 오류 발생: %s사용자의 홈 디렉토리를 이동하는 중 오류 발생파일을 여는 도중 오류 발생kerberos의 사용자 이름 `%s'(을)를 분석하는 도중 오류가 발생했습니다파일을 읽는 도중 오류 발생터미널로 부터 읽는 도중 오류 발생kerberos에서 `%s'의 정보를 읽는 도중 오류가 발생했습니다터미널 속성을 읽는 도중 오류 발생LDAP 디렉토리 항목을 삭제하는 도중 오류 발생: %s사용자의 홈 디렉토리를 삭제하는 중 오류 발생LDAP 디렉토리 항목의 이름을 변경하는 도중 오류 발생: %s모듈에서 심볼을 처리하는 도중 오류 발생`%s'의 암호를 설정하는 도중 오류가 발생했습니다%s의 LDAP 디렉토리 안에 암호를 설정하는 도중 오류 발생: %s터미널 속성을 설정하는 도중 오류 발생파일의 상태를 확인하는 도중 오류 발생파일에 기록하는 도중 오류 발생일반적인 오류그룹 %jd는 이름이 없습니다그룹 %s는 GID가 없습니다그룹은 이름과 GID가 없습니다내부 초기화 오류잘못된 ID 올바르지 않은 속성 올바르지 않은 모듈 잘못된 번호 라이브러리/모듈 버젼이 일치하지 않음암호 최대 유지기간최소한의 암호 유지기간`%s' 모듈은 `%s'을(를) 정의하지 않습니다설정에 의해 모듈을 사용할 수 없음`%s'의 모듈 버젼이 일치하지 않습니다이름에 제어 문자가 포함되어 있습니다.이름에 잘못된 문자 `%c'가 있습니다.이름에 아스키 (ASCII)가 아닌 문자가 들어 있습니다.이름에 공백이 포함되어 있습니다.이름이 설정되지 않았습니다.이름이 너무 깁니다 (%zu > %d)이름이 너무 짧습니다.이름이 하이픈(연결 부호)로 시작합니다`%s' 속성을 찾을 수 없습니다`%s'에 초기화 기능 %s(이)가 없습니다현재 섀도우 파일이 없음 -- 불가능LDAP 디렉토리 안에 그러한 개체가 없습니다수퍼유저 권한이 충분치 않음수퍼유저 권한으로 실행할 수 없습니다개체에 %s 속성이 없습니다개체에 %s 속성이 없습니다모든 정보를 요청하다.성공'%s', '%s 모듈은 같이 사용될 수 없습니다.알 수 없는 오류잠금 해제하시면 암호 입력란이 비워집니다지원되지 않는 암호화 체계입니다 사용자 %jd는 이름이 없습니다사용자 %s는 UID가 없습니다사용자는 이름과 UID가 없습니다사용자 개체에 %s 속성이 없습니다`%s'(이)가 없는 사용자 개체가 생성되었습니다사용자/그룹의 id가 이미 사용되고 있음사용자/그룹의 이름이 이미 사용되고 있음libuser-0.60~dfsg/po/mai.gmo0000644000175000017500000006760412226342604016000 0ustar tzafrirtzafrir% pq5,Dc*~$""=` <4/S)' %>Zs*)(&=.Y((.$& K!U w"#!#$)#Nr.  %*Pey% '8 I We k u-#,2Q,p" 5#Hl}'! 9I`h"!##'@ P+^ % 1 2 L ^ $r  8 ( *!*B!)m!*!0!)!)"G"^"1z"""""!#!2#+T#.##G#$)-$&W$~$!$#$$$%&%&=%(d%$%%)%%&0&!O&'q&&&'& & '3)'!]''' '''"'( "(-(<( \( }(( (("(");)K)g)y))%)#) )*',*T*o** *-*&** +"+@+$`+++++q-t-@.S.1o.+.5.6/E://d0]y0H0g 1]1]1\D2e2343ST3433A4^4f.5i5B5PB6@6.6H71L7Z~727 8h8w82m9G9v9__:q:>1;mp;N;-<mD<<<<P=PT=\=c>Xf>_>;?4[?S??!?/ @'P@x@c@&@5A;SAiA(A"B07BAhB%BBB$C4CNCjCC%CICDD_*EEWF`mFFqGnHqH+H-H?HK$I7pIgI1J.BJdqJUJF,KdsK_K"8L.[LLILALa&M^MgMaONDN-N$Oa@OO5O$O3PcIPPPJTQ8Q?QHR9aRRPSLoSLSi TVsTmT8UWU)%V0OVV(W3DW:xW:WJWI9X]XcXPEYY24ZmgZzZFP[R[i[XT\I\C\F;]c]]zj^6^_6_F_m+`F`w`zXaafXbUbcIc@c@$d(ed@dCdOeMcee%eWecEfYfXg_\gUgMhL`h'h8h*iF9i2iUik jeuj4jk4k7k k%l-lWlY mSemfmN nmonOnV-o! o5(C[~DFxBkP"6b+?.eO8Xc'_9V:s,3fYQ;jt`aTw-vUI&R L|{>uNK4nd0)1\Eh#yH%r2]p S$g<qJ^A=G} iW*l @7/mZMz%s did not have a gid number. %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Maithili (http://www.transifex.com/projects/p/fedora/language/mai/) Language: mai MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s क' gid अंक नहि अछि. %s क' पहचान केँ बदलब क' लेल %s प्राधिकृत नहि अछि %s मान `%s': `:' नहि अनुमति भेटललेखा अंत: %s लेखा बनावट असफल: %s। लेखा तालकित अछि. लेखा तालकित नहि अछि. %s क' लेल सत्यापन असफल. -L आओर -U दुनू निर्दिष्ट अछि. /etc/passwd क' लेल पूर्वनिर्धारित संदर्भ व्यवस्थित नहि कए सकैत %s क' लेल फिंगर जानकारी बदलल जाए रहल अछि. %s क' लेल गुड़किल्ली बदलि जाए रहल अछि. %s क' लेल शैल बदलि जाए रहल अछि. प्रयोक्ता संरचना प्रतिलिपि कए रहल अछि: %s प्रयोक्ता बनाबै मे सायरस SASL त्रुटि%s प्रयोक्ता हटाबै मे सायरस SASL त्रुटिपूर्वनिर्धारित प्रयोक्ता गुण नाम: पूर्वनिर्धारित प्रयोक्ता वस्तु वर्ग: ई-डाक पताप्रविष्टि नहि भेटल. `%s' क' स्वामित्व बदलाव मे त्रुटि: %s%s बनाबै मे त्रुटि: %s। `%s' क' लेल लेखा बनाबै मे त्रुटि: लाइन सही तरीका सँ संरूपित नहि कएल गेल. `%s' समूह बनाबै मे त्रुटि: %s. `%s' क' लेल GID %jd सँ समूह बनाबै मे त्रुटि: %s %s क' लेल घर निर्देशिका बनाबै मे त्रुटि: %s %s क' लेल प्रयोक्ता लेखा बनाबै मे त्रुटि: %s %s प्रारंभिकीकरण त्रुटि: %s %s क' प्रारंभिकीकरण मे त्रुटि: %s. PAM प्रारंभिकीकरण त्रुटि. %s देखब मे त्रुटि: %s %s सँ %s केँ चलाबै मे त्रुटि: %s। `%s' खोलब मे त्रुटि: %s. तर्ककेँ विश्लेषण करब मे त्रुटि: %s। `%s' पढ़बा मे त्रुटि: %s%s क' लेल प्रारंभिक गुड़किल्ली जमा करब मे त्रुटि: %s %s समूह क' लेल गुड़किल्ली जमावट त्रुटि: %s। %s प्रयोक्ता क' लेल गुड़किल्ली जमावट त्रुटि: %s। `%s' लिखबा मे त्रुटि: %sविशेषाधिकार हटाबै मे असफल. %s क' लेल पुरान जानकारी रूपांतरित करब मे असफल: %s %s समूह क' लेल गुड़किल्ली जमावट असफल: %s %s प्रयोक्ता क' लेल गुड़किल्ली जमावट असफल: %s। फिंगर जानकारी बदलि गेल. फिंगर जानकारी नहि बदलि गेल: निवेश त्रुटि. फिंगर जानकारी नहि बदलि गेल: %s। पूरा नामपूर्वनिर्धारित प्रयोक्ता गुण ले रहल अछि: देल नाम%jd समूह उपस्थित नहि अछि. समूह %s केँ विलोपित नहि कए सकल: %s. समूह %s केँ विलोपित नहि कए सकल: %s. %s समूह केँ तालकित नहि कएल जाए सकैत: %s %s समूह केँ परिवर्तित नहि कएल जाए सकल: %ss %s समूह केँ परिवर्तित नहि कए सकल: %s। %s समूह केँ अतालकित नहि कएल जाए सकैत: %s %s समूह उपस्थित नहि अछि. समूह निर्माण असफल: %s GID %jd समूह क' कोनो समूह नाम नहि अछि. घर दूरभाषनिष्क्रिय: %ld आंतरिक PAM त्रुटि`%s'. आंतरिक त्रुटि. अमान्य ID %s %s क्षेत्र क' अवैध पूर्वनिर्धारित मान: %sअमान्य समूह ID %s अमान्य प्रयोक्ता ID %s करबरोस प्रधान प्रशासकप्रधान प्रशासक क' लेल करबरोस गुड़किल्लीकरबरोस क्षेत्रLDAP बंधन DNLDAP बंधन गुड़किल्लीLDAP SASL प्राधिकरण प्रयोक्ताLDAP SASL प्रयोक्ताLDAP खोज आधार DNLDAP सर्वर नाम अंतिम बदलाव: %s अधिकतम: %ld न्यूनतम: %ld कहियो नहिनव शैलनव गुड़किल्लीनव गुड़किल्ली (निश्चित करू )कोनो समूह नाम निर्दिष्ट नहि कएल गेल, gid %d क' लेल कोनो नाम नहि अछि. %s क' प्रयोग सँ कोनो समूह नाम निर्दिष्ट नहि कएल गेल. कोनो समूह नाम निर्दिष्ट नहि कएल गेल. GID %jd क' सँग कोनो जीवंत समूह मोजुद अछि. नहि हटाए रहल अछि. %s क' कोनो नई घर निर्देशिका नहि अछि. %s क' कोनो पुरान घर निर्देशिका नहि अछि. कोनो प्रयोक्ता नाम निर्दिष्ट नहि कएल गेल,uid %d क' लेल नाम नहि अछि. %s क' प्रयोग सँ कोनो प्रयोक्ता नाम निर्दिष्ट नहि कएल गेल. कोनो प्रयोक्ता नाम निर्दिष्ट नहि कएल गेल. कार्यालयकार्यालय दूरभाषगुड़किल्ली अंत: %s गुड़किल्ली निष्क्रिय: %s गुड़किल्ली बदलाव रद कएल गेल. गुड़किल्ली बदलि गेल. गुड़किल्ली भेट नहि रहल,पुन:प्रयास करू . प्रांप्ट बिफल भेल. प्रांप्ट सफल भेल. UID 0 सँ लेखा बनाबै क' लेल इंकार कए रहल अछि %s नामित समूह क' लेल खोज भए रहल अछि. ID %jd सँ समूह क' खोज भए रहल अछि. %s नामित प्रयोक्ता क' लेल खोज भए रहल अछि. ID %jd सँ प्रयोक्ता क' लेल खोज भए रहल अछि. शैल बदलि गेल. शैल नहि बदलि गेल:%s उपनामअज्ञात प्रयोक्ता सत्यापित. अज्ञात प्रयोक्ता संदर्भप्रयोक्ता %s केँ विलोपित नहि कए सकल: %s। %s प्रयोक्ता केँ तालकित नहि कए सकल: %s। %s प्रयोक्ता केँ परिवर्तित नहि कए सकल: %s। %s प्रयोक्ता केँ अतालकित नहि कए सकल: %s। %s प्रयोक्ता जीवंत नहि अछि. प्रयोक्ता बेमेल. चेतावनी: %ld चेतावनी: ID %jd क' सँग समूह मोजुद नहि अछि. [विकल्प...][विकल्प...] [प्रयोक्ता][विकल्प...] समूह[विकल्प...] प्रयोक्ता`:' गोपित गुड़किल्ली मे नहि अनुमति भेटलपहुँच निषेध`%s' बैकअप फाइल जीवंत अछि आओर एकटा नियमित फाइल नहि अछिबैकअप फाइल आकार मेल नहि खएलकबुरा प्रयोक्ता/समूह idबुरा प्रयोक्ता/समूह नाम`%s' विन्यास फाइल काफी पैघ अछिLDAP सर्वर सँ जुड नहि सकलLDAP सर्वर सँ जुड नहि सकल, पहिने `%s' रूपेँ प्रयास करू : %sLDAP सर्वर सँ TLS संबंधित नहि कए सकल`%s' विन्यास फाइल खोलि नहि सकल: %s`%s' विन्यास फाइल पढ़ि नहि सकल: %s%d संस्करण केँ LDAP प्रोटोकाल सेट नहि कए सकल `%s' विन्यास फाइल स्टेट नहि कए सकल: %s`%s' क' सुरक्षा संदर्भ निर्धारित नहि कए सकल: %sपूर्वनिर्धारित सुरक्षा संदर्भ व्यवस्थित पाबि नहि सकल: %s`%s' क' सुरक्षा संदर्भ पाबि नहि सकल: %s`%s' खोलि नहि सकल: %s`%s' सँ पढ़ि नहि सकल: %s`%s' मे पूर्वनिर्धारित सुरक्षा संदर्भ व्यवस्थित नहि कए सकल: %s`%s' stat नहि कए सकल: %s`%s' केँ लिखि नहि सकल: %sफाइल मे आंकडा नहि भेटलएंटिटी मे %s गुण नहि अछिएंटिटी मे %s अथवा %s गुण नहि अछिएंटिटी वस्तु क' %s गुण नहि अछि एंटिटी संरचना मे %s अथवा %s गुण नहि अछिएंटिटी क' बनावट %s अथवा %s गुण क' बिनु क' गई फाइल मे प्रविष्टि पहिने सँ अछि`%s' सेवा क' लेल `%s' क्षेत्र मे kadm5 सर्वर सँ संबंधित करब मे त्रुटि: %s`%s' बनाबै मे त्रुटि: %sLDAP निर्देशिका प्रविष्टि बनाबै मे त्रुटि: %sप्रयोक्ता क' लेल घर निर्देशिका बनाबै मे त्रुटिगुड़किल्ली गोपन मे त्रुटि %s सायरस SASL प्रारंभिकीकरण त्रुटिकरबरोस लाइब्रेरी प्रारंभिकीकरण त्रुटिldap क्रमादेश प्रारंभिकीकरण त्रुटिमाड्यूल भारित करब मे त्रुटिफाइल तालकित करब मे त्रुटि%s फाइल तालकित करब मे त्रुटिटर्मिनल गुण सँ छेड़छाड़ करब मे त्रुटिLDAP निर्देशिका प्रविष्टि रूपांतरित करब मे त्रुटि: %sप्रयोक्ता क' लेल घर निर्देशिका चलाबै मे त्रुटिफाइल खुलने मे त्रुटिकरबरोस क' लेल `%s' प्रयोक्ता नाम पद व्याख्या करब मे त्रुटिफाइल पढ़बा मे त्रुटिटर्मिनल सँ पढ़बा मे त्रुटिकरबरोस सँ `%s' क' लेल जानकारी पढ़बा मे त्रुटिटर्मिनल गुण पढने मे त्रुटिLDAP निर्देशिका प्रविष्टि केँ हटाबै मे त्रुटि: %sप्रयोक्ता क' लेल घर निर्देशिका हटाबै मे त्रुटिLDAP निर्देशिका प्रविष्टि क' पुनर्नामकरण मे त्रुटि: %sमाड्यूल मे प्रतीक वियोजन करब मे त्रुटि`%s' क' लेल गुड़किल्ली जमावट त्रुटि%s क' लेल LDAP निर्देशिका मे गुड़किल्ली जमावट त्रुटि: %s टर्मिनल गुण जमावट मे त्रुटिफाइल स्थाई करब मे त्रुटिफाइल केँ लिखबा मे त्रुटिजेनेरिक त्रुटिसमूह %jd क' कोनो नाम नहि अछिसमूह क' पास %s कोनो GID नहि अछिसमूह क' पास नहि तँ नाम अछि नहि GID.आंतरिक प्रारंभिकीकरण त्रुटिअमान्य IDअमान्य संख्यालाइब्रेरी/माड्यूल संस्करण बेमेल`%s' मौड्यूल `%s' केँ परिभाषित नहि करैत अछिविन्यास सँ माड्यूल असमर्थ कएल गेल`%s' मे माड्यूल संस्करण मेल नहि खातानाम मे नियंत्रण संप्रतीक समाहित अछिनाम मे अनुचित अक्षर `%c' समाहित अछिनाम मे गैर-ASCII अक्षर समाहित अछिनाम मे रिक्तस्थान समाहित अछिनाम नहि जमा अछिनाम काफी नमहर अछि (%zu > %d)नाम बहुत छोट अछिनाम हाइफन सँ शुरू हाएत अछिकोनो `%s' गुण नहि भेटल%s फलन प्रारंभिकीकरण, '%s' मे नहि अछिकोनो शेडो फाइल नहि अछि -- असमर्थ कए रहल अछिLDAP निर्देशिका मे एहन किछु वस्तु नहि अछि अधिकार काफी नहि अछिसुपरयूजर विशेषाधिकार सँ निष्पादन नहि कए रहल अछिवस्तु मे %s गुण नहि छलवस्तु मे %s गुण नहि अछिसफलअज्ञात त्रुटिअतालाकित कएनाइ गुड़किल्ली क्षेत्र केँ खाली रखताह.असमर्थित गुड़किल्ली गोपनक योजनाप्रयोक्ता %jd क' पास कोनो नाम नहि अछिप्रयोक्ता क' पास %s कोनो UID नहि अछि.प्रयोक्ता क' पास कोनो नाम अथवा UID नहि अछिप्रयोक्ता वस्तु क' %s गुण नहि छलप्रयोक्ता वस्तु केँ `%s' क' बिनु बनाएल गेल छलप्रयोक्ता/समूह id प्रयोग मे अछिप्रयोक्ता/समूह नाम प्रयोग मे अछिlibuser-0.60~dfsg/po/sl.po0000644000175000017500000010515012226342570015473 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Rok Papez , 2006, 2007 # Roman Maurer , 2001 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/fedora/" "language/sl/)\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Pravic ni bilo moč odstraniti.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Notranja napaka.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s ni avtoriziran, da bi spremenil podatke finger o %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Neznan kontekst uporabnika" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Ne morem nastaviti privzetega konteksta za /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Napaka pri inicializaciji PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Avtentikacija za %s ni uspela.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Notranja napaka PAM ,%s`.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Neznanemu uporabniku je bila preverjena istovetnost.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Napačen uporabnik.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[IZBIRA...] uporabnik" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Napaka pri razčlenjevanju argumentov: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Uporabniško ime ni bilo določeno.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Napaka pri inicializaciji %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Uporabnik %s ne obstaja.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Račun je zaklenjen.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Račun ni zaklenjen.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Najmanj:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Največ:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Opozorilo:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Nedejaven:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nikoli" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Zadnja sprememba:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Geslo poteče:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Geslo nedejavno:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Račun poteče:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Podatkov o staranju za %s ni bilo moč spremeniti: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[IZBIRA...] [uporabnik]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Uporabniško ime ni bilo določeno, ni imena za uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Podatki za finger %s se spreminjajo.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Polno ime" #: apps/lchfn.c:146 msgid "Surname" msgstr "Priimek" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Dano ime" #: apps/lchfn.c:167 msgid "Office" msgstr "Pisarna" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Pisarniški telefon" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Domači telefon" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-poštni naslov" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Podatki za finger se niso spremenili: napaka pri vnosu.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Podatki za finger so se spremenili.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Podatki za finger se niso spremenili: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Ukazna lupina za %s se spreminja.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nova lupina" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Lupina ni bila spremenjena: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Lupina spremenjena.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[IZBIRA...] skupina" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Ime skupine ni bilo določeno.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Neveljaven ID skupine %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Izdelava skupine ni uspela: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Skupina %s ne obstaja.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Skupine %s ni moč izbrisati: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Določeni sta bili -L in -U hkrati.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Gesla za skupino %s ni bilo moč nastaviti: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Skupine %s ne morem zakleniti: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Skupine %s ne morem odkleniti: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Skupine %s ni moč spremeniti: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Napaka pri zaklepanju %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Ime skupine ni bilo določeno, uporabljam %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Ime skupine ni bilo določeno, ni imena za gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Uporabniško ime ni bilo določeno, uporabljam %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[IZBIRA...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Napaka pri odpiranju '%s`: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Napaka pri ustvarjanju računa za '%s': nepravilno formatirana vrstica.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Neveljaven ID uporabnika %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Ni moč narediti računa z UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Napaka pri ustvarjanju skupine `%s` z GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Napaka pri ustvarjanju domačega imenika za %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Napaka pri nastavljanju začetnega gesla za %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Napaka pri ustvarjanju uporabniškega računa za %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Napaka pri spreminjanju gesla za %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Novo geslo" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Novo geslo (potrditev)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Gesli se ne ujemata, poskusite znova.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Sprememba gesla je preklicana.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Napaka pri nastavljanju gesla za uporabnika %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Napaka pri nastavljanju gesla za skupino %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Geslo je spremenjeno.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Skupina %jd ne obstaja\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Napaka pri ustvarjanju skupine `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Izdelava računa ni uspela: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Napaka pri ustvarjanju %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Uporabnika %s ni moč izbrisati: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s ni imel števila gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Ni skupine z GID %jd, zato je ne morem odstraniti.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Skupina z GID %jd ni imela imena skupine.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Skupine %s ni moč izbrisati: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "napaka pri odstranjevanju domačega imenika za uporabnika" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Neuspešno nastavljanje gesla za uporabnika %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Uporabnika %s ni moč zakleniti: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Uporabnika %s ni moč odkleniti: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Uporabnika %s ni moč spremeniti: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Skupine %s ni moč spremeniti: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Ni starega domačega imenika za %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Ni novega domačega imenika za %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Napaka pri premikanju %s v %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "ni moč odpreti nastavitvene datoteke ,%s`: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "ni moč preveriti nastavitvene datoteke `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "nastavitvena datoteka `%s' je prevelika" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "ne morem brati nastavitvene datoteke `%s': %s" #: lib/error.c:62 msgid "success" msgstr "uspeh" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "konfiguracija onemogočila modul" #: lib/error.c:66 msgid "generic error" msgstr "splošna napaka" #: lib/error.c:68 msgid "not enough privileges" msgstr "ni dovolj pravic" #: lib/error.c:70 msgid "access denied" msgstr "dostop zavrnjen" #: lib/error.c:72 msgid "bad user/group name" msgstr "slabo ime uporabnika/skupine" #: lib/error.c:74 msgid "bad user/group id" msgstr "slaba ID uporabnika/skupine" #: lib/error.c:76 msgid "user/group name in use" msgstr "ime uporabnika/skupine že v rabi" #: lib/error.c:78 msgid "user/group id in use" msgstr "ID uporabnika/skupine že v rabi" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "napaka pri rokovanju z atributi terminala" #: lib/error.c:82 msgid "error opening file" msgstr "napaka pri odpiranju datoteke" #: lib/error.c:84 msgid "error locking file" msgstr "napaka pri zaklepanju datoteke" #: lib/error.c:86 msgid "error statting file" msgstr "napaka pri opisovanju datoteke" #: lib/error.c:88 msgid "error reading file" msgstr "napaka pri branju datoteke" #: lib/error.c:90 msgid "error writing to file" msgstr "napaka pri pisanju v datoteko" #: lib/error.c:92 msgid "data not found in file" msgstr "v datoteki ni podatkov" #: lib/error.c:94 msgid "internal initialization error" msgstr "notranja napaka pri inicializaciji" #: lib/error.c:96 msgid "error loading module" msgstr "napaka pri nalaganju modula" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "napaka pri razreševanju simbola v modulu" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "neujemanje različice modula/knjižnice" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "odklepanje bi pustilo polje z geslom prazno" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "neznana napaka" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "ni inicializacijske funkcije %s v ,%s`" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "neujemanje različice modula v ,%s`" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modučl `%s' ne določa `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "napaka pri branju atributov terminala" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "napaka pri nastavljanju atributov terminala" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "napaka pri branju s terminala" #: lib/user.c:218 msgid "name is not set" msgstr "ime ni nastavljeno" #: lib/user.c:223 msgid "name is too short" msgstr "ime je prekratko" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "ime je predolgo (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "ime vsebuje ne-ASCII znake" #: lib/user.c:242 msgid "name contains control characters" msgstr "ime vsebuje krmilne znake" #: lib/user.c:249 msgid "name contains whitespace" msgstr "ime vsebuje prazne znake" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "ime se začne z pomišljajem" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "ime vsebuje neveljavni znak '%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "uporabnik %s nima UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "skupina %s nima GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "uporabnik %jd nima imena" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "skupina %jd nima imena" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "uporabnik nima niti imena niti UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "skupina nima niti imena niti GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Neveljavna privzeta vrednost polja %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "napaka pri zaklepanju datoteke: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "ne morem ugotoviti varnostnega konteksta `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "ne morem nastaviti privzetega varnostnega konteksta `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "ni moč odpreti ,%s`: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "ni moč ugotoviti stanja ,%s`: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "napaka pri ustvarjanju ,%s`: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "rezervna datoteka ,%s` obstaja in ni običajna datoteka" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Napaka pri spreminjanju lastnika `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Napaka pri branju ,%s`: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Napaka pri pisanju `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "varnostna kopija datoteke ima neujemajočo velikost" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "ni moč brati iz ,%s`: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "vnos je že v datoteki" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "ni moč pisati v ,%s`: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "entitetni objekt nima atributa %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "napaka pri šifriranju gesla" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "ne izvaja se z dovolilnicami skrbnika" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "ni datoteke z zastrtimi gesli -- onemogočam" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "napaka pri prijavljanju v strežnik kadm5 za storitev ,%s` v realmu ,%s`: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "napaka pri inicializaciji knjižnice kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "napaka pri razčlenjevanju uporabniškega imena ,%s` za kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "entitetna struktura nima atributov %s ali %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entiteta nima atributov %s ali %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entiteta je bila narejena brez atributov %s ali %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "napaka pri branju podatkov za ,%s` prek kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entitena nima atributa %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "napaka pri nastavljanju gesla za ,%s`" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Glavni skrbnik za Kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Geslo Kerberos za glavnega skrbnika" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "napaka pri inicializaciji knjižnice ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "protokola LDAP ni bilo moč nastaviti na različico %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "ni se bilo moč pogoditi za TLS s strežnikom LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "ni se bilo moč povezati s strežnikom LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "ni se bilo moč povezati s strežnikom LDAP, prvi poskus kot `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "uporabniški predmet nima atributa %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "uporabniški predmet je bil ustvarjen brez ,%s`" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "napaka pri ustvarjanju imeniškem vnosu LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "napaka pri spreminjanju imeniškega vnosa LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "napaka pri preimenovanju imeniškega vnosa LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "predmet nima atributa %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "napaka pri odstranjevanju imeniškega vnosa LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "predmet nima atributa %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "takega predmeta ni v imeniku LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "ni moč najti atributa ,%s`" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "napaka pri nastavljanju gesla v imeniku LDAP za %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Ime strežnika LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Iskalna osnova DN za LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Povezava DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Geslo za povezavo z LDAP" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Uporabnik SASL v LDAP" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Uporabnik z odobritvijo SASL v LDAP" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Napaka Cyrus SASL pri ustvarjanju uporabnika: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Napaka Cyrus SASL pri odstranjevanju uporabnika: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "napaka pri inicializaciji Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "napaka pri ustvarjanju domačega imenika za uporabnika" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "napaka pri odstranjevanju domačega imenika za uporabnika" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "napaka pri premikanju domačega imenika za uporabnika" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Napaka pri inicializaciji %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Neveljaven ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Iščem skupino z ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Iščem skupino, imenovano %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Iščem uporabnika z ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Iščem uporabnika, imenovanega %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Vnos ni bil najden.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Pozivniki uspeli.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Pozivniki niso uspeli.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Privzeti predmetni razredi uporabnika:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Privzeta imena atributov uporabnika:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Dobivamo privzete atribute uporabnika:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Prepisovanje uporabniške strukture:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s ni imel(a) domačega imenika.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Napaka pri odstranjevanju %s: %s.\n" libuser-0.60~dfsg/po/en_GB.po0000644000175000017500000010303412226342567016034 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Abigail Brady , Bastien Nocera , 2007 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/" "fedora/language/en_GB/)\n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Failed to drop privileges.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Internal error.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s is not authorized to change the finger info of %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Unknown user context" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Can't set default context for /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Error initializing PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Authentication failed for %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Internal PAM error `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Unknown user authenticated.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "User mismatch.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] user" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Error parsing arguments: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "No user name specified.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Error initializing %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "User %s does not exist.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Account is locked.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Account is not locked.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maximum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Warning:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inactive:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Never" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Last Change:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Password Expires:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Password Inactive:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Account Expires:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Failed to modify aging information for %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "No user name specified, no name for uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Changing finger information for %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Full Name" #: apps/lchfn.c:146 msgid "Surname" msgstr "Surname" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Given Name" #: apps/lchfn.c:167 msgid "Office" msgstr "Office" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Office Phone" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Home Phone" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-Mail Address" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger information not changed: input error.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger information changed.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger information not changed: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Changing shell for %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "New Shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell not changed: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell changed.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] group" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "No group name specified.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Invalid group ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Group creation failed: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Group %s does not exist.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Group %s could not be deleted: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Both -L and -U specified.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Failed to set password for group %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Group %s could not be locked: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Group %s could not be unlocked: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Group %s could not be modified: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Error looking up %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "No group name specified, using %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "No group name specified, no name for gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "No user name specified, using %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Error opening `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Error creating account for `%s': line improperly formatted.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Invalid user ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Refusing to create account with UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Error creating group for `%s' with GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Error creating home directory for %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Error setting initial password for %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Error creating user account for %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Changing password for %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "New password" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "New password (confirm)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Passwords do not match, try again.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Password change cancelled.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Error setting password for user %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Error setting password for group %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Password changed.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Group %jd does not exist\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Error creating group `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Account creation failed: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Error creating %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "User %s could not be deleted: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s did not have a gid number.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "No group with GID %jd exists, not removing.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Group with GID %jd did not have a group name.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Group %s could not be deleted: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "error removing home directory for user" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Failed to set password for user %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "User %s could not be locked: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "User %s could not be unlocked: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "User %s could not be modified: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Group %s could not be modified: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "No old home directory for %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "No new home directory for %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Error moving %s to %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "could not open configuration file `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "could not stat configuration file `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "configuration file `%s' is too large" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "could not read configuration file `%s': %s" #: lib/error.c:62 msgid "success" msgstr "success" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "module disabled by configuration" #: lib/error.c:66 msgid "generic error" msgstr "generic error" #: lib/error.c:68 msgid "not enough privileges" msgstr "not enough privileges" #: lib/error.c:70 msgid "access denied" msgstr "access denied" #: lib/error.c:72 msgid "bad user/group name" msgstr "bad user/group name" #: lib/error.c:74 msgid "bad user/group id" msgstr "bad user/group id" #: lib/error.c:76 msgid "user/group name in use" msgstr "user/group name in use" #: lib/error.c:78 msgid "user/group id in use" msgstr "user/group id in use" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "error manipulating terminal attributes" #: lib/error.c:82 msgid "error opening file" msgstr "error opening file" #: lib/error.c:84 msgid "error locking file" msgstr "error locking file" #: lib/error.c:86 msgid "error statting file" msgstr "error statting file" #: lib/error.c:88 msgid "error reading file" msgstr "error reading file" #: lib/error.c:90 msgid "error writing to file" msgstr "error writing to file" #: lib/error.c:92 msgid "data not found in file" msgstr "data not found in file" #: lib/error.c:94 msgid "internal initialization error" msgstr "internal initialization error" #: lib/error.c:96 msgid "error loading module" msgstr "error loading module" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "error resolving symbol in module" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "library/module version mismatch" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "unlocking would make the password field empty" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "unknown error" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "no initialization function %s in `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "module version mismatch in `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "module `%s' does not define `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "error reading terminal attributes" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "error setting terminal attributes" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "error reading from terminal" #: lib/user.c:218 msgid "name is not set" msgstr "name is not set" #: lib/user.c:223 msgid "name is too short" msgstr "name is too short" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "name is too long (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "name contains non-ASCII characters" #: lib/user.c:242 msgid "name contains control characters" msgstr "name contains control characters" #: lib/user.c:249 msgid "name contains whitespace" msgstr "name contains whitespace" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "name starts with a hyphen" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "name contains invalid char `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "user %s has no UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "group %s has no GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "user %jd has no name" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "group %jd has no name" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "user has neither a name nor an UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "group has neither a name nor a GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Invalid default value of field %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "error locking file: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "couldn't get security context of `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "couldn't set default security context to `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "couldn't open `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "couldn't stat `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "error creating `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "backup file `%s' exists and is not a regular file" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Error changing owner of `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Error reading `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Error writing `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "backup file size mismatch" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "couldn't read from `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "entry already present in file" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "couldn't write to `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "entity object has no %s attribute" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "error encrypting password" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "not executing with superuser privileges" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "no shadow file present -- disabling" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "error connecting to the kadm5 server for service `%s' in realm `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "error initializing kerberos library" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "error parsing user name `%s' for kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "entity structure has no %s or %s attributes" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entity has no %s or %s attributes" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entity was created with no %s or %s attributes" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "error reading information for `%s' from kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entity has no %s attribute" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "error setting password for `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos Password for Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "error initializing ldap library" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "could not set LDAP protocol to version %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "could not negotiate TLS with LDAP server" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "could not bind to LDAP server" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "could not bind to LDAP server, first attempt as `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "user object had no %s attribute" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "user object was created with no `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "error creating a LDAP directory entry: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "error modifying LDAP directory entry: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "error renaming LDAP directory entry: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "object had no %s attribute" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "error removing LDAP directory entry: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "object has no %s attribute" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "no such object in LDAP directory" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "no `%s' attribute found" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "error setting password in LDAP directory for %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP Server Name" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind Password" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL User" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL Authorization User" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL error creating user: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL error removing user: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "error initializing Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "error creating home directory for user" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "error removing home directory for user" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "error moving home directory for user" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Error initializing %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Invalid ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Searching for group with ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Searching for group named %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Searching for user with ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Searching for user named %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Entry not found.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Prompts succeeded.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Prompts failed.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Default user object classes:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Default user attribute names:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Getting default user attributes:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Copying user structure:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s did not have a home directory.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Error removing %s: %s.\n" libuser-0.60~dfsg/po/kn.po0000644000175000017500000014107412226342567015500 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # shanky , 2012 # shankar , 2007, 2008, 2009 # shanky , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/fedora/language/" "kn/)\n" "Language: kn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "ಸವಲತ್ತುಗಳನ್ನು ತ್ಯಜಿಸುವಲ್ಲಿ ದೋಷ.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "ಆಂತರಿಕ ದೋಷ.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s ಕ್ಕೆ %s ನ ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲು ಅನುಮತಿ ಇಲ್ಲ\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "ಅಜ್ಞಾತ ಬಳಕೆದಾರ ಸನ್ನಿವೇಶ" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd ಗೆ ಡೀಫಾಲ್ಟ್‍ ಸನ್ನಿವೇಶವನ್ನು ಸಿದ್ಧಪಡಿಸಲಾಗಿಲ್ಲ\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲ್ಲಿ ದೋಷ.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s ಗಾಗಿ ದೃಢೀಕರಣವು ವಿಫಲಗೊಂಡಿದೆ.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "ಆಂತರಿಕ PAM ದೋಷ `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "ಅಜ್ಞಾತ ಬಳಕೆದಾರನನ್ನು ದೃಢೀಕರಿಸಲಾಗಿದೆ.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "ಬಳಕೆದಾರರು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ಆಯ್ಕೆ...] ಬಳಕೆದಾರ" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "ಆರ್ಗ್ಯುಮೆಂಟ್‍ಗಳನ್ನು ವಿವರಿಸುವಲ್ಲಿ ದೋಷ: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "ಯಾವುದೆ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "ಬಳಕೆದಾರ %s ನು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "ಖಾತೆಯು ಲಾಕ್ ಆಗಿದೆ.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "ಖಾತೆಯು ಲಾಕ್ ಆಗಿಲ್ಲ.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "ಕನಿಷ್ಟ:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "ಗರಿಷ್ಟ:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "ಎಚ್ಚರಿಕೆ:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "ನಿಷ್ಕ್ರಿಯ:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "ಎಂದೂ ಅಲ್ಲ" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "ಕಡೆಯ ಬದಲಾವಣೆ:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "ಗುಪ್ತಪದದ ಕಾಲಾವಧಿ ಮುಗಿದು ಹೋಗುತ್ತದೆ:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "ಗುಪ್ತಪದವು ನಿಷ್ಕ್ರಿಯವಾಗಿದೆ:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "ಖಾತೆಯ ಕಾಲಾವಧಿ ಮುಗಿದು ಹೋಗುತ್ತದೆ:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s ನ ಕಾಲ ತೀರುತ್ತಿರುವ ಮಾಹಿತಿಯನ್ನು ಮಾರ್ಪಡಿಸುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ಆಯ್ಕೆ...] [ಬಳಕೆದಾರ]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "ಯಾವುದೆ ಬಳಕೆದಾರ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ, uid %d ಗೆ ಯಾವುದೆ ಹೆಸರಿಲ್ಲ.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s ಗಾಗಿನ ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗುತ್ತಿದೆ.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "ಸಂಪೂರ್ಣ ಹೆಸರು" #: apps/lchfn.c:146 msgid "Surname" msgstr "ಅಡ್ಡಹೆಸರು" #: apps/lchfn.c:157 msgid "Given Name" msgstr "ಕೊಡಲಾದ ಹೆಸರು" #: apps/lchfn.c:167 msgid "Office" msgstr "ಕಛೇರಿ" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "ಕಛೇರಿ ದೂರವಾಣಿ ಸಂಖ್ಯೆ" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "ಮನೆಯ ದೂರವಾಣಿ ಸಂಖ್ಯೆ" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ಈ-ಮೈಲ್ ವಿಳಾಸ" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿಲ್ಲ: ಆದಾನ ದೋಷ.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿಲ್ಲ: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s ಗಾಗಿ ಶೆಲ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗುತ್ತಿದೆ.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "ಹೊಸ ಶೆಲ್" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "ಶೆಲ್ ಬದಲಾಗಿಲ್ಲ: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "ಶೆಲ್ ಬದಲಾಗಿದೆ.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ಆಯ್ಕೆ...] ಸಮೂಹ" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "ಯಾವುದೆ ಸಮೂಹದ ಹೆಸರು ನಿಗದಿತಗೊಂಡಿಲ್ಲ.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ಅಮಾನ್ಯ ಸಮೂಹ ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "ಸಮೂಹದ ರಚನೆ ವಿಫಲಗೊಂಡಿದೆ: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "ಸಮೂಹ %s ವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "ಸಮೂಹ %s ವನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L ಹಾಗೂ -U ಎರಡೂ ಸೂಚಿತಗೊಂಡಿದೆ.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "ಸಮೂಹ %s ಕ್ಕೆ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "ಸಮೂಹ %s ವನ್ನು ಲಾಕ್ ಮಾಡಲಾಗಿಲ್ಲ: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "ಸಮೂಹ %s ವನ್ನು ಅನ್-ಲಾಕ್ ಮಾಡಲಾಗಿಲ್ಲ: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "ಸಮೂಹ %s ವನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s ಅನ್ನು ನೋಡುವಾಗ ದೋಷ: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "ಯಾವುದೆ ಸಮೂಹದ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ, %s ಅನ್ನು ಬಳಸಲಾಗುತ್ತ್ತಿದೆ.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "ಯಾವುದೆ ಸಮೂಹದ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ, gid %d ಗೆ ಯಾವುದೆ ಹೆಸರಿಲ್ಲ.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "ಯಾವುದೆ ಬಳಕೆದಾರರ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ, %s ಅನ್ನು ಬಳಸಲಾಗುತ್ತ್ತಿದೆ.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ಆಯ್ಕೆ...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' ಅನ್ನು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "`%s' ಗಾಗಿ ಖಾತೆಯನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ: ಸಾಲು ಸಮರ್ಪಕವಾಗಿ ಫಾರ್ಮಾಟ್ ಆಗಿಲ್ಲ.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ಅಮಾನ್ಯ ಬಳಕೆದಾರ ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 ಯೊಂದಿಗೆ ಖಾತೆಯನ್ನು ಸೃಜಿಸಲು ನಿರಾಕರಿಸುತ್ತಿದೆ.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' ಗಾಗಿ GID %jd ಯೊಂದಿಗೆ ಸಮೂಹವನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಅಪಾಯಕಾರಿ ನೆಲೆ ಕಡತಕೋಶ `%s' ಅನ್ನು %s ಗಾಗಿ ಬಳಸಲು " "ನಿರಾಕರಿಸಲಾಗುತ್ತಿದೆ\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s ಗಾಗಿ ನೆಲೆ ಕಡತಕೋಶವನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s ಗೆ ಆರಂಭಿಕ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s ಗಾಗಿ ಬಳಕೆದಾರ ಖಾತೆಯನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s ಗಾಗಿ ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸಲಾಗುತ್ತಿದೆ.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "ಹೊಸ ಗುಪ್ತಪದ" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "ಹೊಸ ಗುಪ್ತಪದ (ಖಚಿತಪಡಿಸಲಾದ)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "ಗುಪ್ತಪದಗಳು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ್ಲ, ಪುನಃ ಪ್ರಯತ್ನಿಸಿ.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "ಗುಪ್ತಪದದ ಬದಲಾವಣೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "%d ಎಂಬ ಕಡತ ವಿವರಣೆಗಾರನಿಂದ ಓದುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s ಬಳಕೆದಾರನಿಗೆ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s ಸಮೂಹಕ್ಕೆ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "ಗುಪ್ತಪದ ಬದಲಾಯಿಸಲ್ಪಟ್ಟಿದೆ.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "ಸಮೂಹ %jd ವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "ಸಮೂಹ`%s' ವನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "ಖಾತೆಯನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಉಂಟಾಗಿದೆ: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s ಅನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಉಂಟಾಗಿದೆ: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "ಬಳಕೆದಾರ %s ನನ್ನು ಅಳಿಸಿಹಾಕಲಾಗಲಿಲ್ಲ: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s ವು ಒಂದು gid ಸಂಖ್ಯೆಯನ್ನು ಹೊಂದಿಲ್ಲ.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd ಹೊಂದಿರುವ ಒಂದು ಸಮೂಹ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ, ತೆಗೆಯಲಾಗುತ್ತಿಲ್ಲ.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd ಹೊಂದಿರುವ ಸಮೂಹಕ್ಕೆ ಒಂದು ಸಮೂಹದ ಹೆಸರನ್ನು ಹೊಂದಿಲ್ಲ.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "ಸಮೂಹ %s ಅನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ಬಳಕೆದಾರರಿಗಾಗಿ ನೆಲೆ ಕಡತಕೋಶವನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "ಬಳಕೆದಾರ %s ನಿಗೆ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "ಬಳಕೆದಾರ %s ನನ್ನು ಲಾಕ್ ಮಾಡಲಾಗಿಲ್ಲ: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "ಬಳಕೆದಾರ %s ನನ್ನು ಅನ್-ಲಾಕ್ ಮಾಡಲಾಗಿಲ್ಲ: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "ಎಚ್ಚರಿಕೆ: ID %jd ಯನ್ನು ಹೊಂದಿರುವ ಸಮೂಹವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "ಬಳಕೆದಾರ %s ನನ್ನು ಮಾರ್ಪಾಡು ಮಾಡಲಾಗಿಲ್ಲ: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "ಸಮೂಹ %s ವನ್ನು ಮಾರ್ಪಾಡು ಮಾಡಲಾಗಿಲ್ಲ: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s ಗೆ ಹಳೆಯ ನೆಲೆ ಕಡತಕೋಶವಿಲ್ಲ.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s ಗೆ ಹೊಸ ನೆಲೆ ಕಡತಕೋಶವಿಲ್ಲ.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s ಅನ್ನು %s ಗೆ ತೆಗೆಯುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "ಸಂರಚನಾ ಕಡತ `%s' ವನ್ನು ತೆಗೆಯುವಲ್ಲಿ ದೋಷ ಎದುರಾಗಿದೆ: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "ಸಂರಚನಾ ಕಡತ `%s' ವನ್ನು ಆರಂಭಿಸಲಾಗಿಲ್ಲ: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "ಸಂರಚನಾ ಕಡತ `%s' ವು ಬಹಳ ದೊಡ್ಡದಾಗಿದೆ" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "ಸಂರಚನಾ ಕಡತ `%s' ವನ್ನು ಓದಲಾಗಿಲ್ಲ: %s" #: lib/error.c:62 msgid "success" msgstr "ಯಶಸ್ವಿಯಾಗಿದೆ" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "ಸಂರಚನೆಯಿಂದ ಘಟಕವು ಅಶಕ್ತಗೊಂಡಿದೆ" #: lib/error.c:66 msgid "generic error" msgstr "ಸಾಮಾನ್ಯ ದೋಷ" #: lib/error.c:68 msgid "not enough privileges" msgstr "ಸಾಕಷ್ಟು ಸವಲತ್ತುಗಳಿಲ್ಲ" #: lib/error.c:70 msgid "access denied" msgstr "ನಿಲುಕಣೆಯನ್ನು ನಿರಾಕರಿಸಲಾಗಿದೆ" #: lib/error.c:72 msgid "bad user/group name" msgstr "ಕೆಟ್ಟ ಬಳಕೆದಾರನ/ಸಮೂಹದ ಹೆಸರು" #: lib/error.c:74 msgid "bad user/group id" msgstr "ಕೆಟ್ಟ ಬಳಕೆದಾರನ/ಸಮೂಹದ id" #: lib/error.c:76 msgid "user/group name in use" msgstr "ಬಳಸಲಾಗುತ್ತಿರುವ ಬಳಕೆದಾರನ/ಸಮೂಹದ ಹೆಸರು" #: lib/error.c:78 msgid "user/group id in use" msgstr "ಬಳಸಲಾಗುತ್ತಿರುವ ಬಳಕೆದಾರನ/ಸಮೂಹದ id" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "ಟರ್ಮಿನಲ್ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಮ್ಯಾನಿಪುಲೇಟ್ ಮಾಡುವಲ್ಲಿ ದೋಷ" #: lib/error.c:82 msgid "error opening file" msgstr "ಕಡತವನ್ನು ತೆಗೆಯುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: lib/error.c:84 msgid "error locking file" msgstr "ಕಡತವನ್ನು ಲಾಕ್ ಮಾಡುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: lib/error.c:86 msgid "error statting file" msgstr "ಕಡತವನ್ನು statting ಮಾಡುವಲ್ಲಿ ದೋಷ" #: lib/error.c:88 msgid "error reading file" msgstr "ಕಡತವನ್ನು ಓದುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: lib/error.c:90 msgid "error writing to file" msgstr "ಕಡತಕ್ಕೆ ಬರೆಯುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: lib/error.c:92 msgid "data not found in file" msgstr "ಕಡತದಲ್ಲಿ ದತ್ತಾಂಶವು ಕಂಡುಬಂದಿಲ್ಲ" #: lib/error.c:94 msgid "internal initialization error" msgstr "ಆಂತರಿಕ ಆರಂಭಿಕ ದೋಷ ಉಂಟಾಗಿದೆ" #: lib/error.c:96 msgid "error loading module" msgstr "ಘಟಕವನ್ನು ಲೋಡ್ ಮಾಡುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "ಘಟಕದಲ್ಲಿ ಸಂಕೇತವನ್ನು ಪರಿಹರಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "ಲೈಬ್ರರಿ/ಘಟಕದ ಆವೃತ್ತಿಯು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "ಅನ್-ಲಾಕ್ ಮಾಡುವುದರಿಂದ ಗುಪ್ತಪದ ಜಾಗವು ಖಾಲಿ ಉಳಿಯುತ್ತದೆ" #: lib/error.c:105 msgid "invalid attribute value" msgstr "ಅಮಾನ್ಯವಾದ ಗುಣವಿಶೇಷ ಮೌಲ್ಯ" #: lib/error.c:107 msgid "invalid module combination" msgstr "ಅಮಾನ್ಯವಾದ ಮಾಡ್ಯೂಲ್ ಸಂಯೋಜನೆ" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "ಅಜ್ಞಾತ ದೋಷ" #: lib/misc.c:240 msgid "invalid number" msgstr "ಅಮಾನ್ಯ ಸಂಖ್ಯೆ" #: lib/misc.c:254 msgid "invalid ID" msgstr "ಅಮಾನ್ಯ ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "ಯಾವುದೆ ಆರಂಭಿಕ ಕ್ರಿಯೆ %s ಯು `%s' ನಲ್ಲಿಲ್ಲ" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' ನಲ್ಲಿ ಘಟಕ ಆವೃತ್ತಿಯು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' ಘಟಕವು %s' ಅನ್ನು ವಿವರಿಸುವುದಿಲ್ಲ" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "ಟರ್ಮಿನಲ್ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಓದುವಾಗ ದೋಷ" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "ಟರ್ಮಿನಲ್ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಹೊಂದಿಸುವಾಗ ದೋಷ" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "ಟರ್ಮಿನಲ್‍ನಿಂದ ಓದುವಲ್ಲಿ ದೋಷ" #: lib/user.c:218 msgid "name is not set" msgstr "ಯಾವುದೇ ಹೆಸರು ಹೊಂದಿಸಿಲ್ಲ" #: lib/user.c:223 msgid "name is too short" msgstr "ಹೆಸರು ಬಹಳ ಚಿಕ್ಕದಾಗಿದೆ" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "ಹೆಸರು ಬಹಳ ಉದ್ದವಾಗಿದೆ (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "ಹೆಸರು ASCII-ಅಲ್ಲದ ಅಕ್ಷರಗಳನ್ನು ಒಳಗೊಂಡಿದೆ" #: lib/user.c:242 msgid "name contains control characters" msgstr "ಹೆಸರು ನಿಯಂತ್ರಣ ಅಕ್ಷರಗಳನ್ನು ಒಳಗೊಂಡಿದೆ" #: lib/user.c:249 msgid "name contains whitespace" msgstr "ಹೆಸರು ಖಾಲಿ ಜಾಗಗಳನ್ನು ಒಳಗೊಂಡಿದೆ" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "ಹೆಸರು ಅಡ್ಡಗೆರೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "ಹೆಸರಿನಲ್ಲಿ ಅಮಾನ್ಯ ಅಕ್ಷರವಾದ`%c' ಇದೆ" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "ಬಳಕೆದಾರ %s ವು UID ಅನ್ನು ಹೊಂದಿಲ್ಲ" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "ಸಮೂಹ %s ವು GID ಯನ್ನು ಹೊಂದಿಲ್ಲ" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "ಬಳಕೆದಾರ %jd ನು ಹೆಸರನ್ನು ಹೊಂದಿಲ್ಲ" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "ಸಮೂಹ %jd ವು ಹೆಸರನ್ನು ಹೊಂದಿಲ್ಲ" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "ಬಳಕೆದಾರ ಒಂದು ಹೆಸರು ಅಥವ ಒಂದು UID ಅನ್ನು ಹೊಂದಿಲ್ಲ" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "ಸಮೂಹವು ಒಂದು ಹೆಸರು ಅಥವ ಒಂದು GID ಅನ್ನು ಹೊಂದಿಲ್ಲ" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಅಪಾಯಕಾರಿ ನೆಲೆ ಕಡತಕೋಶ `%s' ಅನ್ನು ಬಳಸಲು ನಿರಾಕರಿಸಲಾಗುತ್ತಿದೆ" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s ಕ್ಷೇತ್ರದ ಡೀಫಾಲ್ಟ್‍ ಮೌಲ್ಯವು ಅಮಾನ್ಯವಾಗಿದೆ: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ಕಡತವನ್ನು ಲಾಕ್ ಮಾಡುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "ಡೀಫಾಲ್ಟ್‍ ಸುರಕ್ಷತಾ ಸನ್ನಿವೇಶವನ್ನು ಪಡೆಯಲಾಗಲಿಲ್ಲ: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' ನ ಡೀಫಾಲ್ಟ್‍ ಸುರಕ್ಷತಾ ಸನ್ನಿವೇಶವನ್ನು ಪಡೆಯಲಾಗಲಿಲ್ಲ:: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "ಡೀಫಾಲ್ಟ್‍ ಸುರಕ್ಷತಾ ಸನ್ನಿವೇಶವನ್ನು `%s' ಕ್ಕೆ ಹೊಂದಿಸಲಾಗಲಿಲ್ಲ: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' ಕ್ಕೆ ಸುರಕ್ಷತಾ ಸನ್ನಿವೇಶವನ್ನು ನಿರ್ಧರಿಸಲಾಗಲಿಲ್ಲ: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' ಅನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' ಅನ್ನು stat ಮಾಡಲಾಗಲಿಲ್ಲ: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' ಅನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "ಬ್ಯಾಕ್ಅಪ್ ಕಡತ `%s' ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಹಾಗು ಅದು ಸಾಮಾನ್ಯ ಕಡತವಾಗಿಲ್ಲ" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' ನ ಮಾಲಿಕನನ್ನು ಬದಲಾಯಿಸುವಲ್ಲಿ ದೋಷ: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s' ನ ಕ್ರಮವನ್ನು ಬದಲಾಯಿಸುವಲ್ಲಿ ದೋಷ: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' ಅನ್ನು ಓದುವಲ್ಲಿ ದೋಷ: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' ಗೆ ಬರೆಯುವಲ್ಲಿ ದೋಷ: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "ಬ್ಯಾಕ್ಅಪ್ ಕಡತದ ಗಾತ್ರವು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s ಮೌಲ್ಯ `%s': `:' ಕ್ಕೆ ಅನುಮತಿ ಇಲ್ಲ" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' ನಿಂದ ಓದಲಾಗಿಲ್ಲ: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "ನಮೂದು ಈಗಾಗಲೆ ಕಡತದಲ್ಲಿದೆ" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s' ಗೆ ಬರೆಯಲಾಗಿಲ್ಲ: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "ನಮೂದು ಆಬ್ಜೆಕ್ಟ್‍ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲ" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "ಇದರೊಂದಿಗೆ ಘರ್ಷಣೆಗೆ ಕಾರಣವಾಗುವ ಹೆಸರಿನ ಒಂದು ನಮೂದು ಈಗಾಗಲೆ ಕಡತದಲ್ಲಿದೆ" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' ಗುಪ್ತಪದವನ್ನು ಗೂಢಲಿಪೀಕರಿಸುವುದಕ್ಕೆ ಬೆಂಬಲವಿಲ್ಲ" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "ಗುಪ್ತಪದವನ್ನು ಗೂಢಲಿಪೀಕರಿಸುವಲ್ಲಿ ದೋಷ" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' ಹಾಗು `%s' ಮಾಡ್ಯೂಲ್‌ಗಳನ್ನು ಸಂಯೋಜಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "ಮೂಲಬಳಕೆದಾರನ ಸವಲತ್ತುಗಳೊಂದಿಗೆ ಕಾರ್ಯಗತಗೊಳ್ಳುತ್ತಿಲ್ಲ" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "ಛಾಯಾ ಕಡತವು ಇಲ್ಲ --ಅಶಕ್ತಗೊಳಿಸಲಾಗುತ್ತಿದೆ" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "`%s' ಸೇವೆಗಾಗಿ `%s' ಕ್ಷೇತ್ರದಲ್ಲಿ kadm5 ಪರಿಚಾರಕಕ್ಕೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: " "%s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "ಕರ್ಬರೋಸ್ ಲೈಬ್ರರಿಯನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "ಕರ್ಬರೋಸ್‍ಗಾಗಿ ಬಳಕೆದಾರ ಹೆಸರು `%s' ಅನ್ನು ವಿವರಿಸುವಲ್ಲಿ ದೋಷ" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "ನಮೂದು %s ಅಥವ %s ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಹೊಂದಿಲ್ಲ" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "ನಮೂದು %s ಅಥವ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲ" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "ನಮೂದು %s ಅಥವ %s ವೈಶಿಷ್ಟ್ಯಗಳಿಲ್ಲದೆ ನಿರ್ಮಿಸಲ್ಪಟ್ಟಿದೆ" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "`%s' ಗಾಗಿ ಕರ್ಬರೋಸ್‍ನಿಂದ ಮಾಹಿತಿಯನ್ನು ಓದುವಲ್ಲಿ ದೋಷ" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "ನಮೂದು %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲ" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' ಗಾಗಿ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ದೋಷ" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "ಕರ್ಬರೋಸ್ ಕ್ಷೇತ್ರ(Kerberos Realm)" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "ಕರ್ಬರೋಸ್ ನಿರ್ವಹಣಾ ಪ್ರಮುಖ" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "ನಿರ್ವಹಣಾ ಪ್ರಮುಖನಿಗಾಗಿ ಕರ್ಬರೋಸ್ ಗುಪ್ತಪದ" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap ಲೈಬ್ರರಿಯನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP ಪ್ರೋಟೋಕಾಲ್ ಅನ್ನು ಆವೃತ್ತಿ %d ಗೆ ಹೊಂದಿಸಲಾಗಿಲ್ಲ" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "TLS ಅನ್ನು LDAP ಪರಿಚಾರಕದೊಂದಿಗೆ ವ್ಯವಹರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP ಪರಿಚಾರಕಕ್ಕೆ ಬೈಂಡ್ ಮಾಡಲಾಗಿಲ್ಲ" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP ಪರಿಚಾರಕಕ್ಕೆ ಬೈಂಡ್ ಮಾಡಲಾಗಿಲ್ಲ, ಪ್ರಥಮ ಪ್ರಯತ್ನ `%s' ಆಗಿತ್ತು: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "ಬಳಕೆದಾರ ಆಬ್ಜೆಕ್ಟ್‍ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲ" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "ಯಾವುದೆ `%s' ಇಲ್ಲದೆ ಬಳಕೆದಾರ ಆಬ್ಜೆಕ್ಟ್‍ ರಚಿಸಲ್ಪಟ್ಟಿದೆ" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "ಒಂದು LDAP ಕಡತಕೋಶ ನಮೂದನ್ನು ನಿರ್ಮಿಸುವಲ್ಲಿ ದೋಷ: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "ಒಂದು LDAP ಕಡತಕೋಶ ನಮೂದನ್ನು ಮಾರ್ಪಡಿಸುವಲ್ಲಿ ದೋಷ: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "ಒಂದು LDAP ಕಡತಕೋಶ ನಮೂದಿನ ಹೆಸರನ್ನು ಬದಲಾಯಿಸುವಲ್ಲಿ ದೋಷ: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "ಆಬ್ಜೆಕ್ಟ್‍ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿರಲಿಲ್ಲ" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "ಒಂದು LDAP ಕಡತಕೋಶ ನಮೂದನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ದೋಷ: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "ಆಬ್ಜೆಕ್ಟ್‍ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲ" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "ಬೆಂಬಲವಿರದ ಗುಪ್ತಪದ ಗೂಢಲಿಪೀಕರಣ ಸ್ಕೀಮ್" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP ಕಡತಕೋಶದಲ್ಲಿ ಯಾವುದೆ ಆಬ್ಜೆಕ್ಟ್‍ ಇಲ್ಲ" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "ಯಾವುದೆ `%s' ವೈಶಿಷ್ಟ್ಯವು ಕಂಡು ಬಂದಿಲ್ಲ" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s ಕ್ಕಾಗಿ LDAP ಕಡತಕೋಶದಲ್ಲಿ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ದೋಷ: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP ಪರಿಚಾರಕದ ಹೆಸರು" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP ಶೋಧನಾ ಮೂಲ DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP ಬೈಂಡ್ DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP ಬೈಂಡ್ ಗುಪ್ತಪದ" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL ಬಳಕೆದಾರ" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL ದೃಢೀಕರಣ ಬಳಕೆದಾರ" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "ಬಳಕೆದಾರನನ್ನು ಸೃಜಿಸುವಲ್ಲಿ Cyrus SASL ದೋಷ: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "ಬಳಕೆದಾರನನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ Cyrus SASL ದೋಷ: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ಬಳಕೆದಾರರಿಗಾಗಿ ನೆಲೆ ಕಡತಕೋಶವನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ಬಳಕೆದಾರರಿಗಾಗಿ ನೆಲೆ ಕಡತಕೋಶವನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ಬಳಕೆದಾರರಿಗಾಗಿ ನೆಲೆ ಕಡತಕೋಶವನ್ನು ಸ್ಥಳಾಂತರಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ಅಮಾನ್ಯ ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID %jd ಯನ್ನು ಹೊಂದಿದ ಸಮೂಹಕ್ಕಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s ಹೆಸರಿನ ಸಮೂಹಕ್ಕಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID %jd ಯನ್ನು ಹೊಂದಿದ ಬಳಕೆದಾರನಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s ಹೆಸರಿನ ಬಳಕೆದಾರನಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "ನಮೂದು ಕಂಡು ಬಂದಿಲ್ಲ.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "ಪ್ರಾಂಪ್ಟ್‍ಗಳು ಯಶಸ್ವಿಯಾಗಿವೆ.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "ಪ್ರಾಂಪ್ಟ್‍ಗಳು ವಿಫಲಗೊಂಡಿವೆ.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "ಡೀಫಾಲ್ಟ್‍ ಆಬ್ಜೆಕ್ಟ್‍ ವರ್ಗಗಳು:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "ಡೀಫಾಲ್ಟ್‍ ಬಳಕೆದಾರ ವೈಶಿಷ್ಟ್ಯದ ಹೆಸರುಗಳು:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "ಡೀಫಾಲ್ಟ್‍ ಬಳಕೆದಾರ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಪಡೆಯಲಾಗುತ್ತಿದೆ:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "ಬಳಕೆದಾರ ರಚನೆಯನ್ನ್ನು ನಕಲಿಸಲಾಗುತ್ತಿದೆ:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s ವು ಒಂದು ನೆಲೆ ಕಡತ ಕೋಶವನ್ನು ಹೊಂದಿಲ್ಲ.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s ಅನ್ನು ತೆಗೆಯುವಲ್ಲಿ ದೋಷ: %s.\n" libuser-0.60~dfsg/po/es.gmo0000644000175000017500000006631412226342604015636 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<> >D>%?E?$X?}??"??B?-:@h@@#@%@(@A1A-OA!}A A A"ABTB)pB>B/B. C&8C,_CCCCC CD!6DXD)rD+D9DCE<FEE!E=E9EE8F#~F=F/FG G$3G8XGGG$G%G$G$!H$FH'kHH"H2HII%I6IRIbI.tIII#I4I4J HJUJ"kJJJJJ JJ K1KJKQKUK [KgKyKFK7K+L:BL&}L.LFL0M%KMqMyMMMM%MM@NEN[N-xNMNVNKOROnOOOOOO!OP'=P'eP(P+PPP Q,$Q QQ^QuQQ+QQHQ4"RWR"vR4R*R R7S$RSBwS,S6S5T;TT<T8T>U4EUzUUHU$U!VAV,wVKVAV-2W2`W!W0W$W= X IX&jX1X4X6X0/Y>`YRYY1 Z3 \J\e\6\(\4\9]5T]-]6]@]80^i^^0^^^!^!_>_W_n_%__)_._` 6`C`!_``*`3`j`(]a)a+a,a bbB(bBkbb+b'b/!c(Qc.zc.c%cc$dBd Ydzd!dd1d2e*7e"be.eue&*fQfDqf>f'fCg0ag3gg>gF$h*kh(hhh)h%$iBJi/i&i*ij/j&Ojvjjj%j1j k"k4kGk0Yk2kkkk$l15l,glll0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Spanish (http://www.transifex.com/projects/p/fedora/language/es/) Language: es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s no tenía un número gid. %s no existe %s no está autorizado para cambiar la información de finger de %s %s valor `%s': `:' no permitidoCuenta caduca: %s Creación de la cuenta fallida: %s. La cuenta está bloqueada. La cuenta no está bloqueada. Autentificación fallida para %s. Especificación de -L y -U No se pudo establecer el contexto predeterminado para /etc/passwd Cambiando la información de finger para %s. Cambiando contraseña para %s. Cambiando el shell por %s. Copia de la estructura de usuario: Error Cyrus SASL al crear usuario: %sError Cyrus SASL al eliminar usuario: %sDIASNombres de atributos de usuario predeterminados: Tipos de objetos de usuario predeterminados: Dirección de correo electrónicoNo se ha encontrado la entrada. Error cambiando modo de `%s': %sError cambiando dueño de `%s': %sError creando %s: %s. Error creando cuenta para `%s': la línea no está formateada de la forma correcta. Error en la creación del grupo `%s': %s Error en la creación de un grupo para `%s' con GID %jd: %s Error creando directorio principal para %s: %s Error al crear receptor de correo para %s: %s Error al crear receptor de correo: %s Error creando cuenta de usuario para %s: %s Error al iniciar %s: %s. Error inicializando %s: %s. Error inicializando PAM. Error al buscar %s: %s. Error al trasladar %s a %s: %s. Error en la lectura `%s': %s. Error al analizar argumentos %s. Error al eliminar %s: %s.Error al leer el archivo descriptor: %d. Error al eliminar el receptor de correo: %sError en la configuración de la contraseña para %s: %s Error en la configuración de la contraseña para el grupo %s: %s. Error al configurar la contraseña para el usuario %s: %s. Error al escribir `%s': %sImposible disminuir privilegios. Falló al modificar la información de caducidad para %s: %s Falló al establecer la contraseña para el grupo %s: %s Intento fallido de configurar la contraseña para el usuario %s: %s. Información de finger modificada. Información de finger sin modificaciones: error de entrada. Información de finger sin modificaciones: %s. Nombre completoinformación GECOSinformación GECOS del nuevo usuarioObtención de los atributos de usuario predeterminados: NombreEl grupo %jd no existe. No se pudo eliminar el grupo %s: %s No se pudo eliminar el grupo %s: %s. No se pudo bloquear el grupo %s: %s El grupo %s no se pudo modificar:%s El grupo %s no se pudo modificar:%s No se pudo desbloquear el grupo %s: %s El grupo %s no existe. Falló la creación del grupo: %s El grupo de GID %jd no tenía un nombre de grupo. Teléfono particularInactivo: %ld Inactivo: Nunca Error interno `%s' de PAM. Error interno. ID %s no válida Valor por defecto inválido en el campo %s: %sID de grupo %s no válida ID de usuario %s no válida Administrador principal de KerberosContraseña Kerberos para el administrador principalEntorno de KerberosDN Bind LDAPContraseña Bind LDAPUsuario de autorización SASL LDAPUsuario SASL LDAPDN base de búsqueda de LDAPNombre del servidor LDAPÚltimo cambio: %s Máximo: %ld Máximo: Ninguno Mínimo: %ld Debe cambiar la contraseña en el proximo ingresoNOMBRENUMNuncaNuevo shellNueva contraseñaNueva contraseña (confirmar)No se especificó ningún nombre de grupo, no hay nombre para gid %d. No se especificó ningún nombre de grupo, usando %s . No se especificó ningún nombre de grupo. No existe ningún grupo con %jd de GID, no se eliminará. Ningún directorio principal para %s. Ningún directorio principal antiguo para %s. No se especificó nombre de usuario, no hay un nombre para el uid %d. No se especificó nombre de usuario, usando %s. No se especificó nombre de usuario. OficinaTeléfono de oficinaRUTAContraseña caduca: %s Contraseña inactiva: %s Cancelado el cambio de contraseñas. Contraseña modificada. Las contraseñas no coinciden, por favor inténtelo nuevamente. Fallaron los avisos. Los avisos fueron exitosos. Rechazando la creación de cuenta con UID 0. Por defecto, se niega la utilización del directorio principal peligroso `%s'Por defecto, para %s se niega la utilización del directorio principal peligroso `%s' CADENABuscando grupo llamado %s. Buscando grupo con ID %jd. Buscando usuario llamado %s. Buscando usuario con ID %jd. Shell modificado. Shell sin modificar: %s ApellidoAutenticado usuario desconocido. Contexto de usuario desconocidoNo se pudo eliminar el usuario %s: %s. No se pudo bloquear el usuario %s: %s. No se pudo modificar el usuario %s: %s. No se pudo desbloquear el ususario %s: %s. El usuario %s no existe. No corresponde el usuario. Aviso: %ld Advertencia: El grupo con ID %jd no existe. [OPCIÓN...][OPCIÓN...] [usuario][OPCIÓN...] grupo[OPCIÓN...] usuario`:' no permitido en contraseñas encriptadaacceso denegadoExiste un fichero de copia de seguridad `%s' y no es un fichero habitualtamaño de archivo de copia de seguridad discordanteid de usuario/grupo incorrectoNombre de usuario/grupo incorrectomodificar el grupo para que posea el nombre definidomodifica el nombre de registro del usuarionombre general del nuevo usuarioel archivo de configuración `%s' es demasiado extenso.no se pudo vincular al servidor LDAPno se pudo vincular al servidor LDAP, primer intento como `%s': %sno se pudo negociar TLS con el servidor LDAPno se pudo abrir el archivo de configuración `%s': %sno se pudo leer el archivo de configuración `%s': %sno se pudo establecer un protocolo LDAP para la versión %dno se pudo hacer stat del archivo de configuración `%s': %sno se pudo determinar el contexto de seguridad `%s': %sno se pudo obtener el contexto de seguridad predeterminado: %sno se pudo obtener el contexto de seguridad `%s': %sno se pudo abrir `%s': %sno se pudo leer desde `%s': %sno se pudo configurar el contexto de seguridad predeterminado a `%s': %sno se pudo efectuar el stat `%s': %sno se pudo escribir en `%s': %screar un grupo de sistemacrea un usuario del sistemano se han encontrado los datos en el ficherofecha de la última modificación de la contraseña, en días, desde 1/1/70cantidad de días previos al vencimiento para advertir al usuariodirectorio con archivos para el nuevo usuariono genera un grupo con el mismo nombre del usuariono generar directorios personalesno genera un directorio personal para el usuariono generar almacenamientos de correosi es que posee uno, no elimina el grupo privado del usuario la entidad no tiene atributos %sla entidad no tiene atributos %s ni %sel objeto de entidad no tiene ningún atributo %sla estructura de entidad no tiene atributos %s ni %sla entidad no ha sido creada con atributos ni %s ni %sla entrada ya se ha hecho presente en el archivoya existe en el archivo una entrada con el nombre en conflictoerror al conectarse al servidor kadm5 para el servicio `%s' en el entorno `%s': %serror al crear `%s': %serror al crear una entrada al directorio LDAP: %serror al crear directorio principal para el usuarioerror al encriptar la contraseñaerror al inicializar Cyrus SASL: %serror al inicializar la biblioteca kerberoserror al inicializar la biblioteca ldaperror al cargar el móduloerror al cerrar el ficheroerror cerrando fichero: %serror al manipular atributos de terminalerror al modificar la entrada del directorio LDAP: %serror moviendo el directorio principal para el usuarioerror al abrir el ficheroerror en el análisis del nombre de usuario `%s' para kerberoserror al cerrar el ficheroerror al leer desde el terminalerror al leer la información para `%s' desde kerberoserror al leer los atributos del terminalerror al eliminar la entrada del directorio LDAP: %serror al eliminar el directorio principal para el usuarioerror al renombrar la entrada del directorio LDAP: %serror al determinar el símbolo en el móduloerror en la configuración de la contraseña para `%s'Error configurando contraseña en el directorio LDAP para %s: %serror en la configuración de los atributos del terminalerror al hacer stat del archivoerror al escribir el ficheroarchivo con registro de información del usuarioerror genéricogid para el nuevo gruponombre definido del nuevo usuarioel grupo %jd no tiene nombreel grupo %s no tiene GIDgrupo %s no encontradogrupo del nuevo usuarioel grupo no tiene un nombre ni un GIDdirectorio personaldirectorio personal para el nuevo usuarionúmero telefónico personal del nuevo usuarioerror interno de iniciaciónID inválidovalor de atributo inválidocombinación de módulos invalidanúmero inválidoversión de biblioteca/módulo discordantelista parámetros de envejecimiento para el usuariomuestra los miembros de un grupo determinado en lugar de las membresías al grupo del usuario identificadolista de administradores a ser agregadoslista de administradores a ser eliminadoslista de miembros del grupo a ser agregadoslista de miembros del grupo a ser eliminadosbloquear cuentabloquear grupocantidad máxima de días entre las modificaciones de contraseñascantidad mínima de días entre las modificaciones de contraseñasel módulo `%s' no define `%s'módulo deshabilitado por la configuraciónversión de módulo discordante en `%s'traslada los contenidos del directorio personalel nombre contiene caracteres de controlel nombre contiene un caracter inválido: `%c'el nombre contiene caracteres que no son ASCIIel nombre contiene espacios en blancono se ha establecido un nombrenombre demasiado largo·(%zu·>·%d)el nombre es muy cortoel nombre comienza con un guiónnueva contraseña cifradanueva contraseña de texto simpleAtributo `%s' no encontradoninguna función de inicialización de %s en `%s'Ningún archivo shadow presente -- deshabilitando.Objeto no encontrado en el directorio LDAPNo existen suficientes privilegiosNo se ejecuta con privilegios de superusuario.cantidad de días posteriores a la fecha de vencimiento de la contraseña para que la cuenta sea considerada inactivael objeto no tiene ningún atributo %sel objeto no tiene atributos %ssolo muestra información de membresía por nombre, y no por UID/GIDfecha de vencimiento de la contraseña, en días, desde 1/1/70contraseña de texto simple del usuariocontraseña en formato de texto simple para utilizarse con el grupocontraseña previamente hasheada para el usuariocontraseña pre-hasheada para utilizar con el gruposolicitar toda la informaciónlee una nueva contraseña cifrada desde el descriptor ofrecidolee una nueva contraseña de texto simple desde el descriptor ofrecidoelimina el directorio personal del usuarionúmero de habitación del nuevo usuariodefinir un GID para un grupodefine el UID para el usuariodefinir un nombre general para el usuariodefinir el nombre otorgado al usuariodefine contraseña de grupo en lugar de una contraseña de usuariodefinir número telefónico personal del usariodefine el GID primario para el usuariodefinir número de habitación del usuariodefine el shell para el usuariodefinir el apellido del usuariodefinir numero telefónico del usuarioshell para el nuevo usuarioéxitoapellido del nuevo usuarionúmero telefónico del nuevo usuariolos módulos `%s' y `%s' no pueden ser combinadosuid del nuevo usuarioerror desconocidodesbloquear cuentadesbloquear grupodesbloquear dejaría el campo contraseña vacíoesquema de encriptado de contraseñas no soportadoel usuario %jd no tiene nombreel usuario %s no tiene UIDusuario %s no encontradoel usuario no tiene nombre ni un UIDel objeto de usuario no tiene ningún atributo %sel objeto de usuario ha sido creado sin `%s'id de usuario/grupo usadoNombre de usuario/grupo usadolibuser-0.60~dfsg/po/mr.gmo0000644000175000017500000007165212226342604015646 0ustar tzafrirtzafrir<3\()H5[.*I$t""+Jhw </)N'x %>\'s*)(0.L({(.$ >!H ju"#!#$#Ae. %CXl% + < JX ^ hu-#,%D,c"  (#;_p'8@&!Eg " !* #L #p   + !!(!%9! _!1m!!!!$!"8""(["*"*")"*#0/#)`#)###1#$0$K$b$!}$!$+$.$%3:%Gn%%)%&%&!9&#[&&&&&&&('$.'S')f'''0'!''(&:('a( ((3(!( )4) J)X)n)")) )))** 0* Q*r* **"**++;+M+g+%+#+ ++',(,C,^,-f, ,-,&,, -"-B-$b----2p///j/?>0*~0N0'04 1IU1A1v1;X2A282]3lm3i3PD4S4415K85J55Wu6g657k7I!8Jk8G868v5999A9.(:uW:f:|4;;:7<7r<q<u==A>fT>?>>b?x?=?8?< @NI@N@O@Q7A=AMAGB]BtB0B'BBFC GC/hCDCiC+GDsD*DDD%D!E@E!_EEEEE"EDEmCFaFAGzUGGGQHjHsHYgI II3I3J;MJ-JeJ'K$EKTjKKqLA3M9uMPMQNRN.qNNUNDOKKOjO^PaPLP:5QpQ\Q Q)QR'5Rq]R"RRO~SKSHTHcTWTU[UOUONVVY"WS|WyWUJX/X?XY5Y?YLZ>UZHZ<ZX[ks[t[T\\J]s]g[^W^P_sl___B@`Q`U`s+a]aa;bxb;EcTccZVdpd"eeg/fWffZg>gN+h+zh.h'h=hG;ii;i/i"iq"j4jZjW$kE|k>k?l8Al9zl8l-l9m7Umbmum_fn0nn>wo>ooVo(Spt|p]p?Oq6qOqZrSqrsrp9s=0lK5sHw!JT6 V4)7\"M g(mP@$ ,eLo8 WhjC-n'i/F#ba|]Q{9[<1Iq%?kSRZ f ^:OvG_ucBDY>xzU;+NAEr.dy~`}*32Xpt&%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Marathi (http://www.transifex.com/projects/p/fedora/language/mr/) Language: mr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s ला gid क्रमांक नाही. %s अस्तित्वात नाही %s ची finger माहिती बदलवण्यास %s ला अधिकार नाही %s मुल्य `%s': `:' परवानगी नाहीखाती कालबाह्य: %s खाती निर्माण करण्यास अपयशी: %s. खाती कुलूपबंद. खाती कुलूपबंद नाही. %s करीता अधिप्रमाणन अयशस्वी. दोन्ही -L व -U दर्शविले आहे. /etc/passwd करता मूलभूत संदर्भ निश्चित करू शकत नाही %s करता finger माहिती बदलवा. %s करता पासवर्ड बदलवत आहे. %s कर्ता शेल बदलवत आहे. वापरकर्ता संरचनाची प्रत बनवित आहे: वापरकर्ता निर्माण करतेवेळी Cyrus SASL त्रुटी: %sवापरकर्ता काढुन टाकतेवेळी Cyrus SASL त्रुटी: %sमुलभूत वापरकर्ता गुणधर्म नाव: मुलभूत वापरकर्ता वस्तु श्रेणी: इमेल पत्तानोंदणी आढळली नाही. `%s' चा मालक बदलतेवेळी त्रूटी: %s%s निर्माण करतेवेळी त्रुटी: %s. `%s' करीता खाते बनवितेवेळी त्रुटी: ओळ अयोग्यरित्या संपादित केले. %s समुह निर्माण करतेवेळी त्रुटी: %s. `%s' करीता GID %jd सह समुह बनवितेवेळी त्रुटी: %s %s करीता मुख्य संचयीका निर्माण करतेवेळी त्रुटी: %s %s वापरकर्त्यास खाती बनवितेवेळी त्रुटी: %s %s प्रारंभ करतेवेळी त्रुटी: %s %s प्रारंभ करतेवेळी त्रुटी: %s. PAM प्रारंभ करतेवेळी त्रुटी. %s शोधतेवेळी त्रुटी: %s %s पासुन %s पर्यंत स्थानांतर करतेवेळी त्रुटी: %s. `%s' उघडतेवेळी त्रुटी: %s. बाबी वाचतेवेळी त्रुटी: %s. `%s' वाचतेवेळी चूक: %sफाइल डिस्क्रिप्टर %d पासून वाचतेवेळी त्रुटी. %s करीता प्रारंभी पासवर्ड निश्चित करा: %s %s समुहकरीता पासवर्ड निश्चित करतेवेळी त्रुटी: %s. %s वापरकर्त्यास पासवर्ड निश्चित करतेवेळी त्रुटी: %s. `%s' लिहीतेवेळी त्रुटी: %sहक्क वगळण्यास अपयशी. %s करता एजींग माहिती संपादित करू शकला नाही: %s %s समुहकर्ता पासवर्ड निश्चित करण्यास अपयशी: %s %s वापरकर्त्यास पासवर्ड निश्चित करण्यास अपयशी: %s. Finger माहिती बदलवण्यात आली. finger माहिती बदल्यागेली नाह: आदान त्रूटी. Finger माहिती बदलवली नाही: %s. पूर्ण नावमुलभूत वापरकर्त्याचे गुणधर्म मिळवा: दिलेले नावसमुह %jd अस्तित्वात नाही समुह %s काढू शकत नाही: %s %s समुह काढू शकला नाही: %s. %s समुह कुलूपबंद करू शकत नाही: %s %s समुह संपादित करू शकला नाही: %s समुह %s संपादित करू शकला नाही: %s. %s समुह कुलूपबंद करू शकला नाही: %s समुह %s अस्तित्वात नाही. समुह निर्माण करण्यास अपयशी: %s GID %jd सह समुहला समुह नाव नाही. घरचा फोननिषक्रिय: %ld आंतरीक PAM त्रूटी `%s'. आंतरीक त्रूटी. अवैध ID %s field %s ची अवैध मुलभूत संख्या: %sअवैध समुह ID %s अवैध वापरकर्ता ID %s कर्बेरोस ॲडमिन प्रिंसिपलप्रशासक प्रमुखाकरीता कर्बेरोस पासवर्डकर्बेरोस रिअल्मLDAP बाइंड DNLDAP बाइंड पासवर्डLDAP SASL अधिप्रमाणन वापरकर्ताLDAP SASL वापरकर्ताLDAP सर्च बेस DNLDAP सर्वर नावशेवटचा बदल: %s कमाल: %ld किमान: %ld कधीच नाहीनविन शेलनविन पासवर्डनविन पासवर्ड (निश्चित करा)समुह नाव दर्शविले नाही, gid %d करीता नाव नाही. %s वापरून, समुहाचे नाव व्याख्यित नाही. समुह नाव व्याख्यित नाही. GID %jd रहीत समुह अस्तित्वात नाही, काढुन टाकत नाही. %s करीता मुख्य संचयीका नाही. %s करता जुनी मुख्य संचयीका नाही. वापरकर्त्याचे नाव दर्शविले नाही, uid %d करीता नाव नाही. %s वापरुन, वापरकर्त्याचे नाव व्याख्यित नाही. वापरकर्त्याचे नाव दर्शविले नाही. ऑफिसऑफिस फोनपासवर्ड कालबाह्य: %s पासवर्ड निषक्रिय: %s पासवर्ड बदल रद्द केले. पासवर्ड बदलविले. पासवर्ड जुळत नाही, पुन्हा प्रयत्न करा. सुचना अयशस्वी. सुचना यशस्वी. UID 0 सह खाती निर्माण करण्यास नकार. पूर्वनिर्धारीतपणे होम डिरेक्ट्री `%s' चा वापर करण्यापासून नकारत आहेपूर्वनिर्धारीतपणे हानीकारक होम डिरेक्ट्री `%s' चा वापर, %s करीता, नकारात आहे %s नामांकीत समुह शोधत आहे. ID %jd रहीत समुह शोधत आहे. %s नामांकीत वापरकर्ता शोधत आहे. ID %jd रहीत वापरकर्त्यास शोधत आहे. शेल बदलवले. शेल बदलवले नाही: %s आडनावअपरिचित वापरकर्ता अधिप्रमाणित. अपरिचित वापरकर्ता संदर्भ%s वापरकर्ता काढू शकला नाही: %s. %s वापरकर्त्यास कुलूपबंद करू शकला नाही: %s. %s वापरकर्ता संपादित करू शकला नाही: %s. %s वापरकर्त्यास कुलूपबंदीतून सुटका करू शकला नाही: %s. %s वापरकर्ता अस्तित्वात नाही. वापरकर्ता जुळला नाही. सावधान: %ld सावधान: समुह ID %jd सह अस्तित्वात नाही. [OPTION...][OPTION...] [वापरकर्ता][OPTION...] समुह[OPTION...] वापरकर्ता`:' एन्क्रीप्ट पासवर्ड अंतर्गत परवानगी नाहीप्रवेश निषेधअगाऊ फाइल `%s' अस्तित्वात आहे व ती सर्वसाधारण फाइल नाहीप्रतिकृती फॉईल आकार जुळत नाहीवाईट वापरकर्ता/समुहाचे आयडीवाईट वापरकर्ता/समुहाचे नावसंरचना फाइल `%s' खूपच मोठी आहेLDAP सर्वरशी एकत्रीत राहु शकले नाहीLDAP सर्वरशी एकत्रीत राहु शकले नाही, पहिला प्रयत्न `%s' स्वरूपी: %sLDAP सर्वरशी TLS मध्यस्थी करू शकला नाहीसंरचना फाइल `%s' उघडू शकला नाही: %s`%s' संरचना फाइल वाचू शकला नाही: %s%d आवृत्ती करीता LDAP शिष्टाचार निश्चित करू शकले नाहीसंरचना फाइल `%s' सुरू करू शकला नाही: %sसंरचना फाइल `%1$s' उघडू शकला नाही: %2$sमुलभूत सुरक्षा संदर्भ प्राप्त करता आले नाही: %s`%s' चा सुरक्षा संदर्भ आढळला नाही: %s`%s' उघडू शकला नाही: %s`%s' पासुन वाचू शकले नाही: %s`%s' करता मुलभूत सुरक्षा संदर्भ निश्चित केला नाही: %s`%s' दर्शवू शकला नाही: %s`%s' करीता लिहु शकले नाही: %sफाइल मध्ये माहिती आढळली नाहीवस्तुकडे %s गुणधर्म नाहीवस्तु %s किंवा %s गुणधर्म नाहीवस्तू ला %s गुणधर्म नाहीवस्तु रचनेत %s किंवा %s गुणधर्म नाहीवस्तु %s किंवा %s गुणधर्म विना निर्मीत केलेफाइल मध्ये नोंदणी आधिपासुनच अस्तित्वात आहेफाइलमध्ये मतभेदीय नावाची नोंदणी आधिपासूनच अस्तित्वात आहेerror connecting to the `%s' मधील `%s' सेवा करीता kadm5 सर्वरशी जुळवणी करतेवेळी त्रुटी: %s`%s' निर्माण करतेवेळी त्रूटी: %sLDAP संचयीका नोंदणी निर्माण करतेवेळी त्रुटी: %sमुख्य संचयीका निर्माण करतेवेळी त्रुटीपासवर्ड कुटलिपी करतेवेळी त्रुटीCyrus SASL प्रारंभ करतेवेऴी त्रुटी: %sकेरबेरोस लायब्ररी प्रारंभ करतेवेळी त्रुटीldap लायब्ररी प्रारंभ करतेवेळी त्रुटीघटक दाखल करतेवेळी त्रूटीफाइल कुलूपबंद करतेवेळी त्रूटीफाइल कुलूपबंद करतेवेळी त्रूटी: %sटर्मिनलचे गुणधर्म संपादित करतेवेळी त्रूटीLDAP संचयीका संपादन करतेवेळी त्रुटी: %sवापरकर्त्यास मुख्य संचयीका स्थानांतर करतेवेळी त्रुटीफाइल उघडतेवेळी त्रूटीकेरबेरोस करीता वापरकर्ता `%s' वाचतेवेळी त्रुटीफाइल वाचतेवेळी त्रूटीटर्मिनल पासून वाचतेवेळी त्रूटीकर्बेरोस पासुन `%s' करीता माहिती वाचतेवेळी त्रुटीटर्मिनल गुणधर्म वाचतेवेळी त्रूटीLDAP संचयीका नोंदणी काढुन टाकतेवेळी त्रुटी: %sवापरकर्त्यास मुख्य संचयीका काढुन टाकतेवेळी त्रुटीLDAP संचयीका नोंदणी पुनःनामांकित करतेवेळी त्रुटी: %sघटकातील चिन्ह सुस्थीत करतेवेळी त्रूटी`%s' करीता पासवर्ड निश्चित करीत आहेLDAP डिरेक्ट्रीमध्ये %s करीता पासवर्ड निश्चित करतेवेळी त्रुटी: %sटर्मिनल गुणधर्म वाचतेवेळी त्रूटीत्रूटी दर्शविणारी फाइलफाइल मध्ये लिहीतेवेळी त्रूटीप्रजातीय त्रूटीसमुह %jd ला नाव नाहीसमुह %s ला GID नाहीसमुहास नाव किंवा GID नाहीआंतरीक प्रारंभीकरण त्रूटीअवैध IDअवैध गुणधर्माचे मुल्यअवैध घटकाचे संयोगअवैध क्रमांकलायब्ररी/घटकाच्या आवृत्तीत जुळणी होत नाही`%s' घटक `%s' ला ओळखत नाहीसंरचनाने घटकास अकार्यान्वीत केले`%s' मध्ये घटकाची आवृत्ती जुळत नाहीनावात कंट्रोल अक्षरं आहेतनावात अवैध अक्षर `%c' आहेतनावात विना-ASCII अक्षर आहेतनावात वाईटस्पेस आहेतनाव निश्चित केले नाहीनाव खूपच लांब आहे (%zu > %d)नाव खूपच छोटे आहेनाव हायफनने सुरू होते`%s' गुणधर्म आढळले नाही`%s' मध्ये %s प्रारंभीकरण कार्यक्रम नाहीशॅडो फाइल उपलब्ध नाही -- अकार्यान्वीत करत आहेLDAP डिरेक्ट्रीमध्ये वस्तु आढळले नाहीहवे थवडे हक्क नाहीअत्युतमवापरकर्ता हक्कासह कार्यान्वीत होत नाहीवस्तुकडे %s गुणधर्म नाहीवस्तुकडे %s गुणधर्म नाहीयश`%s' व `%s' विभागांना एकत्र करणे अशक्यअपरिचीत त्रूटीकुलूपबंद नाहीसे केल्यास पासवर्ड रिक्त होतेअसमर्थीत पासवर्ड एनक्रिप्शन योजना%jd वापरकर्त्यास नाव नाहीवापरकर्ता %s ला UID नाहीवापरकर्त्यास नाव किंवा UID नाहीवापरकर्ता वस्तुकडे %s गुणधर्म नाहीवापरकर्ता वस्तु `%s' विना निर्मितवापरणीत असलेले वापरकर्त्याचे/समुहाचे आयडीवापरणीत असलेले वापरकर्त्याचे/समुहाचे नावlibuser-0.60~dfsg/po/pt_BR.gmo0000644000175000017500000004776112226342604016242 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----//D/$#0H0!Z0|0000B0+61b1|1 1(1*1, 2+72c2w2#2)22@273.W3*3-333444N4m4!44'4*4+5-<5j5!5@535-6#I69m6,6 6*6 77&57'\7(7)7*7+8.8 G8*h88 8888+8979%T90z9999#9 ::;:Q: j: x:: : ::>:.:#';9K;*;,;>;1<&N< u<<<< <<(<='=!?=;a=D="=">%(>%N>t>> >#>!>*>,?-F?/t??? ?%? @@0@C@+Y@ @;@#@@ A03A,dANA3A=B?RB=BNBDC=dC=C!C"DJ%D2pD%D!D!D& E,4E3aE/EE6ELFiF.F-FF"F,G%JGpGGG'G0G-HFH8\HHH/H!H/I/CI1sI$II4I%J&EJlJJJJ JJ KK!:K\K0nKK&K+K%L)8L$bLLL LLL M6*M3aM)M!M/M!N3NSN1[NN+N/N"NO#1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/fedora/language/pt_BR/) Language: pt_BR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); %s não tem um número gid. %s não existe %s não está autorizado a alterar as informações do finger de %s %s de valor "%s": ":" não permitidoConta expira: %s A criação da conta falhou: %s. A conta está bloqueada. A conta não está bloqueada. Autenticação falhou para %s. Ambos -L e -U especificados. Não foi possível determinar o contexto padrão para /etc/passwd Alterando informações do finger para %s. Alterando senha para %s. Trocando shell para %s. Copiando estrutura do usuário: Erro do Cyrus SASL ao criar usuário: %sErro do Cyrus SASL ao remover usuário: %sNomes padrões dos atributos dos usuários: Classes padrões de objetos dos usuários: Endereço de e-mailEntrada não encontrada. Erro modificando o modo de `%s': %sErro ao mudar o proprietário de "%s": %sErro ao criar %s: %s. Erro ao criar conta para "%s": linha formatada inadequadamente. Erro ao criar o grupo "%s": %s Erro ao criar grupo para "%s" com GID %jd: %s Erro ao criar diretório home para %s: %s Erro ao criar conta de usuário para %s: %s. Erro ao inicializar %s: %s Erro ao inicializar %s: %s. Erro ao inicializar o PAM. Erro ao procurar %s: %s. Erro ao mover %s para %s: %s. Erro ao abrir "%s": %s. Erro ao analisar argumentos: %s. Erro ao ler "%s": %sErro ao ler o descritor de arquivo %d. Erro ao definir senha inicial para %s: %s Erro ao definir senha para o grupo %s: %s. Erro ao definir senha para o usuário %s: %s Erro ao escrever "%s": %sFalha ao abandonar privilégios. Falha ao modificar a informação de envelhecimento para %s: %s Não foi possível definir a senha do grupo %s: %s Falha ao definir a senha do usuário %s: %s. Informações do finger alteradas. Informações do finger não alteradas: erro de entrada. Informações do finger não alteradas: %s. Nome completoObtendo atributos padrões dos usuários: Nome fornecidoO grupo %jd não existe O grupo %s não pôde ser apagado: %s O grupo %s não pôde ser apagado: %s. O grupo %s não pôde ser bloqueado: %s O grupo %s não pôde ser modificado: %s O grupo %s não pôde ser modificado: %s. O grupo %s não pôde ser desbloqueado: %s O grupo %s não existe. Falha na criação do grupo: %s O grupo com o GID %jd não tinha um nome. Telefone residencialInativo: %ld Erro interno no PAM "%s". Erro interno. ID %s inválido Valor padrão inválido para o campo %s: %sID %s de grupo inválido ID de usuário %s inválido Administração Principal do KerberosSenha do Kerberos para administração principalDomínio KerberosDN de conexão LDAPSenha de conexão LDAPUsuário de autorização SASL LDAPUsuário SASL LDAPDN base para pesquisas LDAPNome do servidor LDAPÚltima alteração: %s Máximo: %ld Mínimo: %ld NuncaNovo shellNova senhaNova senha (confirmar)Nenhum nome de grupo especificado, nenhum nome para o gid %d. Nenhum nome de grupo especificado, usando %s. Nenhum nome de grupo especificado. Não existe um grupo com o GID %jd, não será removido. Não há um novo diretório home para %s. Não há um diretório home antigo para %s. Nenhum nome de usuário especificado, sem nome para o uid %d. Nenhum nome de usuário especificado, usando %s. Nenhum nome de usuário especificado. EscritórioTelefone comercialSenha expira: %s Senha inativa: %s Alteração de senha cancelada. Senha alterada. Senhas não coincidem, tente novamente. Prompts falharam. Prompts bem-sucedidos. Recusando criar conta com UID 0. Recusando a usar o diretório home perigoso %s' por padrãoRecusando a usar o diretório home perigoso %s' para %s por padrão Pesquisando por grupo de nome %s. Pesquisando por grupo com ID %jd. Pesquisando por usuário de nome %s. Pesquisando por usuário com ID %jd. Shell alterado. Shell não alterado: %s SobrenomeUsuário desconhecido autenticado. Contexto de usuário desconhecidoO usuário %s não pôde ser apagado: %s. O usuário %s não pôde ser bloqueado: %s. O usuário %s não pôde ser modificado: %s. O usuário %s não pôde ser desbloqueado: %s. O usuário %s não existe. Usuário incompatível. Aviso: %ld Aviso: O grupo de ID %jd não existe [OPÇÃO...][OPÇÃO...] [usuário][OPÇÃO...] grupo[OPÇÃO...] usuário":" não permitido em senhas criptografadasacesso negadoo arquivo de backup "%s" existe e não é um arquivo normalArquivo de backup difere no tamanhoid do usuário/grupo inválidonome do usuário/grupo inválidoo arquivo de configuração "%s" é muito grandenão foi possível conectar ao servidor LDAPnão foi possível conectar ao servidor LDAP, primeira tentativa como "%s": %snão foi possível negociar TLS com o servidor LDAPnão foi possível abrir o arquivo de configuração "%s": %snão foi possível acessar o arquivo de configuração "%s": %snão foi possível definir o protocolo LDAP para a versão %dnão foi possível obter as propriedades do arquivo de configuração "%s": %snão foi possível determinar o contexto de segurança para "%s": %snão foi possível obter o contexto padrão de segurança: %snão foi possível obter o contexto de segurança de "%s": %snão foi possível abrir "%s": %snão foi possível ler de "%s": %snão foi possível determinar o contexto padrão de segurança de "%s": %snão foi possível criar estatísticas de "%s": %snão foi possível gravar em "%s": %sdados não encontrados no arquivoa entidade não tem o atributo %sa entidade não tem atributos %s ou %so objeto da entidade não tem um atributo %sa estrutura da entidade não tem atributos %s ou %sa entidade foi criada sem os atributos %s ou %sentrada já presente no arquivoentrada com o nome conflitante já presente no arquivoerro ao conectar ao servidor kadm5 para o serviço "%s" no domínio "%s": %serro ao criar "%s": %serro ao criar a entrada do diretório LDAP: %serro ao criar diretório home para o usuárioerro ao criptografar a senhaerro ao inicializar Cyrus SASL: %serro ao inicializar a biblioteca do kerberoserro ao inicializar a biblioteca ldaperro ao carregar móduloerro ao bloquear arquivoerro ao bloquear arquivo: %serro ao manipular atributos do terminalerro ao modificar entrada de diretório LDAP: %serro ao mover diretório home para o usuárioerro ao abrir arquivoerro ao analisar o nome de usuário "%s" para o kerberoserro ao ler arquivoerro ao ler do terminalerro ao ler informações para "%s" do kerberoserro ao ler atributos do terminalerro ao apagar a entrada do diretório LDAP: %serro ao remover diretório home para o usuárioerro ao renomear a entrada do diretório LDAP: %serro ao resolver símbolo em móduloerro ao definir senha para "%s"erro ao definir senha no diretório LDAP para %s: %serro ao definir atributos do terminalerro ao criar estatísticas do arquivoerro ao gravar no arquivoerro genéricoo grupo %jd não possui um nomeo grupo %s não possui GIDo grupo não possui nome nem GIDerro interno de inicializaçãoID inválidovalor de atributo inválidocombinação de módulo inválidanúmero inválidoversões de biblioteca/módulo não compatíveiso módulo "%s" não define "%s"módulo desativado pela configuraçãoversão não compatível de módulo em "%s"o nome contém caracteres de controleo nome contém o caractere inválido "%c"o nome contém caracteres não ASCIIo nome contém espaçoo nome não está definidoo nome é muito longo (%zu > %d)o nome é muito curtoo nome inicia com um hífenatributo "%s" não encontradonão existe uma função de inicialização %s em "%s"arquivo shadow não está presente -- desabilitandoobjeto não encontrado no diretório LDAPnão há privilégios suficientesexecutando sem os privilégios de superusuárioo objeto não tinha o atributo %so objeto não tem o atributo %ssucessoos módulos `%s' e `%s' não podem ser combinadoserro desconhecidodesbloquear deixará o campo da senha vazioesquema de criptografia de senha não suportadoo usuário %jd não possui um nomeo usuário %s não possui UIDo usuário não possui nome nem UIDo objeto do usuário não tinha o atributo %so objeto do usuário foi criado sem "%s"id do usuário/grupo em usonome do usuário/grupo em usolibuser-0.60~dfsg/po/pl.po0000644000175000017500000011642512226342570015477 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Andrzej Olszewski , 2004 # Bartosz Sapijaszko , 2004 # Miloslav Trmač , 2011 # Piotr Drąg , 2011-2013 # Tom Berner , 2005 # Tom Berner , 2004 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Polish (http://www.transifex.com/projects/p/fedora/language/" "pl/)\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Próba odebrania uprawnień się nie powiodła.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Błąd wewnętrzny.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s nie jest upoważniony do zmiany informacji fingera o %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Nieznany kontekst użytkownika" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Nie można ustawić domyślnego kontekstu dla /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Błąd podczas inicjowania PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Uwierzytelnienie się nie powiodło dla %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Wewnętrzny błąd PAM \"%s\".\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Nieznany upoważniony użytkownik.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Użytkownik nie zgadza się.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "pyta o wszystkie informacje" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "wyświetla listę parametrów starzenia dla użytkownika" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "minimalna liczba dni między zmianami hasła" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "DNI" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "maksymalna liczba dni między zmianami hasła" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "data ostatniej zmiany hasła od 1 stycznia 1970" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "liczba dni po dacie wygaśnięcia hasła, po których konto zostanie uznane za " "nieaktywne" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "data wygaśnięcia hasła w dniach od 1 stycznia 1970" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "liczba dni przed wygaśnięciem, podczas których ostrzegać użytkownika" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPCJA...] użytkownik" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Błąd podczas przetwarzania parametrów: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Nie podano nazwy użytkownika.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Błąd podczas inicjowania %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Użytkownik %s nie istnieje.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Konto jest zablokowane.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Konto nie jest zablokowane.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimalnie:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maksymalnie:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Maksymalnie:\tBrak\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Ostrzeżenie:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Nieaktywne:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Nieaktywne:\tNigdy\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Należy zmienić hasło podczas następnego logowania" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nigdy" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Ostatnia zmiana:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Hasło wygasa:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Hasło nieaktywne:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Konto ważne do:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Wystąpił błąd podczas próby modyfikacji okresu ważności dla %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPCJA...] [użytkownik]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Nie podano nazwy użytkownika dla UID %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Zmienianie informacji fingera dla %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Imię i nazwisko" #: apps/lchfn.c:146 msgid "Surname" msgstr "Nazwisko" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Imię" #: apps/lchfn.c:167 msgid "Office" msgstr "Praca" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefon do pracy" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefon domowy" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Adres e-mail" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Informacje fingera nie zostały zmienione: błąd wejścia.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Informacje fingera zostały zmienione.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Informacje fingera nie zostały zmienione: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Zmienianie powłoki dla %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nowa powłoka" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Powłoka nie została zmieniona: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Powłoka została zmieniona.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "GID nowej grupy" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "LICZBA" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "tworzy grupę systemową" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPCJA...] grupa" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Nie podano nazwy grupy.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Nieprawidłowy identyfikator grupy %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Utworzenie grupy się nie powiodło: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Grupa %s nie istnieje.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Grupa %s nie może zostać usunięta: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "ustawia GID dla grupy" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "zmienia nazwę grupy na podaną" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NAZWA" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "hasło w zwykłym tekście do użycia z grupą" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "CIĄG" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "uprzednio wymieszane hasło do użycia z grupą" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "lista administratorów do dodania" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "lista administratorów do usunięcia" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "lista członków grupy do dodania" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "lista członków grupy do usunięcia" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "blokuje grupę" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "odblokowuje grupę" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Podano jednocześnie opcje -L i -U.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Ustawienie hasła dla grupy %s się nie powiodło: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Grupa %s nie może zostać zablokowana: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Grupa %s nie może zostać odblokowana: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Grupa %s nie może zostać zmodyfikowana: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Błąd podczas wyszukiwania %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "wyświetla listę członków nazwanej grupy zamiast członkostwa w grupie dla " "nazwanego użytkownika" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" "wyświetla listę tylko informacji o członkostwie według nazwy, bez UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nie podano nazwy grupy, używanie %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Nie podano nazwy grupy, brak nazwy dla GID %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nie podano nazwy użytkownika, używanie %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s nie istnieje\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "plik z wpisami informacji o użytkowniku" #: apps/lnewusers.c:47 msgid "PATH" msgstr "ŚCIEŻKA" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "bez tworzenia katalogów domowych" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "bez tworzenia kolejek poczty" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPCJA...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Błąd podczas otwierania \"%s\": %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Błąd podczas tworzenia konta dla \"%s\": wiersz jest niepoprawnie " "sformatowany.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Nieprawidłowy identyfikator użytkownika %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Nie można utworzyć konta o UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Błąd podczas tworzenie grupy dla \"%s\" z GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Odmawianie domyślnego użycia niebezpiecznego katalogu domowego \"%s\" dla " "%s\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Błąd podczas tworzenia katalogu domowego dla %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Błąd podczas tworzenia bufora poczty dla %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Błąd podczas ustawiania wstępnego hasła dla %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Błąd podczas tworzenia konta użytkownika dla %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "ustawia hasło grupy zamiast hasła użytkownika" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "nowe zwykłe hasło" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "nowe zaszyfrowane hasło" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "odczytuje nowe zwykłe hasło z podanego deskryptora" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "odczytuje nowe zaszyfrowane hasło z podanego deskryptora" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Zmienianie hasła dla %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nowe hasło" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nowe hasło (potwierdzenie)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Hasła nie pasują, proszę spróbować ponownie.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Zmiana hasła została anulowana.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Błąd podczas odczytywania z deskryptora pliku %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Błąd podczas ustawiania hasła użytkownika %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Błąd podczas ustawiania hasła grupie %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Hasło zostało zmienione.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "tworzy użytkownika systemowego" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "informacje GECOS dla nowego użytkownika" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "katalog domowy dla nowego użytkownika" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "katalog z plikami dla nowego użytkownika" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "powłoka dla nowego użytkownika" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "UID dla nowego użytkownika" #: apps/luseradd.c:69 msgid "group for new user" msgstr "grupa dla nowego użytkownika" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "bez tworzenia katalogu domowego dla nowego użytkownika" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "bez tworzenia grupy o tej samej nazwie co użytkownik" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "wspólna nazwa dla nowego użytkownika" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "imię dla nowego użytkownika" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "nazwisko dla nowego użytkownika" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "numer pokoju dla nowego użytkownika" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "numer telefonu dla nowego użytkownika" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "numer telefonu domowego dla nowego użytkownika" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Grupa %jd nie istnieje\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Błąd podczas tworzenia grupy \"%s\": %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Utworzenie konta się nie powiodło: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Błąd podczas tworzenia %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Błąd podczas tworzenia bufora poczty: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "bez usuwania prywatnej grupy użytkownika, jeśli użytkownik ją posiada" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "usuwa katalog domowy użytkownika" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Użytkownik %s nie może zostać usunięty: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s nie posiadał numeru GID.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Nie istnieje żadna grupa z GID %jd, nie zostanie usunięta.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Grupa z GID %jd nie posiada nazwy.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Grupa %s nie może zostać usunięta: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "błąd podczas usuwania katalogu domowego użytkownika" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Błąd podczas usuwania bufora poczty: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "informacje GECOS" #: apps/lusermod.c:60 msgid "home directory" msgstr "katalog domowy" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "przenosi zawartość katalogu domowego" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "ustawia powłokę dla użytkownika" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "ustawia UID dla użytkownika" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "ustawia główny GID dla użytkownika" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "zmienia nazwę logowania dla użytkownika" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "hasło w zwykłym tekście dla użytkownika" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "uprzednio wymieszane hasło dla użytkownika" #: apps/lusermod.c:75 msgid "lock account" msgstr "blokuje konto" #: apps/lusermod.c:78 msgid "unlock account" msgstr "odblokowuje konto" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "ustawia wspólną nazwę dla użytkownika" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "ustawia imię dla użytkownika" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "ustawia nazwisko dla użytkownika" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "ustawia numer pokoju dla użytkownika" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "ustawia numer telefonu dla użytkownika" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "ustawia numer telefonu domowego dla użytkownika" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Ustawienie hasła użytkownika %s się nie powiodło: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Użytkownik %s nie może zostać zablokowany: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Użytkownik %s nie może zostać odblokowany: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Ostrzeżenie: grupa o identyfikatorze %jd nie istnieje.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Użytkownik %s nie może zostać zmodyfikowany: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Grupa %s nie może zostać zmodyfikowana: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Brak poprzedniego katalogu domowego dla %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Brak nowego katalogu domowego dla %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Błąd podczas przenoszenia %s do %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "nie można otworzyć pliku konfiguracyjnego \"%s\": %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "nie można wykonać \"stat\" na pliku konfiguracyjnym \"%s\": %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "plik konfiguracyjny \"%s\" jest za duży" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "nie można odczytać pliku konfiguracyjnego \"%s\": %s" #: lib/error.c:62 msgid "success" msgstr "powodzenie" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "moduł wyłączony w konfiguracji" #: lib/error.c:66 msgid "generic error" msgstr "ogólny błąd" #: lib/error.c:68 msgid "not enough privileges" msgstr "brak wystarczających uprawnień" #: lib/error.c:70 msgid "access denied" msgstr "dostęp zabroniony" #: lib/error.c:72 msgid "bad user/group name" msgstr "błędna nazwa użytkownika/grupy" #: lib/error.c:74 msgid "bad user/group id" msgstr "błędny identyfikator użytkownika/grupy" #: lib/error.c:76 msgid "user/group name in use" msgstr "nazwa użytkownika/grupy jest już używana" #: lib/error.c:78 msgid "user/group id in use" msgstr "identyfikator użytkownika/grupy jest już używany" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "błąd podczas zmieniania atrybutów terminala" #: lib/error.c:82 msgid "error opening file" msgstr "błąd podczas otwierania pliku" #: lib/error.c:84 msgid "error locking file" msgstr "błąd podczas blokowania pliku" #: lib/error.c:86 msgid "error statting file" msgstr "błąd podczas wykonywania \"stat\" na pliku" #: lib/error.c:88 msgid "error reading file" msgstr "błąd podczas odczytywania pliku" #: lib/error.c:90 msgid "error writing to file" msgstr "błąd podczas zapisywania do pliku" #: lib/error.c:92 msgid "data not found in file" msgstr "dane w pliku nie zostały odnalezione" #: lib/error.c:94 msgid "internal initialization error" msgstr "błąd wewnętrzny inicjowania" #: lib/error.c:96 msgid "error loading module" msgstr "błąd podczas wczytywania modułu" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "błąd podczas wyszukiwaniu symbolu w module" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "niezgodne wersje biblioteki/modułu" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "odblokowywanie spowoduje pozostawienie pustego pola hasła" #: lib/error.c:105 msgid "invalid attribute value" msgstr "nieprawidłowa wartość atrybutu" #: lib/error.c:107 msgid "invalid module combination" msgstr "nieprawidłowe połączenie modułów" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "katalog domowy dla nowego użytkownika" #: lib/error.c:115 msgid "unknown error" msgstr "nieznany błąd" #: lib/misc.c:240 msgid "invalid number" msgstr "nieprawidłowy numer" #: lib/misc.c:254 msgid "invalid ID" msgstr "nieprawidłowy identyfikator" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "brak funkcji inicjującej %s w \"%s\"" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "niezgodna wersja modułu w \"%s\"" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "moduł \"%s\" nie określa \"%s\"" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "błąd podczas odczytywania atrybutów terminala" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "błąd podczas ustawiania atrybutów terminala" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "błąd podczas odczytywania z terminalu" #: lib/user.c:218 msgid "name is not set" msgstr "nazwa nie jest ustawiona" #: lib/user.c:223 msgid "name is too short" msgstr "nazwa jest za krótka" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "nazwa jest za długa (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "nazwa zawiera znaki spoza ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "nazwa zawiera znaki kontrolne" #: lib/user.c:249 msgid "name contains whitespace" msgstr "nazwa zawiera biały znak" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "nazwa zaczyna się od myślnika" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "nazwa zawiera nieprawidłowy znak \"%c\"" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "użytkownik %s nie posiada UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "nie odnaleziono użytkownika %s" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "grupa %s nie posiada GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "nie odnaleziono grupy %s" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "użytkownik %jd nie posiada nazwy" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "grupa %jd nie posiada nazwy" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "użytkownik nie posiada nazwy ani UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "grupa nie posiada nazwy ani GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Odmawianie domyślnego użycia niebezpiecznego katalogu domowego \"%s\"" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Nieprawidłowa domyślna wartość pola %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "błąd podczas blokowania pliku %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "nie można uzyskać domyślnego kontekstu bezpieczeństwa: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "nie można uzyskać domyślnego kontekstu bezpieczeństwa \"%s\": %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "nie można ustawić domyślnego kontekstu bezpieczeństwa na \"%s\": %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "nie można ustalić domyślnego kontekstu bezpieczeństwa dla \"%s\": %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "nie można otworzyć \"%s\": %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "nie można wykonać \"stat\" na \"%s\": %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "błąd podczas tworzenia \"%s\": %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "plik zapasowy \"%s\" istnieje i nie jest zwykłym plikiem" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Błąd podczas zmieniania właściciela \"%s\": %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Błąd podczas zmieniania trybu \"%s\": %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Błąd podczas odczytywania \"%s\": %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Błąd podczas zapisywania \"%s\": %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "niezgodność rozmiaru pliku zapasowego" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s wartość \"%s\": \":\" jest niedozwolona" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "nie można odczytać z \"%s\": %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "wpis znajduje się już w pliku" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "nie można zapisać do \"%s\": %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "obiekt nie posiada atrybutu %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "wpis o nazwie w konflikcie znajduje się już w pliku" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "\":\" nie jest dozwolone w zaszyfrowanym haśle" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "błąd podczas szyfrowania hasła" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "modułów \"%s\" i \"%s\" nie można łączyć" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "bez uruchamiania z uprawnieniami superużytkownika" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "plik shadow nieobecny - wyłączanie" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "błąd połączenia z usługą \"%s\"' na serwerze kadm5 w obszarze \"%s\": %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "błąd podczas inicjowania biblioteki Kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "błąd podczas przetwarzania nazwy użytkownika \"%s\" dla Kerberosa" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "struktura jednostki nie posiada atrybutu %s lub %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "jednostka nie posiada atrybutu %s lub %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "jednostka została utworzona bez atrybutu %s lub %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "błąd podczas odczytywania informacji dla \"%s\" z Kerberosa" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "jednostka nie posiada atrybutu %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "błąd podczas ustawiania hasła dla \"%s\"" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Obszar Kerberosa" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Główny administrator Kerberosa" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Hasło dostępu do Kerberosa dla głównego administratora" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "błąd podczas inicjowania biblioteki LDAP" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "nie można ustawić protokołu LDAP do wersji %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "nie można uzgodnić TLS z serwerem LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "nie można powiązać z serwerem LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "nie można dołączyć się do serwera LDAP, pierwsza próba jako \"%s\": %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "obiekt użytkownika nie posiada atrybutu %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "obiekt użytkownika został utworzony bez \"%s\"" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "błąd podczas tworzenia wpisu w katalogu LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "błąd podczas modyfikacji pozycji w katalogu LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "błąd podczas zmieniania nazwy wpisu w katalogu LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "obiekt nie posiadał atrybutu %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "błąd podczas usuwania wpisu w katalogu LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "obiekt nie posiada atrybutu %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "nieobsługiwany schemat szyfrowania hasła" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "nie ma takiego obiektu w katalogu LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "nie odnaleziono atrybutu \"%s\"" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "błąd podczas ustawiania hasła w katalogu LDAP dla %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Nazwa serwera LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Podstawowy DN dla LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "DN do powiązania z LDAP" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Hasło powiązania z LDAP" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Użytkownik SASL LDAP" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Upoważnienie użytkownika SASL LDAP" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Błąd w bibliotece Cyrus SASL podczas tworzenia użytkownika: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Błąd w bibliotece Cyrus SASL podczas usuwania użytkownika: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "błąd podczas inicjowania biblioteki Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "błąd podczas tworzenia katalogu domowego dla użytkownika" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "błąd podczas usuwania katalogu domowego użytkownika" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "błąd podczas przenoszenia katalogu domowego użytkownika" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Błąd podczas inicjowania %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Nieprawidłowy identyfikator %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Wyszukiwanie grupy o identyfikatorze %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Wyszukiwanie grupy o nazwie %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Wyszukiwanie użytkownika o identyfikatorze %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Wyszukiwanie użytkownika o nazwie %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Nie odnaleziono wpisu.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Znak zachęty powiódł się.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Znak zachęty się nie powiódł.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Klasy obiektów dla domyślnego użytkownika:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Nazwy atrybutów dla domyślnego użytkownika:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Uzyskiwanie atrybutów domyślnego użytkownika:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kopiowanie struktury użytkownika:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s nie posiadał katalogu domowego.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Błąd podczas usuwania %s: %s.\n" libuser-0.60~dfsg/po/nds.gmo0000644000175000017500000000230212226342604015776 0ustar tzafrirtzafrirxy        $2 ( 0;Kdkz   E-Mail AddressFull NameGiven NameHome PhoneNeverNew ShellNew passwordNew password (confirm)OfficeOffice PhonePassword changed. Surname[OPTION...] usersuccessunknown errorProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Low German (http://www.transifex.com/projects/p/fedora/language/nds/) Language: nds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); E-Post AnskrivtHeeler NaamVornaamTelefon to HuusNienichNeje ShellNejes PasswoordNejes Passwoord (nohmal)KontorKontor TelefonPasswoord ännert. Tonaam[OPTION...] BrukerErfolgunbekannter Fehlerlibuser-0.60~dfsg/po/pa.po0000644000175000017500000012773612226342567015501 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Amanpreet Singh Alam , 2004, 2006 # Amanpreet Singh Alam , 2005 # A P Singh , 2006 # A S Alam , 2007 # Harmeet Singh Phulewala , 2005 # Jaswinder Singh , 2008, 2009, 2012 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/fedora/" "language/pa/)\n" "Language: pa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "ਅਧਿਕਾਰ ਛੱਡਣ ਵਿੱਚ ਅਸਫਲ।\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "ਅੰਦਰੂਨੀ ਗਲਤੀ।\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s %s ਦੀ finger ਜਾਣਕਾਰੀ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਪ੍ਰਮਾਣਿਤ ਨਹੀਂ ਹੈ\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "ਅਣਜਾਣ ਉਪਭੋਗੀ ਪ੍ਰਸੰਗ" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd ਲਈ ਮੂਲ ਪ੍ਰਸੰਗ ਨਹੀਂ ਲੱਭਿਆ ਹੈ\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ।\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s ਲਈ ਪ੍ਰਮਾਣਕਿਤਾ ਅਸਫਲ।\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "ਅੰਦਰੂਨੀ PAM ਗਲਤੀ `%s'।\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "ਅਣਜਾਣ ਉਪਭੋਗੀ ਪ੍ਰਸੰਗ।\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "ਉਪਭੋਗੀ ਰਲਦਾ ਨਹੀਂ ਹੈ।\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ਚੋਣ...] ਉਪਭੋਗੀ" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "ਆਰਗੂਮਿੰਟ ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "ਕੋਈ ਉਪਭੋਗੀ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ।\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "ਉਪਭੋਗੀ %s ਮੌਜੂਦ ਨਹੀਂ।\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "ਖਾਤਾ ਲਾਕ ਹੈ।\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "ਖਾਤਾ ਲਾਕ ਨਹੀਂ ਹੈ।\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "ਘੱਟੋ-ਘੱਟ:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "ਵੱਧ ਤੋਂ ਵੱਧ:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "ਚੇਤਾਵਨੀ:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "ਨਾ ਸਰਗਰਮ:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "ਕਦੇ ਨਹੀਂ" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "ਆਖਰੀ ਬਦਲਾਅ:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "ਗੁਪਤ-ਕੋਡ ਮਿਆਦ ਖਤਮ ਹੋ ਗਈ ਹੈ:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "ਗੁਪਤ-ਕੋਡ ਨਾ-ਸਰਗਰਮ ਹੈ:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "ਖਾਤਾ ਮਿਆਦ ਪੁੱਗ ਗਈ:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s ਲਈ ਉਮਰ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਕਰਨ ਵਿੱਚ ਅਸਫਲ: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ਚੋਣ...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "ਕੋਈ ਉਪਭੋਗੀ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ, uid %d ਲਈ ਕੋਈ ਨਾਂ ਨਹੀਂ।\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s ਲਈ ਮੁੱਖ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਕਰ ਰਿਹਾ ਹੈ।\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "ਪੂਰਾ ਨਾਂ" #: apps/lchfn.c:146 msgid "Surname" msgstr "ਉਪ ਨਾਂ" #: apps/lchfn.c:157 msgid "Given Name" msgstr "ਦਿੱਤਾ ਨਾਂ" #: apps/lchfn.c:167 msgid "Office" msgstr "ਦਫਤਰ" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "ਦਫਤਰ ਫੋਨ" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "ਘਰ ਫੋਨ" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ਈ-ਮੇਲ ਸਿਰਨਾਵਾਂ" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "ਮੁੱਖ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਨਹੀਂ ਹੋਈ: ਇੰਪੁੱਟ ਗਲਤੀ।\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "ਮੁੱਖ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਹੋ ਗਈ ਹੈ।\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "ਮੁੱਖ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਨਹੀਂ ਹੋਈ: %s\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s ਲਈ ਸ਼ੈਲ ਤਬਦੀਲ ਕਰ ਰਿਹਾ ਹੈ।\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "ਨਵੀਂ ਸ਼ੈਲ" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "ਸ਼ੈਲ ਤਬਦੀਲ ਨਹੀਂ: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "ਸ਼ੈਲ ਤਬਦੀਲ ਹੋ ਗਈ ਹੈ।\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ਚੋਣ...] ਗਰੁੱਪ" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "ਕੋਈ ਗਰੁੱਪ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ।\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ਗਲਤ ਗਰੁੱਪ ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "ਗਰੁੱਪ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "ਗਰੁੱਪ %s ਮੌਜੂਦ ਨਹੀਂ।\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "ਗਰੁੱਪ %s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s।\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "ਦੋਨੋ -L ਅਤੇ -U ਦਿੱਤੇ ਹਨ।\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s ਗਰੁੱਪ ਲਈ ਗੁਪਤ-ਕੋਡ ਦੇਣ ਲਈ ਅਸਫਲ: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s ਗਰੁੱਪ ਨੂੰ ਲਾਕ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s ਗਰੁੱਪ ਨੂੰ ਅਣ-ਲਾਕ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "ਗਰੁੱਪ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s ਦੀ ਖੋਜ ਵਿੱਚ ਗਲਤੀ: %s।\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "ਕੋਈ ਗਰੁੱਪ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ, %s ਵਰਤਣ ਵਾਲਾ।\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "ਕੋਈ ਗਰੁੱਪ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ, gid %d ਲਈ ਕੋਈ ਨਾਂ ਨਹੀਂ।\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "ਕੋਈ ਉਪਭੋਗੀ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ, %s ਦੀ ਵਰਤੋਂ ਕਰਕੇ।\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s ਮੌਜੂਦ ਨਹੀਂ ਹੈ।\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ਚੋਣ...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' ਨੂੰ ਖੋਲਣ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "`%s' ਲਈ ਖਾਤਾ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: ਸਤਰ ਦਾ ਫਾਰਮੈਟ ਠੀਕ ਨਹੀਂ ਹੈ।\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ਗਲਤ ਉਪਭੋਗੀ ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 ਨਾਲ ਖਾਤਾ ਬਣਾਉਣ ਲਈ ਇਨਕਾਰ ਕਰ ਰਿਹਾ ਹੈ।\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' ਲਈ GID %jd ਨਾਲ ਗਰੁੱਪ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "ਖਤਰਨਾਕ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ `%s' ਨੂੰ ਮੂਲ ਰੂਪ ਵਿੱਚ %s ਲਈ ਵਰਤਣਾ ਰੱਦ ਕਰ ਰਿਹਾ ਹੈ\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s ਲਈ ਘਰ ਡਾਇਰੈਕਟਰੀ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s ਲਈ ਸ਼ੁਰੂਆਤੀ ਗੁਪਤ-ਕੋਡ ਸੈੱਟ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s ਲਈ ਉਪਭੋਗੀ ਖਾਤਾ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s ਲਈ ਗੁਪਤ-ਕੋਡ ਬਦਲਿਆ ਗਿਆ।\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "ਨਵਾਂ ਗੁਪਤ-ਕੋਡ" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "ਨਵਾਂ ਗੁਪਤ-ਕੋਡ (ਪੁਸ਼ਟੀ)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "ਗੁਪਤ-ਕੋਡ ਨੇ ਮੇਲ ਨਹੀਂ ਕੀਤਾ, ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "ਗੁਪਤ-ਕੋਡ ਤਬਦੀਲੀ ਰੱਦ ਹੋਈ।\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "ਫਾਇਲ ਡਿਸਕਰਿਪਟਰ %d ਤੋਂ ਪੜ੍ਹਨ ਵੇਲੇ ਗਲਤੀ\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s ਉਪਭੋਗੀ ਲਈ ਗੁਪਤ-ਕੋਡ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s ਗਰੁੱਪ ਲਈ ਗੁਪਤ-ਕੋਡ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "ਗੁਪਤ-ਕੋਡ ਬਦਲਿਆ ਗਿਆ।\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "ਗਰੁੱਪ %jd ਮੌਜੂਦ ਨਹੀਂ।\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "'%s' ਗਰੁੱਪ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "ਖਾਤਾ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ: %s\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "ਉਪਭੋਗੀ %s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s ਕੋਲ gid ਨੰਬਰ ਨਹੀਂ ਸੀ।\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd ਵਾਲਾ ਕੋਈ ਗਰੁੱਪ ਮੌਜੂਦ ਨਹੀਂ, ਹਟਾਇਆ ਨਹੀਂ।\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd ਵਾਲੇ ਗਰੁੱਪ ਦਾ ਗਰੁੱਪ ਨਾਂ ਨਹੀਂ ਹੈ।\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "ਗਰੁੱਪ %s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s।\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ਉਪਭੋਗੀ ਲਈ ਘਰ ਡਾਇਰੈਕਟਰੀ ਹਟਾਉਣ ਸਮੇਂ ਗਲਤੀ" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "ਉਪਭੋਗੀ %s ਲਈ ਗੁਪਤ-ਕੋਡ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %s।\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "ਉਪਭੋਗੀ %s ਲਾਕ ਨਹੀਂ ਹੋ ਸਕਿਆ: %s।\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "ਉਪਭੋਗੀ %s ਅਣ-ਲਾਕ ਨਹੀਂ ਹੋ ਸਕਿਆ: %s।\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "ਚੇਤਾਵਨੀ: ID %jd ਵਾਲਾ ਗਰੁੱਪ ਮੌਜੂਦ ਨਹੀਂ ਹੈ।\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "ਉਪਭੋਗੀ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s।\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "ਗਰੁੱਪ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s।\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s ਲਈ ਕੋਈ ਪੁਰਾਣੀ ਘਰ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ।\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s ਲਈ ਕੋਈ ਨਵੀਂ ਘਰ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ।\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s ਤੋਂ %s ਵਿੱਚ ਭੇਜਣ ਦੌਰਾਨ ਗਲਤੀ: %s\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "ਸੰਰਚਨਾ ਫਾਇਲ '%s' ਨੂੰ ਖੋਲ ਨਹੀਂ ਸਕਿਆ: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "ਸੰਰਚਨਾ ਫਾਇਲ '%s' ਨੂੰ ਖੋਲ੍ਹ ਨਹੀਂ ਸਕਿਆ: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "ਸੰਰਚਨਾ ਫਾਇਲ '%s' ਬਹੁਤ ਵੱਡੀ ਹੈ" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "ਸੰਰਚਨਾ ਫਾਇਲ '%s' ਨੂੰ ਖੋਲ੍ਹ ਨਹੀਂ ਸਕਿਆ: %s" #: lib/error.c:62 msgid "success" msgstr "ਸਫ਼ਲ" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "ਸੰਰਚਨਾ ਰਾਹੀਂ ਅਯੋਗ ਕੀਤਾ ਮੋਡੀਊਲ" #: lib/error.c:66 msgid "generic error" msgstr "ਸਾਧਾਰਨ ਗਲਤੀ" #: lib/error.c:68 msgid "not enough privileges" msgstr "ਲੋੜੀਂਦੇ ਅਧਿਕਾਰ ਨਹੀਂ ਹਨ" #: lib/error.c:70 msgid "access denied" msgstr "ਪਹੁੰਚ ਪਾਬੰਦੀ" #: lib/error.c:72 msgid "bad user/group name" msgstr "ਗਲਤ ਉਪਯੋਗੀ/ਗਰੁੱਪ ਨਾਂ" #: lib/error.c:74 msgid "bad user/group id" msgstr "ਗਲਤ ਉਪਯੋਗੀ/ਗਰੁੱਪ ਸ਼ੰਨ-ਨੰ" #: lib/error.c:76 msgid "user/group name in use" msgstr "ਵਰਤਿਆ ਜਾਂਦਾ ਉਪਯੋਗੀ/ਗਰੁੱਪ ਨਾਂ" #: lib/error.c:78 msgid "user/group id in use" msgstr "ਵਰਤਿਆ ਜਾਂਦਾ ਉਪਯੋਗੀ/ਗਰੁੱਪ id" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "ਟਰਮੀਨਲ ਵਿਸ਼ੇਸ਼ਤਾ ਤਬਦੀਲ ਕਰਨ ਵਿੱਚ ਗਲਤੀ" #: lib/error.c:82 msgid "error opening file" msgstr "ਫਾਇਲ ਖੋਲ੍ਹਣ ਵਿੱਚ ਗਲਤੀ" #: lib/error.c:84 msgid "error locking file" msgstr "ਫਾਇਲ ਲਾਕ ਕਰਨ ਵਿੱਚ ਗਲਤੀ" #: lib/error.c:86 msgid "error statting file" msgstr "ਫਾਇਲ ਨੂੰ ਦਰਜਾ ਦੇਣ ਵਿੱਚ ਗਲਤੀ" #: lib/error.c:88 msgid "error reading file" msgstr "ਫਾਇਲ ਪੜਨ ਵਿੱਚ ਗਲਤੀ" #: lib/error.c:90 msgid "error writing to file" msgstr "ਫਾਇਲ ਲਿਖਣ ਵਿੱਚ ਗਲਤੀ" #: lib/error.c:92 msgid "data not found in file" msgstr "ਫਾਇਲ ਵਿੱਚ ਡਾਟਾ ਨਹੀਂ ਲੱਭਿਆ" #: lib/error.c:94 msgid "internal initialization error" msgstr "ਅੰਦਰੂਨੀ ਸ਼ੁਰੂਆਤ ਗਲਤੀ" #: lib/error.c:96 msgid "error loading module" msgstr "ਮੋਡੀਊਲ ਲੋਡ ਕਰਨ ਵਿੱਚ ਗਲਤੀ" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "ਮੋਡੀਊਲ ਵਿੱਚ ਚਿੰਨ੍ਹ ਨਿਸਚਿਤ ਕਰਨ ਵਿੱਚ ਗਲਤੀ" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "ਲਾਇਬਰੇਰੀ/ਮੋਡੀਊਲ ਵਰਜਨ ਭਿੰਨਤਾ" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "ਤਾਲਾ ਖੋਲ੍ਹਣ ਨਾਲ ਗੁਪਤ-ਕੋਡ ਖੇਤਰ ਖਾਲੀ ਹੋ ਜਾਵੇਗਾ।" #: lib/error.c:105 msgid "invalid attribute value" msgstr "ਗਲਤ ਐਟਰੀਬਿਊਟ ਮੁੱਲ" #: lib/error.c:107 msgid "invalid module combination" msgstr "ਗਲਤ ਮੋਡੀਊਲ ਜੋੜ" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "ਅਣਜਾਣ ਗਲਤੀ" #: lib/misc.c:240 msgid "invalid number" msgstr "ਗਲਤ ਨੰਬਰ" #: lib/misc.c:254 msgid "invalid ID" msgstr "ਗਲਤੀ ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "`%2$s' ਵਿੱਚ ਕੋਈ ਸ਼ੁਰੂਆਤੀ ਫੰਕਸ਼ਨ %1$s ਨਹੀਂ " #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' ਵਿੱਚ ਮੋਡੀਊਲ ਵਰਜਨ ਭਿੰਨਤਾ" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' ਮੈਡੀਊਲ `%s' ਨੂੰ ਪਰਭਾਸ਼ਿਤ ਨਹੀਂ ਕਰਦਾ ਹੈ" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "ਟਰਮੀਨਲ ਵਿਸ਼ੇਸ਼ਤਾ ਪੜਨ ਵਿੱਚ ਗਲਤੀ" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "ਟਰਮੀਨਲ ਵਿਸ਼ੇਸ਼ਤਾ ਦੇਣ ਵਿੱਚ ਗਲਤੀ" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "ਟਰਮੀਨਲ ਵਿੱਚੋਂ ਪੜ੍ਹਨ ਵਿੱਚ ਗਲਤੀ" #: lib/user.c:218 msgid "name is not set" msgstr "ਨਾਂ ਨਹੀਂ ਦਿੱਤਾ ਗਿਆ" #: lib/user.c:223 msgid "name is too short" msgstr "ਨਾਂ ਬਹੁਤ ਛੋਟਾ ਹੈ" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "ਨਾਂ ਬਹੁਤ ਵੱਡਾ ਹੈ (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "ਨਾਂ ਵਿੱਚ ਨਾਨ-ASCII ਅੱਖਰ ਸ਼ਾਮਿਲ ਹਨ" #: lib/user.c:242 msgid "name contains control characters" msgstr "ਨਾਂ ਵਿੱਚ ਕੰਟਰੋਲ ਅੱਖਰ ਸ਼ਾਮਿਲ ਹਨ" #: lib/user.c:249 msgid "name contains whitespace" msgstr "ਨਾਂ ਵਿੱਚ ਖਾਲੀ ਥਾਂ ਸ਼ਾਮਿਲ ਹੈ" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "ਨਾਂ ਹਾਈਫਨ ਨਾਲ ਸ਼ੁਰੂ ਹੁੰਦਾ ਹੈ" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "ਨਾਂ ਵਿੱਚ ਅਯੋਗ ਅੱਖਰ `%c' ਸ਼ਾਮਿਲ ਹਨ" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "ਉਪਭੋਗੀ %s ਦਾ ਕੋਈ UID ਨਹੀਂ ਹੈ" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "ਗਰੁੱਪ %s ਦਾ ਕੋਈ GID ਨਹੀਂ ਹੈ" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "ਉਪਭੋਗੀ %jd ਦਾ ਕੋਈ ਨਾਂ ਨਹੀਂ ਹੈ" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "ਗਰੁੱਪ %jd ਦਾ ਕੋਈ ਨਾਂ ਨਹੀਂ ਹੈ" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "ਉਪਭੋਗੀ ਦਾ ਨਾ ਤਾਂ ਕੋਈ ਨਾਂ ਹੈ ਨਾ ਹੀ UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "ਗਰੁੱਪ ਦਾ ਨਾ ਤਾਂ ਕੋਈ ਨਾਂ ਹੈ ਨਾ ਹੀ GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "ਖਤਰਨਾਕ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ `%s' ਨੂੰ ਮੂਲ ਰੂਪ ਵਰਤਣਾ ਰੱਦ ਕਰ ਰਿਹਾ ਹੈ" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s ਖੇਤਰ ਲਈ ਗਲਤ ਮੂਲ ਮੁੱਲ: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ਫਾਇਲ ਲਾਕ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "ਮੂਲ ਸੁਰੱਖਿਆ ਦਰਜਾ ਨਹੀਂ ਪ੍ਰਾਪਤ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' ਵਿੱਚ ਲਿਖ ਨਹੀਂ ਸਕਿਆ: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "`%s' ਵਿੱਚ ਮੂਲ ਸੁਰੱਖਿਆ ਭਾਗ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' ਲਈ ਸੁਰੱਖਿਆ ਦਰਜਾ ਪਤਾ ਨਹੀਂ ਲਗਾ ਸਕਿਆ: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' ਨੂੰ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' ਨੂੰ ਦਰਜਾ ਨਹੀਂ ਦੇ ਸਕਿਆ: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "ਬੈਕਅੱਪ ਫਾਇਲ `%s' ਮੌਜੂਦ ਹੈ ਅਤੇ ਇਹ ਨਿਯਮਤ ਫਾਇਲ ਨਹੀਂ ਹੈ" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "'%s' ਦੀ ਮਲਕੀਅਤ ਬਦਲਣ ਦੌਰਾਨ ਗਲਤੀ: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s' ਦਾ ਮੋਡ ਤਬਦੀਲ ਕਰਨ ਵੇਲੇ ਗਲਤੀ: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' ਪੜ੍ਹਨ ਵਿੱਚ ਗਲਤੀ: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' ਲਿਖਣ ਦੌਰਾਨ ਗਲਤੀ: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "ਬੈਕਅੱਪ ਫਾਇਲ ਅਕਾਰ ਰਲਦਾ ਨਹੀਂ" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s ਮੁੱਲ `%s': `:' ਮਨਜੂਰ ਨਹੀਂ ਹੈ" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' ਵਿੱਚੋਂ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "ਫਾਇਲ ਵਿੱਚ ਇੰਦਰਾਜ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s' ਵਿੱਚ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "ਇੰਦਰਾਜ ਇਕਾਈ ਦੀ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈ" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "ਫਾਇਲ ਵਿੱਚ ਪ੍ਰਤੀਰੋਧੀ ਐਂਟਰੀ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' ਇਨਕ੍ਰਿਪਟਡ ਪਾਸਵਰਡ ਵਿੱਚ ਮਨਜੂਰ ਨਹੀਂ ਹੈ" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "ਗੁਪਤ-ਕੋਡ ਇਕਰਿਪਸ਼ਨ ਗਲਤੀ" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' ਅਤੇ `%s' ਮੋਡੀਊਲ ਜੋੜੇ ਨਹੀਂ ਜਾ ਸਕਦੇ" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "ਮੁੱਖ-ਉਪਭੋਗੀ ਅਧਿਕਾਰਾਂ ਨਾਲ ਚੱਲ ਨਹੀਂ ਰਿਹਾ" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "ਕੋਈ ਪਰਛਾਵਾਂ ਫਾਇਲ ਮੌਜੂਦ ਨਹੀਂ -- ਅਯੋਗ ਕੀਤਾ" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "`%s' ਸੇਵਾ ਲਈ `%s' ਖੇਤਰ ਵਿੱਚ kadm5 ਸਰਵਰ ਨਾਲ ਜੁੜਨ ਵਿੱਚ ਗਲਤੀ: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "kerberos ਲਾਇਬਰੇਰੀ ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "kerberos ਲਈ ਉਪਭੋਗੀ ਨਾਂ `%s' ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਗਲਤੀ" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "ਇਕਾਈ ਢਾਂਚੇ ਵਿੱਚ ਕੋਈ %s ਜਾਂ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈ" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "ਇਕਾਈ ਵਿੱਚ ਕੋਈ %s ਜਾਂ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈ" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "ਇਕਾਈ %s ਜਾਂ %s ਵਿਸ਼ੇਸ਼ਤਾ ਤੋਂ ਬਿਨਾ ਬਣਾਈ ਗਈ ਸੀ" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "kerberos ਵਿੱਚੋ `%s' ਲਈ ਜਾਣਕਾਰੀ ਪੜਨ ਵਿੱਚ ਗਲਤੀ" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "ਇਕਾਈ ਵਿੱਚ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈ" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' ਲਈ ਗੁਪਤ-ਕੋਡ ਸੈੱਟ ਕਰਨ ਵਿੱਚ ਗਲਤੀ" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "ਕੀਰਬੀਰੋਸ ਖੇਤਰ" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "ਕੀਰਬੀਰੋਸ ਪਰਸ਼ਾਸ਼ਨ ਪ੍ਰਿੰਸੀਪਲ " #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "ਪਰਸ਼ਾਸ਼ਨ ਪ੍ਰਿੰਸੀਪਲ ਲਈ ਕੀਰਬੀਰੋਸ ਗੁਪਤ-ਕੋਡ" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap ਲਾਇਬ੍ਰੇਰੀ ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "ਵਰਜਨ %d ਲਈ LDAP ਪ੍ਰੋਟੋਕੋਲ ਨਿਰਧਾਰਿਤ ਨਹੀਂ ਕਰ ਸਕਿਆ" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "TLS ਨੂੰ LDAP ਸਰਵਰ ਨਾਲ ਗੱਲਬਾਤ ਨਹੀਂ ਕਰਾ ਸਕਿਆ" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP ਸਰਵਰ ਨਾਲ ਜੁੜ ਨਹੀਂ ਸਕਿਆ" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP ਸਰਵਰ ਨਾਲ ਪਹਿਲੀਂ ਕੋਸ਼ਿਸ ਵਿੱਚ `%s' ਵਾਂਗ ਜੁੜਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "ਉਪਭੋਗੀ ਇਕਾਈ ਕੋਲ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈ" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "ਉਪਭੋਗੀ ਇਕਾਈ ਬਿਨਾਂ ਕਿਸੇ `%s' ਤੋਂ ਬਣਾਈ ਗਈ ਹੈ" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP ਡਾਇਰੈਕਟਰੀ ਇੰਦਰਾਜ ਨੂੰ ਮੁੜ ਨਾਂ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP ਡਾਇਰੈਕਟਰੀ ਇੰਦਰਾਜ ਤਬਦੀਲ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP ਡਾਇਰੈਕਟਰੀ ਇੰਦਰਾਜ ਨੂੰ ਮੁੜ ਨਾਂ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "ਇਕਾਈ ਦੀ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਸੀ" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP ਡਾਇਰੈਕਟਰੀ ਇੰਦਰਾਜ ਨੂੰ ਹਟਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "ਇਕਾਈ ਦੀ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈ" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "ਨਾ-ਸਹਿਯੋਗੀ ਪਾਸਵਰਡ ਇਨਕ੍ਰਿਪਸ਼ਨ ਸਕੀਮ" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP ਡਾਇਰੈਕਟਰੀ ਵਿੱਚ ਅਜਿਹੀ ਕੋਈ ਇਕਾਈ ਨਹੀਂ ਹੈ" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "ਕੋਈ `%s' ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਲੱਭੀ" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s ਲਈ LDAP ਡਾਇਰੈਕਟਰੀ ਵਿੱਚ ਗੁਪਤ-ਕੋਡ ਨਿਰਧਾਰਿਤ ਕਰਨ ਵਿੱਚ ਗਲਤੀ : %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP ਸਰਵਰ ਨਾਂ" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP ਖੋਜ ਮੂਲ DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP ਬੰਧਨ DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP ਬੰਧਨ ਗੁਪਤ-ਕੋਡ" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL ਉਪਯੋਗੀ" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL ਪ੍ਰਬੰਧਕੀ ਉਪਯੋਗੀ" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "ਉਪਭੋਗੀ ਬਣਾਉਣ ਸਮੇਂ ਸਾਇਰਸ SASL ਗਲਤੀ: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "ਉਪਭੋਗੀ ਹਟਾਉਣ ਸਮੇਂ ਸਾਇਰਸ SASL ਗਲਤੀ: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "ਸਾਇਰਸ SASL ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ਉਪਭੋਗੀ ਲਈ ਘਰ ਡਾਇਰੈਕਟਰੀ ਬਣਾਉਣ ਸਮੇਂ ਗਲਤੀ" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ਉਪਭੋਗੀ ਲਈ ਘਰ ਡਾਇਰੈਕਟਰੀ ਹਟਾਉਣ ਸਮੇਂ ਗਲਤੀ" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ਉਪਭੋਗੀ ਲਈ ਘਰ ਡਾਇਰੈਕਟਰੀ ਹਿਲਾਉਣ ਸਮੇਂ ਗਲਤੀ" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ਗਲਤੀ ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID %jd ਵਾਲੇ ਗਰੁੱਪ ਲਈ ਖੋਜ ਕਰ ਰਿਹਾ ਹੈ।\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "ਨਾਂ %s ਵਾਲੇ ਗਰੁੱਪ ਲਈ ਖੋਜ ਕਰ ਰਿਹਾ ਹੈ।\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID %jd ਵਾਲੇ ਉਪਭੋਗੀ ਲਈ ਖੋਜ ਕਰ ਰਿਹਾ ਹੈ।\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "ਨਾਂ %s ਵਾਲੇ ਉਪਭੋਗੀ ਲਈ ਖੋਜ ਕਰ ਰਿਹਾ ਹੈ।\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "ਇੰਦਰਾਜ ਨਹੀਂ ਲੱਭਾ।\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "ਸਫਲਤਾਪੂਰਕ ਮੁਕੰਮਲ।\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "ਅਸਫਲ ਹੈ।\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "ਮੂਲ ਉਪਭੋਗੀ ਆਬਜੈਕਟ ਕਲਾਸਾਂ:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "ਮੂਲ ਉਪਭੋਗੀ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ ਦੇ ਨਾਂ:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "ਮੂਲ ਉਪਭੋਗੀ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ ਪ੍ਰਾਪਤ ਕਰ ਰਿਹਾ ਹੈ:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "ਉਪਭੋਗੀ ਢਾਂਚੇ ਦੀ ਨਕਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s ਦੀ ਘਰ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਸੀ।\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s ਨੂੰ ਹਟਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s।\n" libuser-0.60~dfsg/po/fr.po0000644000175000017500000012142312226342567015473 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Alain PORTAL , 2007 # Audrey Simons , 2004, 2005 # Bettina De Monti , 2001 # Boris BARNIER , 2011 # Elodie, 2011 # Gauthier Ancelin , 2007, 2008 # Jérôme Fenal , 2012-2013 # Kévin Raymond , 2012 # Miloslav Trmač , 2011 # Sam Friedmann , 2009 # Thomas Canniot , 2007 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: French (http://www.transifex.com/projects/p/fedora/language/" "fr/)\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Échec lors de l'abandon des privilèges.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Erreur interne.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s n'est pas autorisé à modifier les informations finger de %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Contexte utilisateur inconnu" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Impossible de définir le contexte par défaut pour /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Erreur lors de l'initialisation de PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Échec de l'authentification pour %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Erreur PAM interne « %s ».\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Utilisateur inconnu authentifié.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Non correspondance de l'utilisateur.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "demander toutes les informations" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "afficher les informations d'expiration pour l'utilisateur" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "nombre de jours minimum entre deux changements de mot de passe" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "JOURS" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "nombre de jours maximum entre deux changements de mot de passe" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" "date du dernier changement de mot de passe en jours depuis le 1/1/1970." #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "nombre de jours après l'expiration du mot de passe déclenchant la " "désactivation du compte" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "date de l'expiration du mot de passe en jours depuis le 1/1/1970." #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" "nombre de jours avant expiration pour commencer à prévenir l'utilisateur" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] utilisateur" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Erreur lors de l'analyse des paramètres : %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Aucun nom d'utilisateur indiqué.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Erreur lors de l'initialisation de %s : %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "L'utilisateur %s n'existe pas.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Le compte est verrouillé.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Le compte n'est pas verrouillé.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum :\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maximum :\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Maximum :\taucun\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Avertissement :\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inactif :\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Inactif :\tjamais\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Le mot de passe doit être modifié à la prochaine connexion" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Jamais" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Dernière modification :\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Expiration du mot de passe :\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Mot de passe inactif :\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Expiration du compte :\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Impossible de modifier les informations d'expiration pour %s : %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [utilisateur]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Aucun nom d'utilisateur indiqué, aucun nom pour l'UID %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Modification des informations finger pour %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Nom complet" #: apps/lchfn.c:146 msgid "Surname" msgstr "Nom" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Prénom" #: apps/lchfn.c:167 msgid "Office" msgstr "Bureau" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Téléphone professionnel" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Téléphone privé" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Adresse électronique" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Informations finger non modifiées : erreur de saisie.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Informations finger modifiées.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Informations finger non modifiées : %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Modifier l'interpréteur de commandes pour %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nouvel interpréteur de commandes" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Interpréteur de commandes non modifié : %s.\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Interpréteur de commande modifié.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid du nouveau groupe" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "NUM" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "créer un groupe système" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] groupe" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Aucun nom de groupe indiqué.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ID groupe %s invalide\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "La création du groupe a échoué : %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Le groupe %s n'existe pas.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Le groupe %s ne peut pas être supprimé : %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "modifier le GID du groupe" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "modifier le nom du groupe" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NOM" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "mot de passe en clair pour le groupe" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "STRING" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "mot de passe chiffré pour le groupe" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "liste des administrateurs à ajouter" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "liste des administrateurs à retirer" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "liste des membres du groupe à ajouter" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "liste des membres du groupe à retirer" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "verrouiller le groupe" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "déverrouiller le groupe" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Aussi bien -L que -U indiqués.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Erreur lors de la définition du mot de passe du groupe %s : %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Le groupe %s ne peut pas être verrouillé : %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Le groupe %s ne peut pas être déverrouillé : %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Le groupe %s ne peut pas être modifié : %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Erreur lors de la vérification de %s : %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "afficher les utilisateurs d'un groupe nommé au lieu des appartenances de " "groupe de l'utilisateur" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "afficher les appartenances par nom et non par UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Aucun nom de groupe indiqué, utilisation de %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Aucun nom de groupe indiqué, aucun nom pour %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Aucun nom d'utilisateur indiqué, utilisation de %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s n'existe pas\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "fichier contenant les informations des utilisateurs" #: apps/lnewusers.c:47 msgid "PATH" msgstr "CHEMIN" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "ne pas créer les répertoires utilisateurs" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "ne pas créer les conteneurs de messagerie" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Erreur lors de la lecture de « %s » : %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Erreur lors de la création d'un compte pour « %s » : ligne mal formatée.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ID utilisateur %s invalide\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Création du compte avec l'UID 0 refusée.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Erreur lors de la création du groupe pour« %s » avec le GID %jd : %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Utilisation par défaut du répertoire personnel dangereux `%s' pour %s " "refusée\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Erreur lors de la création du dossier personnel pour %s : %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Erreur lors de la création du spool de courriel pour %s : %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Erreur lors de la définition du mot de passe initial pour %s : %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Erreur lors de la création du compte utilisateur pour %s : %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "modifier le mot de passe du groupe et non de l'utilisateur" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "nouveau mot de passe en clair" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "nouveau mot de passe chiffré" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "lire les mots de passe en clair depuis le descripteur donné" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "lire les mots de passe chiffrés depuis le descripteur donné" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Changement du mot de passe pour %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nouveau mot de passe" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nouveau mot de passe (confirmation)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Les mots de passe ne sont pas identiques, essayez de nouveau.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Modification du mot de passe annulée.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Erreur de lecture depuis le descripteur de fichier %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "" "Erreur lors de la définition du mot de passe pour l'utilisateur %s : %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Erreur lors de la définition du mot de passe pour le groupe %s : %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Mot de passe modifié.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "créer un utilisateur système" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "informations GECOS du nouvel utilisateur" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "répertoire du nouvel utilisateur" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "répertoire contenant les fichiers pour le nouvel utilisateur" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "shell du nouvel utilisateur" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "uid du nouvel utilisateur" #: apps/luseradd.c:69 msgid "group for new user" msgstr "groupe du nouvel utilisateur" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "ne pas créer de répertoire pour l'utilisateur" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "ne pas créer de groupe portant le même nom que l'utilisateur" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "nom commun du nouvel utilisateur" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "prénom du nouvel utilisateur" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "nom de famille du nouvel utilisateur" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "numéro de pièce du nouvel utilisateur" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "numéro de téléphone du nouvel utilisateur" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "numéro de téléphone du domicile du nouvel utilisateur" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Le groupe %jd n'existe pas\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Erreur lors de la création du groupe « %s » : %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "La création du compte a échoué : %s\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Erreur lors de la création de %s : %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Erreur lors de la création du spool de courriel : %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "ne pas supprimer le groupe privé de l'utilisateur si celui-ci en a un" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "supprimer le répertoire de l'utilisateur" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "L'utilisateur %s n'a pas pu être supprimé : %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s n'avait pas de numéro GID.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Aucun groupe avec le GID %jd n'existe. Suppression impossible.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Le groupe avec le GID %jd n'avait pas de nom de groupe.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Le groupe %s ne peut pas être supprimé : %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "Erreur lors de la suppression du dossier personnel pour l'utilisateur" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Erreur lors de la suppression du spool de courriel : %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "informations GECOS" #: apps/lusermod.c:60 msgid "home directory" msgstr "répertoire utilisateur" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "déplacer le contenu du répertoire utilisateur" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "modifier le shell de l'utilisateur" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "modifier l'UID de l'utilisateur" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "modifier le GID primaire de l'utilisateur" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "modifier l'identifiant de connexion de l'utilisateur" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "mot de passe en clair de l'utilisateur" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "mot de passe chiffré de l'utilisateur" #: apps/lusermod.c:75 msgid "lock account" msgstr "verrouiller le compte" #: apps/lusermod.c:78 msgid "unlock account" msgstr "déverrouiller le compte" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "modifier le nom commun de l'utilisateur" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "modifier le prénom de l'utilisateur" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "modifier le nom de famille de l'utilisateur" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "modifier le numéro de pièce de l'utilisateur" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "modifier le numéro de téléphone de l'utilisateur" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "modifier le numéro de téléphone du domicile de l'utilisateur" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "" "Erreur lors de la définition du mot de passe pour l'utilisateur %s : %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "L'utilisateur %s n'a pas pu être verrouillé : %s\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "L'utilisateur %s n'a pas pu être déverrouillé : %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Avertissement : le groupe d'ID %jd n'existe pas.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "L'utilisateur %s n'a pas pu être modifié : %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Le groupe %s n'a pas pu être modifié : %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Aucun ancien dossier personnel pour %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Aucun nouveau dossier personnel pour %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Erreur lors du déplacement de %s vers %s : %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "impossible d'ouvrir le fichier de configuration « %s » : %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "" "impossible d'exécuter la fonction stat sur le fichier de configuration " "« %s » : %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "le fichier de configuration « %s » est trop grand" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "impossible de lire le fichier de configuration « %s » : %s" #: lib/error.c:62 msgid "success" msgstr "réussi" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "module désactivé par la configuration" #: lib/error.c:66 msgid "generic error" msgstr "erreur générique" #: lib/error.c:68 msgid "not enough privileges" msgstr "permissions insuffisantes" #: lib/error.c:70 msgid "access denied" msgstr "accès refusé" #: lib/error.c:72 msgid "bad user/group name" msgstr "nom d'utilisateur/de groupe incorrect" #: lib/error.c:74 msgid "bad user/group id" msgstr "ID utilisateur/groupe incorrect" #: lib/error.c:76 msgid "user/group name in use" msgstr "nom d'utilisateur/de groupe en cours d'utilisation" #: lib/error.c:78 msgid "user/group id in use" msgstr "ID utilisateur/groupe en cours d'utilisation" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "erreur lors de la modification des attributs du terminal" #: lib/error.c:82 msgid "error opening file" msgstr "erreur lors de l'ouverture du fichier" #: lib/error.c:84 msgid "error locking file" msgstr "erreur lors du verrouillage du fichier" #: lib/error.c:86 msgid "error statting file" msgstr "impossible d'appliquer la fonction stat au fichier" #: lib/error.c:88 msgid "error reading file" msgstr "erreur lors de la lecture du fichier" #: lib/error.c:90 msgid "error writing to file" msgstr "erreur lors de l'écriture sur fichier" #: lib/error.c:92 msgid "data not found in file" msgstr "données non trouvées dans le fichier" #: lib/error.c:94 msgid "internal initialization error" msgstr "erreur d'initialisation interne" #: lib/error.c:96 msgid "error loading module" msgstr "erreur lors du chargement du module" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "erreur lors de la conversion du symbole en module" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "incohérence de version du module/de la bibliothèque" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "le déverrouillage viderait le champ du mot de passe" #: lib/error.c:105 msgid "invalid attribute value" msgstr "la valeur de l'attribut est invalide" #: lib/error.c:107 msgid "invalid module combination" msgstr "l'association des modules est invalide" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "répertoire du nouvel utilisateur" #: lib/error.c:115 msgid "unknown error" msgstr "erreur inconnue" #: lib/misc.c:240 msgid "invalid number" msgstr "numéro invalide" #: lib/misc.c:254 msgid "invalid ID" msgstr "ID invalide" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "aucune fonction d'initialisation %s dans « %s »" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "incohérence de version du module dans « %s »" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "le module « %s » ne définit pas « %s »" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "erreur lors de la lecture des attributs du terminal" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "erreur lors de la configuration des attributs du terminal" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "erreur de lecture depuis le terminal" #: lib/user.c:218 msgid "name is not set" msgstr "le nom n'est pas défini" #: lib/user.c:223 msgid "name is too short" msgstr "le nom est trop court" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "le nom est trop long (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "le nom contient des caractères qui ne sont pas des caractères ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "le nom contient des caractères de contrôle" #: lib/user.c:249 msgid "name contains whitespace" msgstr "le nom contient des espaces" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "le nom commence par un trait d'union" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "le nom contient un caractère incorrect « %c »" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "l'utilisateur %s n'a pas d'UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "utilisateur %s introuvable" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "le groupe %s n'a pas de GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "groupe %s introuvable" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "l'utilisateur %jd n'a pas de nom" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "le groupe %jd n'a pas de nom" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "l'utilisateur n'a ni nom ni UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "le groupe n'a ni nom ni GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Utilisation par défaut du répertoire personnel dangereux `%s' refusée" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Valeur par défaut du champs %s invalide : %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "erreur lors du verrouillage du fichier : %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "impossible d'obtenir le contexte de sécurité par défaut : %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "impossible d'obtenir le contexte de sécurité de « %s » : %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "impossible de définir le contexte de sécurité par défaut à « %s » : %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "impossible de déterminer le contexte de sécurité de « %s » : %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "impossible d'ouvrir « %s » : %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "impossible d'exécuter la fonction stat « %s » : %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "erreur lors de la création de « %s » : %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "le fichier de sauvegarde « %s » existe et il n'est pas standard" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Erreur lors du changement du propriétaire de « %s » : %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Erreur lors du changement de mode de « %s » : %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Erreur lors de la lecture de « %s » : %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Erreur lors de l'écriture de « %s » : %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "incohérence de la taille du fichier de sauvegarde" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s valeur « %s » : « : » non autorisé" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "impossible de lire à partir de « %s » : %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "entrée déjà présente dans le fichier" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "impossible d'écrire sur « %s » : %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "l'objet d'entité n'a pas d'attribut %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "entrée avec un nom en conflit déjà présente dans le fichier" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "« : » non permis dans le mot de passe chiffré" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "erreur lors du chiffrage du mot de passe" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "les modules « %s » et « %s » ne peuvent pas être associés" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "exécution sans les permissions du superutilisateur" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "pas de fichier shadow présent -- désactivation." #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "erreur lors de la connexion au serveur kadm5 pour le service « %s » dans la " "zone « %s » : %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "erreur lors de l'initialisation de la bibliothèque kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "erreur lors de l'analyse du nom d'utilisateur « %s » pour kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "la structure de l'entité n'a pas d'attribut %s ou %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "l'entité n'a pas d'attribut %s ou %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "l'entité a été créée sans attribut %s ou %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "erreur lors de la lecture des informations de kerberos pour « %s »" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "l'entité n'a pas d'attribut %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "erreur lors de la définition du mot de passe pour « %s »" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Zone Kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Administrateur principal Kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Mot de passe Kerberos pour l'administrateur principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "erreur lors de l'initialisation de la bibliothèque LDAP" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "impossible de régler le protocole LDAP sur la version %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "impossible de négocier TLS avec le serveur LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "impossible de se lier au serveur LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "impossible de se lier au serveur LDAP, première tentative en tant que " "« %s » : %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "l'objet utilisateur n'a pas d'attribut %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "l'objet utilisateur a été créé sans « %s »" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "erreur lors de la création d'une entrée dans l'annuaire LDAP : %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "erreur lors de la modification de l'entrée dans l'annuaire LDAP : %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "erreur lors du changement du nom de l'entrée dans l'annuaire LDAP : %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "l'objet n'avait pas d'attribut %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "erreur lors de la suppression de l'entrée dans l'annuaire LDAP : %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "l'objet n'a pas d'attribut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "méthode de chiffrement du mot de passe non prise en charge" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "objet non présent dans l'annuaire LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "aucun attribut « %s » trouvé" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "" "erreur lors de la définition du mot de passe dans l'annuaire LDAP pour %s : " "%s." #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Nom du serveur LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "DN de la base de recherche LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "DN de liaison LDAP" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Mot de passe LDAP Bind" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Utilisateur LDAP SASL" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Utilisateur d'autorisation LDAP SASL" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Erreur Cyrus SASL lors de la création de l'utilisateur : %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Erreur Cyrus SASL lors de la suppression de l'utilisateur : %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Erreur lors de l'initialisation Cyrus SASL : %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "Erreur lors de la création du dossier personnel pour l'utilisateur" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "Erreur lors de la suppression du dossier personnel pour l'utilisateur" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "Erreur lors du déplacement du dossier personnel pour l'utilisateur" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Erreur lors de l'initialisation de %s : %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ID %s invalide\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Recherche du groupe avec l'ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Recherche du groupe appelé %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Recherche de l'utilisateur avec l'ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Recherche de l'utilisateur nommé %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Entrée non trouvée.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Invites réussies.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Invites échouées.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Classes d'objet d'utilisateur par défaut :\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Noms des attributs des utilisateurs par défaut :\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Obtention des attributs des utilisateurs par défaut :\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Copie de la structure de l'utilisateur :\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s n'avait pas de dossier personnel.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Erreur lors de la suppression de %s : %s.\n" libuser-0.60~dfsg/po/sk.po0000644000175000017500000010720412226342570015474 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Dušan Kazik , 2011 # Marcel Telka , 2003-2005 # mmahut , 2008 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-10-12 23:52+0200\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/fedora/language/" "sk/)\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Zlyhalo zahodenie práv.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Interná chyba.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s nemá oprávnenie meniť finger informácie pre %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Neznámy kontext používateľa" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Nepodarilo sa nastaviť predvolený kontext pre /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Chyba inicializácie PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Overenie totožnosti zlyhalo pre %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Interná chyba PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Overená totožnosť neznámeho používateľa.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Používateľ sa nezhoduje.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[VOĽBA...] používateľ" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Chyba pri analýze parametrov: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Nebolo zadané meno používateľa.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Chyba pri inicializácii %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Používateľ %s neexistuje.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Konto je zamknuté.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Konto nie je zamknuté.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maximum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Upozornenie:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Neaktívne:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nikdy" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Posledná zmena:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Platnosť hesla vyprší:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Heslo neaktívne:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Platnosť konta vyprší:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Zlyhala úprava informácií o veku pre %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[VOĽBA...] [používateľ]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Nebolo zadané meno používateľa, nie je meno pre uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Mením finger informácie pre %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Celé meno" #: apps/lchfn.c:146 msgid "Surname" msgstr "Priezvisko" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Krstné meno" #: apps/lchfn.c:167 msgid "Office" msgstr "Úrad" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefón do úradu" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefón domov" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-mail adresa" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger informácie neboli zmenené: chyba vstupu.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger informácie boli zmenené.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger informácie neboli zmenené: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Mením shell pre %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nový shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell nezmenený: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell zmenený.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[VOĽBA...] skupina" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Nebolo zadané meno skupiny.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Neplatné ID skupiny %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Vytvorenie skupiny zlyhalo: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Skupina %s neexistuje.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Skupina %s nemohla byť vymazaná: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Boli zadané obidve -L a -U.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Zlyhalo nastavenie hesla pre skupinu %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Skupina %s nemohla byť uzamknutá: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Skupina %s nemohla byť odomknutá: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Skupina %s nemohla byť zmenená: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Chyba pri uzamykaní %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nebolo zadané meno skupiny, použijem %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Nebolo zadané meno skupiny, gid %d bez mena.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nebolo zadané meno používateľa, použijem %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s neexistuje\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[VOĽBA...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Chyba pri otváraní `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Chyba pri vytváraní konta pre `%s': riadok je nesprávne naformátovaný.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Neplatné ID používateľa %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Zamietam vytvorenie konta s UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Chyba pri vytváraní skupiny pre `%s' s GID %jd: %s\n" #: apps/lnewusers.c:246 #, fuzzy, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Zamieta sa použitie nebezpečného domovského adresára `%s' ako štandardného\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Chyba pri vytváraní domovského adresára pre %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Chyba pri nastavovaní počiatočného hesla pre %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Chyba pri vytváraní používateľského konta pre %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Mením heslo pre %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nové heslo" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nové helso (potvrdiť)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Heslá sa nezhodujú, skúste znova.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Zmena hesla zrušená.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Chyba počas načítavania z popisovača súboru %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Chyba pri nastavovaní hesla pre používateľa %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Chyby pri nastavovaní hesla pre skupinu %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Heslo zmenené.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Skupina %jd neexistuje\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Chyba pri vytváraní skupiny `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Vytváranie konta zlyhalo: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Chyba pri vytváraní %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Používateľ %s nemohol byť vymazaný: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s nemala číslo gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Neexistuje skupina s GID %jd, neodstraňujem.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Skupina s GID %jd nemala meno skupiny.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Skupina %s nemohla byť vymazaná: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "chyba pri odstraňovaní domovského adresára pre používateľa" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Zlyhalo nastavenie hesla pre používateľa %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Používateľ %s nemohol byť zamknutý: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Používateľ %s nemohol byť odomknutý: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Upozornenie: Skupina %jd neexistuje.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Používateľ %s nemohol byť zmenený: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Skupina %s nemohla byť zmenená: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Nie je starý domovský adresár pre %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Nie je nový domovský adresár pre %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Chyba pri presune %s do %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "nepodarilo sa otvoriť konfiguračný súbor `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "nepodarilo sa zistiť stav konfiguračného súboru `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "konfiguračný súbor `%s' je príliš veľký" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "nepodarilo sa prečítať konfiguračný súbor `%s': %s" #: lib/error.c:62 msgid "success" msgstr "úspech" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modul je nakonfigurovaný ako neaktívny" #: lib/error.c:66 msgid "generic error" msgstr "základná chyba" #: lib/error.c:68 msgid "not enough privileges" msgstr "nie sú dostatočné práva" #: lib/error.c:70 msgid "access denied" msgstr "prístup odmietnutý" #: lib/error.c:72 msgid "bad user/group name" msgstr "zlé meno používateľa/skupiny" #: lib/error.c:74 msgid "bad user/group id" msgstr "zlé id používateľa/skupiny" #: lib/error.c:76 msgid "user/group name in use" msgstr "meno používateľa/skupiny sa používa" #: lib/error.c:78 msgid "user/group id in use" msgstr "id používateľa/skupiny sa používa" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "chyba pri zaobchádzaní s terminálovými príznakmi" #: lib/error.c:82 msgid "error opening file" msgstr "chyba pri otváraní súboru" #: lib/error.c:84 msgid "error locking file" msgstr "chyba pri uzamykaní súboru" #: lib/error.c:86 msgid "error statting file" msgstr "chyba pri zisťovaní stavu súboru" #: lib/error.c:88 msgid "error reading file" msgstr "chyba pri čítaní súboru" #: lib/error.c:90 msgid "error writing to file" msgstr "chyba pri zápise do súboru" #: lib/error.c:92 msgid "data not found in file" msgstr "údaje neboli v súbore nájdené" #: lib/error.c:94 msgid "internal initialization error" msgstr "interná chyba inicializácie" #: lib/error.c:96 msgid "error loading module" msgstr "chyba pri nahrávaní modulu" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "chyba pri riešení závislostí symbolov v module" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "verzia knižnice/modulu nezodpovedá" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "odomknutie by vyprázdnilo pole pre heslo" #: lib/error.c:105 msgid "invalid attribute value" msgstr "neplatná hodnota atribútu" #: lib/error.c:107 msgid "invalid module combination" msgstr "neplatná kombinácia modulov" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "neznáma chyba" #: lib/misc.c:240 msgid "invalid number" msgstr "neplatné ID číslo používateľa" #: lib/misc.c:254 msgid "invalid ID" msgstr "neplatné ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "bez inicializačnej funkcie %s v `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "verzia modulu nezodpovedá v `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modul `%s' nedefinuje `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "chyba pri čítaní príznakov terminálu" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "chyba pri nastavovaní príznakov terminálu" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "chyba pri čítaní z terminálu" #: lib/user.c:218 msgid "name is not set" msgstr "meno nie je nastavené" #: lib/user.c:223 msgid "name is too short" msgstr "meno je príliš krátke" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "meno je príliš dlhé (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "meno obsahuje znaky, ktoré nie sú ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "meno obsahuje riadiace znaky" #: lib/user.c:249 msgid "name contains whitespace" msgstr "meno obsahuje medzery" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "meno začína s pomlčkou" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "meno obsahuje neplatný znak `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "používateľ %s nemá žiadne UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "skupina %s nemá žiadne GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "používateľ %jd nemá meno" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "Skupina %jd nemá meno" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "používateľ nemá ani meno ani UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "skupina nemá ani meno ani GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" "Zamieta sa použitie nebezpečného domovského adresára `%s' ako štandardného" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Nesprávna štandardná hodnota položky %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "chyba pri zamykaní súboru: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "nepodarilo sa nastaviť predvolený bezpečnostný kontext: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "nepodarilo sa získať bezpečnostný kontext `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "nepodarilo sa nastaviť predvolený bezpečnostný kontext na `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "nepodarilo sa získať bezpečnostný kontext pre `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "nepodarilo sa otvoriť `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "nepodarilo sa zistiť stav `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "chyba pri vytváraní `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "zálohový súbor `%s' existuje a nie je to bežný súbor" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Chyba pri zmene vlastníka `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Chyba pri čítaní `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Chyba pri zápise `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "veľkosť záložného súboru nezodpovedá" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s hodnota `%s': `:' nepovolená" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "nepodarilo sa čítať z `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "položka už existuje v súbore" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "nepodarilo sa zapísať do `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "objekt entity nemá príznak %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "záznam s konfliktným názvom sa už nachádza v súbore" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' nepovolené v zakódovanom hesle" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "chyba pri šifrovaní hesla" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "moduly `%s' a `%s' nemôžu byť skombinované" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "nespúšťam s právami superpoužívateľa" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "tieňový súbor nie je prítomný -- deaktivujem" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "chyba pri pripájaní ku kadm5 serveru pre službu `%s' v oblasti `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "chyba pri inicializácii kerberos knižnice" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "chyba pri analýze mena používateľa `%s' pre kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "štruktúra entity nemá príznaky %s alebo %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entita nemá príznaky %s alebo %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entita bola vytvorená bez príznakov %s alebo %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "chyba pri čítaní informácií pre `%s' z kerberosu" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entita nemá príznak %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "chyba pri nastavovaní hesla pre `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos oblasť" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos vedúci správca" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos heslo pre vedúceho správcu" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "chyba pri inicializácii knižnice ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "nepodarilo sa nastaviť LDAP protokol na verziu %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "nepodarilo sa dohodnúť TLS s LDAP serverom" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "nepodarilo sa pripojiť k LDAP serveru" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "nepodarilo sa pripojiť k LDAP serveru, prvý pokus ako `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "objekt používateľa nemal príznak %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "objekt používateľa bol vytvorený bez `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "chyba pri vytváraní položky LDAP adresára: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "chyba pri úprave položky LDAP adresára: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "chyba pri premonovávaní položky LDAP adresára: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "objekt nemal príznak %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "chyba pri odstraňovaní položky LDAP adresára: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "objekt nemá príznak %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "nepodporovaná schéma kódovania hesla" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "nie je taký objekt v LDAP adresári" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "nebol nájdený príznak `%s'" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "chyba pri nastavovaní hesla v LDAP adresára pre %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Meno servera LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP DN vyhľadávacej základne" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP DN pripájania" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP heslo pripájania" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL používateľ" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL udelenie oprávnenia používateľa" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL chyba pri vytváraní používateľa: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL chyba pri odstraňovaní používateľa: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "chyba pri inicializácii Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "chyba pri vytváraní domovského adresára pre používateľa" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "chyba pri odstraňovaní domovského adresára pre používateľa" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "chyba pri presúvaní domovského adresára pre používateľa" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Chyba pri inicializácii %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Neplatné ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Vyhľadávanie skupiny s ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Vyhľadávanie skupiny s menom %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Vyhľadávanie používateľa s ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Vyhľadávanie používateľa s menom %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Položka nenájdená.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Výzvy úspešné.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Výzvy zlyhali.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Štandardné objektové triedy používateľa:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Štandardné názvy príznakov používateľa:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Získavam štandardné príznaky používateľa:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kopírujem štruktúrup používateľa:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s nemal domovský adresár.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Chyba pri odstraňovaní %s: %s.\n" libuser-0.60~dfsg/po/en@boldquot.header0000644000175000017500000000247112226342570020145 0ustar tzafrirtzafrir# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # libuser-0.60~dfsg/po/fi.gmo0000644000175000017500000004654712226342604015633 0ustar tzafrirtzafrir3 5!@Us*$)D\"u" :<R/)'0Kg'*+)V(.( (4].z$ ! "#B!f#$#.* Yds% +HWk|    -# /,Iv," $1G^y#'8@6w! &C"X!{##  + H T g y % 1   !!$0!U!8s!(!*!*")+"*U"0")")"##18#j####3#G$M$)e$&$$!$#$%6%K%^%&u%(%$%%)%'&:&0V&!&'&&&'& 'A'3a'!''' ''("(<( Z(e(}((( ( ( ) ))J)"j)))))))%*#<* `**'****-* ++-9+&g+++"++$+,3,J,.%.M9.-..$..//;/9W/*/'/*/!0-100_0&0 0005191ER1&131016$2[2v222+22/3G3(e3@3/343"44&W45~44494#5+<5 h5 5(555"5"6!(6!J6"l6)66#656 17=7T7s77#7777 88#%8I8`8r88 8 8 88 8848/39 c94909199:4V:':::::;!;.6;e;;/;;;T<!Z<!|<&<&<< ='='0=!X='z=&='=.=" >"C>f>0u> >>>>1>1?HA?'?? ?&?*@ED@6@+@+@-A+GA6sA+A.AB%!B3GB{B BBB,BY CzC-C.CC"D&5D"\DDD"D+D- E37EkE@EEE9F)=F1gF1F:F(G5/G=eG+GG!G HH8H&UH|HHHHH!H)I!;I"]I#I-I#I IJ.JNJbJ"{J)J:J!K%K*@K%kK#KK)KK1K!+L!ML!oL+L,L6L!!M#CM=0jI5qu!HR6 T4)7Z"K e(kN@$ ,cJm8 UfhC-l'g/F#`_z[Oy9Y<1Go%?iQPX d \}:Mt]saBDW>vxS;+LAEp.bw|^{*32Vn~r&%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Finnish (http://www.transifex.com/projects/p/fedora/language/fi/) Language: fi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s:lla ei ollut gid-numeroa. %s ei ole olemassa käyttäjällä %s ei ole valtuutusta muuttaa käyttäjän %s finger-tietoja %s arvo ”%s”: merkkiä ”:” ei sallitaTunnus vanhentuu: %s Tunnuksen luominen epäonnistu: %s. Tunnus on lukittu. Tunnus ei ole lukittu. Todennus epäonnistui %s:lle. Sekä -L että -U annettu. Tiedoston /etc/passwd oletusympäristöä ei voi asettaa Vaihdetaan käyttäjän %s finger-tiedot. Vaihdetaan salasana käyttäjälle %s. Vaihdetaan käyttäjän %s komentotulkki. Kopioidaan käyttäjän rakenne: Cyrus SASL -virhe käyttäjän luomisessa: %sCyrus SASL -virhe käyttäjän poistamisessa: %sOletuskäyttäjäattribuuttien nimet: Oletuskäyttäjäobjektiluokat: SähköpostiosoiteMerkintää ei löydy. ”%s”:n omistajaa vaihdettaessa tapahtui virhe: %sVirhe luotaessa %s: %s. Virhe luotaessa tunnusta käyttäjälle ”%s”: virheellinen rivi. Virhe luotaessa ryhmää ”%s”: %s Virhe luotaessa ryhmää ”%s” GID:llä %jd: %s Virhe kotihakemiston luomisessa kohteelle %s:%s Virhe käyttäjätunnuksen luomisessa kohteelle %s:%s Virhe alustettaessa %s:%s Virhe alustettaessa %s: %s. Virhe PAM:n alustamisessa. Virhe etsittäessä %s: %s Virhe siirrettäessä %s kohteeseen %s:%s. Virhe avattaessa ”%s”: %s. Argumenttien käsittelyssä tapahtui virhe: %s Virhe luettaessa ”%s”: %sVirhe luettaessa tiedostokuvaajasta %d. Virhe ensimmäisen salasanan asettamisessa käyttäjälle %s:%s Virhe salasanan asettamisessa ryhmälle %s:%s. Virhe salasanan asettamisessa käyttäjälle %s:%s. Virhe kirjoitettaessa ”%s”: %sOikeuksien pudottaminen epäonnistui. Vanhenemistiedon muuttaminen epäonnistui %s:lle: %s Salasanan asettaminen ryhmälle %s epäonnistui: %s Salasanan asettaminen käyttäjälle %s:%s epäonnistui. Finger-tiedot muutettu. Finger-tietoja ei muutettu: syöttövirhe. Finger-tietoja ei muutettu: %s. Koko nimiHaetaan oletuskäyttäjäattribuutteja: EtunimiRyhmää %jd ei ole olemassa Ryhmää %s ei voitu poistaa: %s. Ryhmää %s ei voitu poistaa: %s. Ryhmää %s ei voitu lukita: %s. Ryhmää %s ei voitu muokata: %s Ryhmää %s ei voitu muokata: %s. Ryhmän %s lukitusta ei voitu avata: %s. Ryhmää %s ei ole olemassa. Ryhmän luominen epäonnistui: %s. Ryhmällä, jonka GID on %jd, ei ollut ryhmänimeä. KotipuhelinPois käytöstä: %ld Sisäinen PAM-virhe ”%s”. Sisäinen virhe. Epäkelpo ID %s Kentän %s oletusarvo ei kelpaa: %sEpäkelpo ryhmätunnus %s Epäkelpo käyttäjätunnus %s Kerberos RealmLDAP Bind DNLDAP Bind -salasanaLDAP SASL -valtuutuksen käyttäjäLDAP SASL -käyttäjäLDAP-haun Base DNLDAP-palvelimen nimiEdellinen muutos: %s Maksimi: %ld Minimi: %ld Ei koskaanUusi komentotulkkiUusi salasanaUusi salasana (vahvistus)Ryhmänimeä ei määritelty, ei nimeä gid:lle %d. Ryhmänimeä ei määritelty, käytetään %s. Ryhmän nimeä ei määritelty. Ryhmää GID:llä %jd ei ole olemassa, ei poisteta. Käyttäjällä %s ei ole uutta kotihakemistoa. Käyttäjällä %s ei ole vanhaa kotihakemistoa. Käyttäjänimeä ei määritelty, ei nimeä uid:lle %d. Käyttäjänimeä ei määritelty, käytetään %s. Käyttäjänimeä ei ole määritelty. ToimistoToimistopuhelinSalasana vanhentuu: %s Salasana pois käytöstä: %s Salasanan vaihto peruutettu. Salasana vaihdettu. Salasanat eivät täsmää, yritä uudelleen. Kehotteet epäonnistuivat. Kehotteet onnistuivat. Kieltäydytään luomasta tunnusta UID:llä 0. Vaarallista kotihakemistoa ”%s” ei käytetä oletuksenaVaarallista kotihakemistoa ”%s” ei käytetä käyttäjälle ”%s” oletuksena Etsitään %s-nimistä ryhmää. Etsitään ryhmää ID:llä %jd. Etsitään %s-nimistä käyttäjää. Etsitään käyttäjää ID:llä %jd. Komentotulkki vaihdettu. Komentotulkkia ei vaihdettu: %s SukunimiTuntematon käyttäjä on kirjautunut. Tuntematon käyttäjäympäristöKäyttäjää %s ei voitu poistaa: %s. Käyttäjää %s ei voitu lukita: %s. Käyttäjää %s ei voitu muokata: %s. Käyttäjän %s lukitusta ei voitu avata: %s. Käyttäjää %s ei ole olemassa. Käyttäjän tiedot ei täsmää. Varoitus: %ld Varoitus: Ryhmää ID:llä %jd ei ole olemassa. [VALITSIN...][VALITSIN...] [käyttäjä][VALITSIN...] ryhmä[VALITSIN...] käyttäjämerkkiä ”:” ei sallita salatussa salasanassapääsy evättyvarmuuskopiotiedosto ”%s” on olemassa eikä se ole normaali tiedostovarmuuskopiotiedoston koko ei täsmääväärä käyttäjä/ryhmä idväärä käyttäjä/ryhmä nimiasetustiedosto ”%s” on liian suurisitoutuminen LDAP-palvelimeen epäonnistuiei voitu sitoutua LDAP-palvelimelle, ensimmäinen yritys ”%s”: %sei voitu tehdä TLS-neuvottelua LDAP-palvelimen kanssaei voitu avata asetustiedostoa ”%s”: %sei voitu avata asetustiedostoa ”%s”: %sei voitu asettaa LDAP-protokollaa versioon %dei voitu avata asetustiedostoa ”%s”: %sei voitu määrittää turvaympäristöä ”%s”: %sei voitu hakea oletusturvaympäristöä: %sei voitu hakea turvaympäristöä ”%s”: %sei voitu avata ”%s”: %sei voitu lukea kohteesta ”%s”: %sei voitu asettaa oletusturvakontekstia ”%s”: %sei voitu avata ”%s”: %sei voitu kirjoittaa ”%s”: %sdataa ei löytynyt tiedostostamerkintä on jo tiedostossatiedostossa on jo merkintä samalla nimellävirhe yhdistettäessä kadm5-palvelimelle palvelua ”%s” varten realmissa ”%s”: %svirhe luotaessa ”%s”: %svirhe LDAP-hakemistomerkinnän luomisessa: %svirhe kotihakemiston luomisessa käyttäjällevirhe salasanan kryptauksessavirhe alustettaessa Cyrus SASL: %svirhe kerberos-kirjaston alustamisessavirhe ldap-kirjaston alustamisessavirhe moduulin lataamisessavirhe tiedoston lukitsemisessavirhe tiedoston lukitsemisessa: %svirhe päätteen attribuutteja muutettaessavirhe LDAP-hakemistomerkinnän luomisessa: %svirhe kotihakemiston siirtämisessä käyttäjällevirhe tiedoston avaamisessavirhe jäsennettäessä käyttäjänimeä ”%s” kerberoksellevirhe tiedoston lukemisessavirhe luettaessa päätteeltäVirhe luettaessa tietoja kohteelle ”%s” kerberokseltavirhe päätteen attribuutteja luettaessavirhe poistettaessa LDAP-hakemistomerkintää: %svirhe kotihakemiston poistamisessa käyttäjällevirhe LDAP-hakemistomerkinnän uudelleennimeämisessä: %svirhe symbolin selvityksessä moduulissavirhe salasanan asettamisessa käyttäjälle ”%s”virhe asetettaessa salasanaa LDAP-hakemiston kohteelle %s: %svirhe päätteen attribuutteja asetettaessavirhe tiedoston avaamisessavirhe tiedostoon kirjoittamisessayleinen virheryhmällä %jd ei ole nimeäryhmällä %s ei ole GID:täryhmällä ei ole nimeä eikä GID:täsisäinen alustusvirhevirheellinen IDepäkelpo attribuutin arvoepäkelpo moduuliyhdistelmävirheellinen numerokirjasto/moduuli versioristiriitamoduuli ”%s” ei määrittele ”%s”moduuli asetettu pois käytöstämoduulin versioristiriita ”%s”nimi sisältää kontrollimerkkejänimi sisältää virheellisen merkin ”%c”nimi sisältää ei-ASCII-merkkejänimi sisältää välilyöntejänimeä ei ole asetettunimi on liian pitkä (%zu > %d)nimi on liian lyhytnimi alkaa väliviivalla”%s”-attribuuttia ei löytynytei alustusfunktiota %s kohteessa ”%s”varjosalasanatiedostoa ei ole – otetaan pois käytöstäobjektia ei ole LDAP-hakemistossaei riittävästi oikeuksiaei suoriteta pääkäyttäjän oikeuksillaelementillä ei ollut %s-attribuuttiaelementillä ei ole %s-attribuuttiaonnistui"%s" ja "%s" moduuleita ei voi yhdistäätuntematon virhelukituksen avaaminen tyhjentäisi salasanakentänsalasanojen salausmuotoa ei tuetakäyttäjällä %jd ei ole nimeäKäyttäjällä %s ei ole UID:täkäyttäjällä ei ole nimeä eikä UID:täkäyttäjäobjektilla ei ole attribuuttia %skäyttäjäobjekti luotiin ilman attribuuttia ”%s”käyttäjä/ryhmä id käytössäkäyttäjä/ryhmä nimi käytössälibuser-0.60~dfsg/po/vi.po0000644000175000017500000010212112226342570015466 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # pclouds , 2003 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora/" "language/vi/)\n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Lỗi bỏ quyền.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Lỗi nội tại.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Lỗi khởi động PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Lỗi xác thực cho %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Lỗi nội tại của PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Không khớp người dùng.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[TÙY CHỌN...] người_dùng" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Lỗi phân tích đối số: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Chưa xác định tên người dùng.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Lỗi khởi động %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Người dùng %s không tồn tại.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Tài khoản bị khóa.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Tài khoản không bị khóa.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Không bao giờ" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Lần thay đổi cuối cùng:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Mật khẩu hết hiệu lực:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Mật khẩu không hoạt động:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Tài khoản hết hiệu lực:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[TÙY_CHỌN...] [người_dùng]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Chưa xác định tên người dùng, không có tên cho uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Đổi thông tin finger cho %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Họ và tên" #: apps/lchfn.c:146 msgid "Surname" msgstr "Họ" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Tên" #: apps/lchfn.c:167 msgid "Office" msgstr "Văn phòng" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Điện thoại Văn phòng" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Điện thoại Nhà" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Địa chỉ E-Mail" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Thông tin finger không đổi: lỗi input.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Đã thay đổi thông tin finger.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Thông tin finger không đổi: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Đổi Shell của %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Shell mới" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Đã đổi Shell.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[TÙY_CHỌN...] nhóm" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Chưa xác định tên nhóm.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Nhóm %s không tồn tại.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Chưa xác định cả -L và -U.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Chưa xác định tên nhóm, dùng %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Chưa xác định tên nhóm, không có tên cho gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Chưa xác định tên người dùng, dùng %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[TÙY_CHỌN...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Lỗi mở `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Lỗi tạo tài khoản cho `%s':định dạng dòng không đúng.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Từ chối tạo tài khoản cho UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Lỗi tạo thư mục home cho %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Lỗi đặt mật khẩu ban đầu cho %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Lỗi tạo tài khoản người dùng cho %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Thay đổi mật khẩu của %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Mật khẩu mới" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Xác nhận mật khẩu mới" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Mật khẩu không khớp, vui lòng thử lại.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Hủy bỏ thay đổi mật khẩu.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Lỗi thiết lập mật khẩu cho người dùng %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Lỗi thiết lập mật khẩu cho nhóm %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Đã thay đổi mật khẩu.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Thất bại tạo tài khoản: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Lỗi tạo %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Người dùng %s không thể bị xóa: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s không phải là số GID.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Nhóm %s không thể bị xóa: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "lỗi loại bỏ thư mục home cho người dùng" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Lỗi đặt mật khẩu cho người dùng %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Người dùng %s không thể bị khóa: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Người dùng %s không thể bị mở khóa: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Người dùng %s không thể bị thay đổi: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Nhóm %s không thể bị thay đổi: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s không có thư mục home cũ.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s không có thư mục home mới.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Lỗi chuyển %s thành %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "không thể mở tập tin cấu hình `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "" #: lib/error.c:62 msgid "success" msgstr "thành công" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "module bị tắt bởi cấu hình" #: lib/error.c:66 msgid "generic error" msgstr "lỗi thường" #: lib/error.c:68 msgid "not enough privileges" msgstr "không đủ quyền truy cập" #: lib/error.c:70 msgid "access denied" msgstr "truy cập bi từ chối" #: lib/error.c:72 msgid "bad user/group name" msgstr "tên người dùng/nhóm sai" #: lib/error.c:74 msgid "bad user/group id" msgstr "ID người dùng/nhóm sai" #: lib/error.c:76 msgid "user/group name in use" msgstr "tên người dùng/nhóm đang được dùng" #: lib/error.c:78 msgid "user/group id in use" msgstr "ID người dùng/nhóm đang được dùng" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "lỗi thao tác thuộc tính terminal" #: lib/error.c:82 msgid "error opening file" msgstr "lỗi mở tập tin" #: lib/error.c:84 msgid "error locking file" msgstr "lỗi khóa tập tin" #: lib/error.c:86 msgid "error statting file" msgstr "lỗi stat() tập tin" #: lib/error.c:88 msgid "error reading file" msgstr "lỗi đọc tập tin" #: lib/error.c:90 msgid "error writing to file" msgstr "lỗi ghi tập tin" #: lib/error.c:92 msgid "data not found in file" msgstr "không tìm thấy dữ liệu trong tập tin" #: lib/error.c:94 msgid "internal initialization error" msgstr "lỗi khởi tạo nội tại" #: lib/error.c:96 msgid "error loading module" msgstr "lỗi nạp module" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "lỗi phân giải ký hiệu trong module" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "không khớp phiên bản thư viện/module" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "lỗi lạ" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "không có hàm khởi tạo %s trong `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "không khớp phiên bản module trong `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "lỗi đọc thuộc tính terminal" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "lỗi đặt thuộc tính terminal" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "lỗi đọc từ terminal" #: lib/user.c:218 msgid "name is not set" msgstr "chưa đặt tên" #: lib/user.c:223 msgid "name is too short" msgstr "tên quá ngắn" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "tên chứa ký tự phi ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "tên chứa ký tự điều khiển" #: lib/user.c:249 msgid "name contains whitespace" msgstr "tên chứa khoảng trắng" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "tên chứa ký tự không hợp lệ `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "lỗi khóa tập tin: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "không thể mở `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "không thể stat() `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "không thể tạo `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "tập tin sao lưu `%s' tồn tại nhưng không phải là tập tin bình thường" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Lỗi đọc `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "không thể đọc từ `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "mục nhập đã có trong tập tin" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "không thể ghi vào `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "đối tượnc thực thể không có thuộc tính %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "không thực thi với quyền siêu người dùng" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "không có tập tin shadow -- tắt" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "lỗi kết nối kadm5 server cho dịch vụ `%s' trong realm `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "lỗi khởi tạo thư viện kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "lỗi phân tích tên người dùng `%s' cho kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "cấu trúc thực thể không có thuộc tính %s hoặc %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "thực thể không có thuộc tính %s hoặc %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "thực thể được tạo mà không có thuộc tính %s hoặc %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "lỗi đọc thông tin cho `%s' từ kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "thực thể không có thuộc tính %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "lỗi đặt mật khẩu cho `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos Password for Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "lỗi khởi tạo thư viện ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "không thể đặt giao thức LDAP cho phiên bản %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "không thể thỏa thuận TLS với LDAP server" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "không thể gắn vào LDAP server" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "đối tượng người dùng không có thuộc tính %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "đối tượng người dùng được tạo mà không có `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "lỗi hiệu chỉnh mục nhập thư mục LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "đối tượng không có thuộc tính %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "đối tượng không có thuộc tính %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "không có đối tượng đó trong thư mục LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "không tìm thấy thuộc tính `%s'" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "lỗi đặt mật khẩu trong thư mục LDAP cho %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Tên Server LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind Password" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Người dùng LDAP SASL" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL Authorization User" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Lỗi Cyrus SASL tạo người dùng: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Lỗi Cyrus SASL loại bỏ người dùng: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "lỗi khởi tạo Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "lỗi tạo thư mục home cho người dùng" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "lỗi loại bỏ thư mục home cho người dùng" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "lỗi di chuyển thư mục home cho người dùng" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Lỗi khởi tạo %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Đang tìm nhóm tên %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Đang tìm người dùng tên %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Không tìm thấy mục nhập.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Lớp đối tượng người dùng mặc định:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Tên thuộc tính người dùng mặc định:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Lấy thuộc tính người dùng mặc định:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Sao chép cấu trúc người dùng:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s không có thư mục home.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Lỗi loại bỏ %s: %s.\n" libuser-0.60~dfsg/po/uk.gmo0000644000175000017500000010441512226342605015642 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<? ?[5?Q?6?I@6d@;@7@.AW>A2A3A'A@%BNfBUB CMCF`CC"CSC5U&7V,^VVHV.V.!WQPWW(X X*X0X6 Y9WY!Y$YYJY:9ZOtZLZD[NV[)[0[\L\l\,\ \*\L\#H]Zl]V]=^@\^T^R^>E_>_F_l `Cw`Q`S aWaamaZ'bYbXb15c6gcqcKd1\d<dLd,eLEeeK.fvzf=fV/gHgsg0Ch<th+h?hQi*oi?iri,MjHzj^j0"k8SkGkCk4l.Ml2|l,l@lbm0mVm(n31nLenInHn^EoRoBoB:p[}pMpA'q'iqIqqq@r%Vr|r#r.r4r"sCBsTs<s3t6Lt6t#tRta1uuK3vOvJvNw4iw!wWwUx5nx;x?xC y@dyAy0y'z#@z(dz!z,z0zK {(Y{A{3{>{'7|K_||)}+}e}WA~W~R~KDF:pG=W*/FH7_\@=E~Mă<XOL4P;Q'ޅ6&#]ONц/ 'P/x>BC*LnQ0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora/language/uk/) Language: uk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); %s не має числа gid. %s не існує. %s не авторизований для зміни інформації finger про %s Значення %s неприпустиме «%s», використано «:»Обліковий запис дійсний до: %s Помилка створення облікового запису: %s. Обліковий запис заблоковано. Обліковий запис не заблоковано. Помилка аутентифікації для %s. -L та -U вказані одночасно. Не вдається встановити типовий контекст /etc/passwd Зміна інформації finger про %s. Зміна паролю користувача %s. Зміна оболонки для %s. Копіювання структури користувача: помилка Cyrus SASL при створенні користувача: %sпомилка Cyrus SASL під час вилучення користувача: %sДНІІмена стандартних атрибутів користувача: Стандартні класи об'єкта користувача: Адреса ел. поштиЗапис не знайдено. Помилка під час спроби зміни режиму для «%s»: %sПомилка зміни власника «%s»: %sПомилка створення %s: %s. Помилка створення облікового запису для «%s»: неправильний формат рядка. Помилка створення групи «%s»: %s Помилка створення групи для «%s» з GID %jd: %s Помилка створення домашнього каталогу для %s: %s Помилка під час спроби створення буфера пошти для %s: %s Помилка під час спроби створення буфера пошти: %s Помилка створення облікового запису для %s: %s Помилка ініціалізації %s: %s Помилка ініціалізації %s: %s. Помилка ініціалізації PAM. Помилка блокування %s: %s. Помилка переміщення %s у %s: %s. Помилка відкривання «%s»: %s. Помилка аналізу аргументів: %s. Помилка зчитування «%s»: %sПомилка читання з дескриптора файла %d. Помилка під час спроби вилучення буфера пошти: %sПомилка встановлення початкового паролю для %s: %s Помилка встановлення паролю для групи %s: %s. Помилка встановлення паролю користувача %s: %s. Помилка запису «%s»: %sНе вдалося позбутися привілеїв. Помилка зміни інформації про термін для %s: %s Помилка встановлення пароля для групи %s: %s Помилка встановлення пароля користувача %s: %s. Інформацію finger змінено. Інформацію finger не змінено: помилка вводу. Інформацію finger не змінено: %s. Повне ім'ядані GECOSдані GECOS для нового користувачаОтримання стандартних атрибутів користувача: Ім'яГрупа %jd не існує. Групу %s не можна вилучати: %s. Групу %s вилучити не вдається: %s. Групу %s не вдається заблокувати: %s Групу %s не вдається змінити: %s Групу %s не вдається змінити: %s. Групу %s не вдається розблокувати: %s Група %s не існує. Помилка створення групи: %s Група з GID %jd не мала назви. Домашній телефонНеактивний: %ld Неактивний: ніколи Внутрішня помилка PAM «%s». Внутрішня помилка. Неправильний ідентифікатор ID %s Неправильне типове значення для поля %s: %sНеправильний ID групи %s Неправильний ідентифікатор користувача %s Kerberos Admin PrincipalПароль Kerberos для Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind парольАвторизований користувач LDAP SASLКористувач LDAP SASLLDAP Search Base DNНазва сервера LDAPОстання зміна: %s Максимум: %ld Максимум: немає Мінімум: %ld Під час наступного входу до системи слід змінити парольНАЗВАЧИСЛОНіколиНова оболонкаНовий парольНовий пароль (підтвердження)Не вказана назва групи, немає назви для gid %d. Не вказана назва групи, використовується %s. Не вказано назву групи. Група з GID %jd не існує, її не буде вилучено. Немає нового домашнього каталогу для %s. Немає попереднього домашнього каталогу для %s. Не вказано ім'я користувача, немає імені для uid %d. Не вказано ім'я користувача, використовується %s. Не вказано ім'я користувача. ОфісСлужбовий телефонШЛЯХТермін дії паролю закінчується: %s Пароль неактивний: %s Зміну паролю скасовано. Пароль змінено. Паролі не збігаються, спробуйте ще раз. Запит виконаний невдало. Запит успішно виконаний. Відмова у створенні облікового запису з UID 0. Відмова від використання небезпечного типового домашнього каталогу «%s»Відмова від використання небезпечного типового домашнього каталогу «%s» для %s РЯДОКПошук групи з назвою %s. Пошук групи з номером ID %jd. Пошук користувача з іменем %s. Пошук користувача з номером %jd. Оболонку змінено. Оболонку змінено: %s По-батьковіАвтентифікація невідомого користувача. Невідомий контекст користувачаНе вдалося вилучити запис користувача %s: %s. Користувача %s не вдається заблокувати: %s. Користувача %s не вдається змінити: %s. Користувача %s не вдається розблокувати: %s. Користувач %s не існує. Користувач не збігається. Попередження: %ld Попередження: Група з номером %jd не існує. [ПАРАМЕТР...][ПАРАМЕТР...] [користувач][ПАРАМЕТР...] група[ПАРАМЕТР...] користувачНе допускається використання `:' у пароляхдоступ забороненийрезервний файл «%s» існує та не є звичайним файломневідповідність розміру файлу резервної копіїнеправильний ID користувача/групинеправильне ім'я користувача/групизмінити групу так, щоб вона мала вказану назвузмінити назву облікового запису користувачазагальне ім’я нового користувачафайл налаштувань «%s» надто довгийне вдається під'єднатись до сервера LDAPне вдається під'єднатись до сервера LDAP, перша спроба - «%s»: %sне вдається узгодити TLS с сервером LDAPне вдається відкрити файл налаштувань «%s»: %sне вдається прочитати файл налаштувань «%s»: %sне вдається встановити LDAP протокол для версії %dне вдається отримати інформацію про файл налаштувань «%s»: %sне вдається визначити контекст безпеки для «%s»: %sне вдається отримати типовий контекст безпеки: %sне вдається отримати контекст безпеки для «%s»: %sне вдається відкрити «%s»: %sне вдається прочитати з «%s»: %sне вдається задати значення типового контексту безпеки «%s»: %sне вдається отримати відомості про «%s»: %sне вдається записати «%s»: %sстворити загальносистемну групустворити загальносистемного користувачадані не знайдено у файлідата останньої зміни пароля у днях з 1.01.1970кількість днів між завершенням строку дії і показом першого попередження щодо ньогокаталог з файлами для нового користувачане створювати групи з назвою, що збігається з іменем користувачане створювати домашніх каталогівне створювати домашнього каталогу користувачане створювати буферів зберігання поштине вилучати окремої групи користувача, якщо таку було створенопредикат не має атрибута %sпредикат не має атрибутів %s або %sоб'єкт не має атрибута %sструктура не має атрибутів %s або %s предикат було створено без атрибутів %s або %sзапис вже існує у файлівже є запис з назвою, що конфліктуєпомилка з'єднання з kadm5 сервером для служби «%s» у області «%s»: %sпомилка створення «%s»: %sпомилка створення запису каталогу LDAP: %sпомилка створення домашнього каталогу користувачапомилка шифрування пароляпомилка ініціалізації Cyrus SASL: %sпомилка ініціалізації бібліотеки kerberosпомилка ініціалізації бібліотеки ldapпомилка завантаження модуляпомилка блокування файлупомилка блокування файлу: %sпомилка зміни атрибутівпомилка зміни запису каталогу LDAP: %sпомилка переміщення домашнього каталогу користувачапомилка відкривання файлупомилка аналізу імені користувача «%s» для kerberosпомилка читання файлупомилка читання з терміналапомилка читання інформації для «%s» з kerberosпомилка зчитування атрибутів терміналапомилка вилучення запису каталогу LDAP: %sпомилка вилучення домашнього каталогу користувачапомилка перейменування запису каталогу LDAP: %sпомилка визначення символу у модуліпомилка встановлення паролю для «%s»помилка встановлення паролю в каталозі LDAP для %s: %sпомилка встановлення атрибутів терміналапомилка отримання параметрів файлупомилка запису у файлфайл з записами щодо даних користувачівзагальна помилкаgid нової групипаспортне ім’я нового користувачаГрупа %jd не має назвигрупа %s не має GIDгрупи %s не знайденогрупа нового користувачагрупи не має ані назви, ані GIDдомашній каталогдомашній каталог нового користувачаномер домашнього телефону нового користувачавнутрішня помилка ініціалізаціїнеправильний ідентифікаторнекоректне значення атрибутанекоректне поєднання модулівнеправильний номерневідповідність версії модуля та бібліотекисписок параметрів, які застарівають, для користувачапоказати список учасників вказаної групи замість списку участі вказаного користувачасписок адміністраторів, яких слід додатисписок адміністраторів, яких слід вилучитисписок учасників групи, яких слід додатисписок учасників групи, яких слід вилучитизаблокувати обліковий записзаблокувати групумаксимальна кількість днів між змінами паролівмінімальна кількість днів між змінами паролівв модулі «%s» не визначено «%s»модуль вимкнено у налаштуванняхневідповідність версії модуля «%s»пересунути дані домашнього каталогуім'я містить керівні послідовностіім'я містить неправильний символ `%c'ім'я містить не-ASCII символиім'я містить пропускиім'я не встановленоім'я надто довге (%zu > %d)ім'я надто короткеім'я починається з рискиновий зашифрований парольновий пароль у форматі звичайного текстуне знайдено атрибут `%sнемає функції ініціалізації %s у «%s»немає файлу shadow — вимикаємонемає такого об'єкта у каталозі LDAPнедостатньо привілейвиконується без привілей адміністраторакількість днів з дати завершення строку дії пароля, які мають пройти для того, щоб обліковий запис вважався неактивнимоб'єкт не мав атрибут %sоб'єкт не має атрибута %sпоказувати у списку участі лише дані щодо назв, без UID/GIDдата завершення строку дії пароля у днях з 1.01.1970пароль користувача у форматі звичайного текступароль для групи у форматі звичайного текступопередньо хешований пароль користувачапопередньо хешований пароль для групинадсилати запит щодо всіх данихпрочитати новий зашифрований пароль з вказаного дескрипторапрочитати новий пароль у форматі звичайного тексту з вказаного дескрипторавилучити домашній каталог користувачаномер кімнати нового користувачавстановити GID для групивстановити UID користувачавстановити загальне ім’я користувачавстановити паспортне ім’я користувачавстановити пароль групи замість пароля користувачавстановити номер домашнього телефону користувачавстановити основний GID користувачавстановити номер кімнати користувачавстановити командну оболонку користувачавстановити прізвище користувачавстановити номер робочого телефону користувачакомандна оболонка для нового користувачавиконанопрізвище нового користувачаномер робочого телефону нового користувачане можна поєднувати модуль «%s» з модулем «%s»uid нового користувачаневідома помилкарозблокувати обліковий записрозблокувати групупри розблокуванні поле пароля буде очищенесхема шифрування паролів не підтримуєтьсякористувач %jd не має іменікористувач %s не має UIDкористувача %s не знайденокористувач не має ані назви, ані UIDоб'єкт користувача не має атрибута %sоб'єкт користувача створений без «%s»ID користувача/група вже використовуєтьсяім'я користувача/група вже використовуєтьсяlibuser-0.60~dfsg/po/gu.gmo0000644000175000017500000007320112226342604015633 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----9///| 0I0K0D1Dc1G1L1E=2v2d2N_3B3g3SY4W4Y5\_5&5.5O6Bb6.6697[7]8]s8D8E9B\9'9F9-:T<:.:j:|+;k;<(<W<r=s==D>c>K0?|?p?@:@;Y@<@R@D%AEjAUA:BCAB_BBB'C@C_C`yC#C8C;7DXsDJDE-2EG`E(E$EE*F@FYF"uFFF1F|Fw{GIG{=HRHU IbII^J JJT K=_KPK;Kn*LFLMLl.MMMN_OZpOtOo@P(P.P QbQDuQNQe RWoRhRO0SCSShS FTRTeT*{TxTU?ULU8V?HVNVTV,WYW^XauXX[aY{Yl9ZeZ2 [E?[[I\9[\F\I\\&]b]o]fV^V^__.c`]`t`QeaKamb\qb8bBcIJcfc`ct\d/de2eJerfcfafxIgmgW0h]hhspiHi5-jcj2j+j?j8"k[k8qk;kkpl_wl~lcVmLmHnCPn@n)n5n*5o?`o;oKo}(p`pXq`qRrLTrrcrs~2scsGt@]tZtqtvkuKuR.v>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Gujarati (http://www.transifex.com/projects/p/fedora/language/gu/) Language: gu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s એ gid સંખ્યા આપતું નથી. %s અસ્તિત્વમાં નથી %s એ %s ફીંગર જાણકારી બદલવા માટે સત્તાધિકારીત નથી %s કિંમત `%s': `:' પરવાનગી આપેલ નથીખાતાની મર્યાદા પૂરી થાય છે: %s ખાતું બનાવવામાં નિષ્ફળ: %s. ખાતાને તાળું લગાવાયેલ છે. ખાતાને તાળું લગાવાયેલ નથી. %s માટેનું સત્તાધિકરણ નિષ્ફળ. બંને -L અને -U સ્પષ્ટ કરેલ છે. /etc/passwd માટે મૂળભૂત સંદર્ભ સુયોજિત કરી શકતા નથી %s માટેની ફીંગર જાણકારી બદલી રહ્યા છીએ. %s માટે પાસવર્ડ બદલી રહ્યા છીએ. %s માટે શેલ બદલી રહ્યા છીએ. વપરાશકર્તા સંરચનાની નકલ કરી રહ્યા છીએ: વપરાશકર્તા બનાવવામાં Cyrus SASL ભૂલ: %sવપરાશકર્તા દૂર કરવામાં Cyrus SASL ભૂલ: %sમૂળભૂત વપરાશકર્તા લક્ષણોના નામો: મૂળભૂત વપરાશકર્તા ઓબ્જેક્ટ વર્ગો: ઈ-મેઈલ સરનામુંપ્રવેશ મળ્યો નથી. `%s' ની સ્થિતિને બદલતી વખતે ભૂલ: %s`%s' નો માલિક બદલવામાં ભૂલ: %s%s બનાવવામાં ભૂલ: %s. `%s' માટે ખાતુ બનાવવામાં ભૂલ: લીટીનું બંધારણ અયોગ્ય રીતે ઘડાયેલ છે. જૂથ `%s' બનાવવામાં ભૂલ: %s `%s' માટે GID %jd સાથે જૂથ બનાવવામાં ભૂલ: %s %s માટે ઘર ડિરેક્ટરી બનાવવામાં ભૂલ: %s %s માટે ખાતા જાણકારી બનાવવામાં ભૂલ: %s %s નો પ્રારંભ કરવામાં ભૂલ: %s %s નો પ્રારંભ કરવામાં ભૂલ: %s. PAM નો પ્રારંભ કરવામાં ભૂલ. %s જોવામાં ભૂલ: %s %s ને %s માં ખસેડતી વખતે ભૂલ: %s. `%s' ખોલવામાં ભૂલ: %s. દલીલોનું પદચ્છેદ કરવામાં ભૂલ: %s. `%s' વાંચવામાં ભૂલ: %sફાઇલ વર્ણનકર્તા %d માંથી વાંચતી વખતે ભૂલ. %s માટે પ્રારંભિક પાસવર્ડ સુયોજિત કરવામાં ભૂલ: %s જૂથ %s માટે પાસવર્ડ સુયોજિત કરવામાં ભૂલ: %s. વપરાશકર્તા %s માટે પાસવર્ડ સુયોજિત કરવામાં ભૂલ: %s. `%s' લખવામાં ભૂલ: %sખાસ ફાયદાઓ છોડી મૂકવામાં નિષ્ફળ. %s માટેની એજીંગ જાણકારી સુધારવામાં નિષ્ફળ: %s જૂથ %s માટે પાસવર્ડ સુયોજિત કરવામાં નિષ્ફળ: %s વપરાશકર્તા %s માટે પાસવર્ડ સુયોજિત કરવામાં નિષ્ફળ: %s. ફીંગર જાણકારી બદલાયેલ છે. ફીંગર જાણકારી બદલાયેલ નથી: ઈનપુટ ભૂલ. ફીંગર જાણકારી બદલાયેલ નથી: %s. પૂરું નામમૂળભૂત વપરાશકર્તા લક્ષણો મેળવી રહ્યા છીએ: આપેલ નામજૂથ %jd અસ્તિત્વમાં નથી જૂથ %s કાઢી શકાયું નથી: %s જૂથ %s કાઢી શકાયું નથી: %s. જૂથ %s ને તાળુ મારી શકાયું નહિં: %s જૂથ %s સુધારી શકાયું નહિં: %s જૂથ %s સુધારી શકાયું નહિં: %s. જૂથ %s નું તાળુ ખોલી શકાયું નહિં: %s જૂથ %s અસ્તિત્વમાં નથી. જૂથ બનાવવામાં નિષ્ફળતા: %s GID %jd વાળા જૂથ પાસે કોઈ કોઈ જૂથ નામ નથી. ઘરનો ફોનઅસક્રિય: %ld આંતરિક PAM ભૂલ `%s'. આંતરિક ભૂલ. અયોગ્ય ID %s ક્ષેત્ર %s ની મૂળભૂત કિંમત અયોગ્ય છે: %sઅયોગ્ય જૂથ ID %s અયોગ્ય વપરાશકર્તા ID %s કર્બરોઝનો સંચાલન નિયમસંચાલન નિયમ માટે કર્બરોઝ પાસવર્ડકર્બરોઝનું મનગમતું ક્ષેત્રLDAP બાઈન્ડ DNLDAP બાઈન્ડ પાસવર્ડLDAP SASL સત્તાધિકરણ વપરાશકર્તાLDAP SASL વપરાશકર્તાLDAP શોધનો આધાર DNLDAP સર્વર નામછેલ્લો ફેરફાર: %s મહત્તમ: %ld ન્યુનતમ: %ld ક્યારેય નહિંનવો શેલનવો પાસવર્ડનવો પાસવર્ડ (ખાતરી)કોઈ જૂથ નામ સ્પષ્ટ કરેલ નથી, gid %d માટે કોઈ નામ નથી. કોઈ જૂથ નામ સ્પષ્ટ કરેલ નથી, %s વાપરી રહ્યા છીએ. કોઈ જૂથ નામ સ્પષ્ટ કરેલ નથી. GID %jd વાળું કોઈ જૂથ અસ્તિત્વમાં નથી, દૂર કરતા નથી. %s માટે કોઈ નવી ઘર ડિરેક્ટરી નથી. %s માટે કોઈ જૂની ઘર ડિરેક્ટરી નથી. કોઈ વપરાશકર્તા નામ સ્પષ્ટ કરેલ નથી, uid %d માટે કોઈ નામ નથી. કોઈ વપરાશકર્તા નામ સ્પષ્ટ કરેલ નથી, %s વાપરી રહ્યા છીએ. કોઈ વપરાશકર્તા નામ સ્પષ્ટ કરેલ નથી. ઓફિસઓફિસનો ફોનપાસવર્ડની મર્યાદા પૂરી થાય છે: %s પાસવર્ડ નિષ્ક્રિય છે: %s પાસવર્ડ બદલવાનું નકારાઈ ગયું. પાસવર્ડ બદલાઈ ગયેલ છે. પાસવર્ડો બંધબેસતા નથી, ફરીથી પ્રયત્ન કરો. પ્રોમ્પ્ટ કરવામાં નિષ્ફળ. પ્રોમ્પ્ટ કરવામાં સફળતા મળી. UID ૦ સાથે ખાતું બનાવવાનું નકારી રહ્યા છીએ. મૂળભૂત દ્દારા જોખમકારક ઘર ડિરેક્ટરી `%s' ને વાપરવાની ના પાડી રહ્યા છેમૂળભૂત દ્દારા %s માટે જોખમકારક ઘર ડિરેક્ટરી `%s' ને વાપરવાની ના પાડી રહ્યા છે %s નામવાળા જૂથ માટે શોધ કરી રહ્યા છીએ. ID %jd વાળા જૂથ માટે શોધ કરી રહ્યા છીએ. %s નામવાળા વપરાશકર્તા માટે શોધ કરી રહ્યા છીએ. ID %jd વાળા વપરાશકર્તા માટે શોધ કરી રહ્યા છીએ. શેલ બદલાયેલ છે. શેલ બદલાયેલ નથી: %s અટકઅજ્ઞાત વપરાશકર્તા સત્તાધિકારીત થયો. અજ્ઞાત વપરાશકર્તા સંદર્ભવપરાશકર્તા %s કાઢી શકાયો નથી: %s. વપરાશકર્તા %s ને તાળુ મારી શકાયું નથી: %s. વપરાશકર્તા %s સુધારી શકાયો નહિં: %s. વપરાશકર્તા %s ને તાળુ ખોલી શકાયું નહિં: %s. વપરાશકર્તા %s અસ્તિત્વમાં નથી. વપરાશકર્તા બંધબેસતો નથી. ચેતવણી: %ld ચેતવણી: ID %jd સાથેનું જૂથ અસ્તિત્વમાં નથી. [OPTION...][OPTION...] [user][OPTION...] જૂથ[OPTION...] વપરાશકર્તા`:' એનક્રિપ્ટ થયેલ પાસવર્ડમાં પરવાનગી આપેલ નથીપરવાનગી નથીબેકઅપ ફાઈલ `%s' અસ્તિત્વમાં છે અને એ નિયમિત ફાઈલ નથીબેકઅપ ફાઈલ માપ બંધબેસતું નથીખરાબ વપરાશકર્તા/જૂથ idખરાબ વપરાશકર્તા/જૂથ નામરુપરેખાંકન ફાઈલ `%s' ખૂબ મોટી છેLDAP સર્વરમાં જોડાણ કરી શક્યા નહિંLDAP સર્વરમાં જોડાણ કરી શક્યા નહિં, `%s' ને પ્રથમ વાર લેતાં: %sTLS ને LDAP સર્વર સાથે અવગણી શક્યા નહિંરુપરેખાંકન ફાઈલ `%s' ખોલી શક્યા નહિં: %sરુપરેખાંકન ફાઈલ `%s' વાંચી શક્યા નહિં: %sLDAP પ્રોટોકોલને આવૃત્તિ %d સાથે સુયોજિત કરી શક્યા નહિંરુપરેખાંકન ફાઈલ `%s' કહી શક્યા નહિં: %s`%s' માટેનો સુરક્ષા સંદર્ભ નક્કી કરી શક્યા નહિં: %sમૂળભૂત સુરક્ષા સંદર્ભ મેળવી શક્યા નહિં: %s`%s' નો સુરક્ષા સંદર્ભ મેળવી શક્યા નહિં: %s`%s' ખોલી શક્યા નહિં: %s`%s' માંથી વાંચી શક્યા નહિં: %s`%s' માં મૂળભૂત સુરક્ષા સંદર્ભ સુયોજિત કરી શક્યા નહિં: %s`%s' ની સ્થિતિ કહી શક્યા નહિં: %s`%s' માં લખી શક્યા નહિં: %sફાઈલમાં કોઈ માહિતી મળી નથીએન્ટીટી પાસે કોઈ %s લક્ષણ નથીએન્ટીટી પાસે કોઈ %s અથવા %s લક્ષણો નથીએન્ટીટી ઓબ્જેક્ટ પાસે કોઈ %s લક્ષણ નથીએન્ટીટી સંરચના પાસે કોઈ %s અથવા %s લક્ષણો નથીએન્ટીટી કોઈ %s અથવા %s લક્ષણો સાથે બની નથીફાઈલમાં પ્રવેશ પહેલાથી જ હાજર છેએકબીજા સાથે અથડાતા નામ સાથે નોંધણી પહેલેથી જ ફાઇલમાં હાજર છેkadm5 સર્વર સાથે `%s' સેવા માટે મનગમતા ક્ષેત્ર `%s' માં જોડાણ કરવામાં ભૂલ: %s`%s' બનાવવામાં ભૂલ: %sLDAP ડિરેક્ટરી પ્રવેશ બનાવવામાં ભૂલ: %sવપરાશકર્તા માટે ઘર ડિરેક્ટરી બનાવવામાં ભૂલપાસવર્ડ એનક્રિપ્ટ કરવામાં ભૂલCyrus SASL નો પ્રારંભ કરવામાં ભૂલ: %sકર્બરોઝ લાઈબ્રેરીનો પ્રારંભ કરવામાં ભૂલldap લાઈબ્રેરીનો પ્રારંભ કરવામાં ભૂલમોડ્યુલ લાવવામાં ભૂલફાઈલને તાળુ મારવામાં ભૂલફાઈલને તાળુ લગાવવામાં ભૂલ: %sટર્મિનલની લાક્ષણિકતાઓ સુધારવામાં ભૂલLDAP ડિરેક્ટરી પ્રવેશ સુધારવામાં ભૂલ: %sવપરાશકર્તા માટે ઘર ડિરેક્ટરી ખસેડવામાં ભૂલફાઈલ ખોલવામાં ભૂલકર્બરોઝ માટે વપરાશકર્તા નામ `%s' નું પદચ્છેદ કરવામાં ભૂલફાઈલ વાંચવામાં ભૂલટર્મિનલમાંથી વાંચવામાં ભૂલકર્બરોઝમાંથી `%s' માટે જાણકારી વાંચવામાં ભૂલટર્મિનલની લાક્ષણિકતાઓ વાંચવામાં ભૂલLDAP ડિરેક્ટરી પ્રવેશ દૂર કરવામાં ભૂલ: %sવપરાશકર્તા માટે ઘર ડિરેક્ટરી દૂર કરવામાં ભૂલLDAP ડિરેક્ટરી પ્રવેશનું નામ બદલવામાં ભૂલ: %sમોડ્યુલમાં સંજ્ઞા ઉકેલવામાં ભૂલ`%s' માટે પાસવર્ડ સુયોજિત કરવામાં ભૂલLDAP ડિરેક્ટરીમાં %s માટે પાસવર્ડ સુયોજિત કરવામાં ભૂલ: %sટર્મિનલની લાક્ષણિકતાઓ સુયોજિત કરવામાં ભૂલફાઈલની સ્થિતિ કહેવામાં ભૂલફાઈલમાં લખવામાં ભૂલસામાન્ય ભૂલજૂથ %jd ને કોઈ નામ નથીજૂથ %s ને કોઈ GID નથીજૂથને નહિં તો નામ કે GID છેઆંતરિક પ્રારંભિક ભૂલઅયોગ્ય IDઅયોગ્ય ગુણધર્મ કિંમતઅયોગ્ય મોડ્યુલ સંયોજનઅયોગ્ય નંબરલાઈબ્રેરી/મોડ્યુલની આવૃત્તિ બંધબેસતી નથીમોડ્યુલ `%s' એ `%s' વ્યાખ્યાયિત કરતું નથીરુપરેખાંકન દ્વારા મોડ્યુલ નિષ્ક્રિય થઈ ગયેલ છે`%s' માં મોડ્યુલની આવૃત્તિ બંધબેસતી નથીનામ નિયંત્રક અક્ષરો સમાવે છેનામ અયોગ્ય અક્ષર `%c' સમાવે છેનામ બિન-ASCII અક્ષરો સમાવે છેનામ ખાલી જગ્યાઓ સમાવે છેનામ સુયોજિત નથીનામ ખૂબ લાંબુ છે (%zu > %d)નામ ખૂબ નાનું છેનામ હાયફન (~) થી શરૂ થાય છેકોઈ `%s' લક્ષણ મળ્યું નથીકોઈ પ્રારંભ વિધેય %s નથી `%s' માંકોઈ શેડો ફાઈલ હાજર નથી -- નિષ્ક્રિય કરી રહ્યા છીએLDAP ડિરેક્ટરીમાં આવો કોઈ ઓબ્જેક્ટ નથીકોઈ પૂરતા ફાયદાકારક ક્ષેત્રો નથીશ્રેષ્ઠ વપરાશકર્તાની ફાયદાકારક સ્થિતિ સાથે નથી ચલાવી રહ્યાઓબ્જેક્ટ પાસે કોઈ %s લક્ષણ નહતુંઓબ્જેક્ટ પાસે કોઈ %s લક્ષણ નથીસફળતા`%s' અને `%s' મોડ્યુલોને ભેગા કરી શકાતા નથીઅજ્ઞાત ભૂલતાળું ખોલવાનું પાસવર્ડ ક્ષેત્રને ખાલી બનાવે છેબિનઆધારભૂત પાસવર્ડ એનક્રિપ્શન યોજનાવપરાશકર્તા %jd ને કોઈ નામ નથીવપરાશકર્તા %s ને કોઈ UID નથીવપરાશકર્તાને ક્યાં તો નામ કે UID નથીવપરાશકર્તા ઓબ્જેક્ટ પાસે કોઈ %s લક્ષણ નહતુંવપરાશકર્તા ઓબ્જેક્ટ કોઈ `%s' સાથે બન્યું નહતુંવપરાશકર્તા/જૂથ id વપરાશમાં છેવપરાશકર્તા/જૂથ નામ વપરાશમાં છેlibuser-0.60~dfsg/po/nl.po0000644000175000017500000011411112226342567015471 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Geert Warrink , 2009,2011-2013 # Miloslav Trmač , 2011 # Peter van Egdom , 2004, 2005, 2006, 2007, 2008 # Tino Meinen , 2003 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora/language/" "nl/)\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Laten vallen privileges mislukt.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Interne fout.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "" "%s is niet geautoriseerd om de finger informatie van %s te veranderen\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Onbekende gebruiker context" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Instellen van standaard context voor /etc/passwd mislukt\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Fout bij initialiseren PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Authenticatie mislukt voor %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Interne PAM fout `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Authenticatie voor onbekende gebruiker.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Gebruikers komen niet overeen.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "vraag om alle informatie" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "toon veroudering parameters voor de gebruiker" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "minimale aantal dagen tussen wachtwoordveranderingen" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "DAGEN" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "maximale aantal dagen tussen wachtwoordveranderingen" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "datum van de laatste wachtwoordverandering in dagen sinds 1/1/70" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "aantal dagen na wachtwoord vervaldatum als account als inactief beschouwd " "wordt" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "wachtwoord vervaldatum in dagen sinds 1/1/70" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" "dagen voor vervaldatum te beginnen met het waarschuwen van de gebruiker" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTIE...] gebruiker" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Fout bij verwerken argumenten: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Geen gebruikersnaam opgegeven.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Fout bij initialiseren van %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Gebruiker %s bestaat niet.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Account is vergrendeld.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Account is niet vergrendeld.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maximum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Maximum:»geen\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Waarschuwing:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inactief:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Inactief:»nooit\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Wachtwoord moet bij de volgende keer inloggen vernieuwd worden" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nooit" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Laatste verandering:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Wachtwoord verloopt:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Wachtwoord inactief:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Account verloopt:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Aanpassen verloop informatie voor %s mislukt: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTIE...] [gebruiker]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Geen gebruikersnaam opgegeven, geen naam voor uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Finger informatie veranderen voor %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Volledige naam" #: apps/lchfn.c:146 msgid "Surname" msgstr "Achternaam" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Voornaam" #: apps/lchfn.c:167 msgid "Office" msgstr "Werk" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefoon werk" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefoon thuis" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Email adres" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger informatie niet veranderd: input fout.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger informatie veranderd.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger informatie niet veranderd: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Shell veranderen voor %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nieuwe shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell niet veranderd: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell veranderd.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid voor nieuwe groep" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "NUM" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "maak een systeemgroep aan" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTIE...] groep" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Geen groepsnaam opgegeven.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Ongeldige groep ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Aanmaken groep mislukt: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Groep %s bestaat niet.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Groep %s kon niet worden verwijderd: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "stel GID in voor groep" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "verander groep om de voornaam te gebruiken" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NAAM" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "platte tekst wachtwoord voor gebruik met groep" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "STRING" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "pre-hashed wachtwoord voor gebruik met groep" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "lijst van toe te voegen beheerders" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "lijst van te verwijderen beheerders" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "lijst van toe te voegen groepsleden" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "lijst van te verwijderen groepsleden" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "sluit groep" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "open groep" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Zowel -L als -U opgegeven.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Instellen wachtwoord voor groep %s mislukt: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Groep %s kon niet worden vergrendeld: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Groep %s kon niet worden ontgrendeld: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Groep %s kon niet worden aangepast: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Fout bij opzoeken %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "toon leden van een opgegeven groep in plaats van de groepslidmaatschappen " "van de opgegeven gebruiker" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "toon alleen lidmaatschap informatie volgens naam en niet UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Geen groepsnaam opgegeven, gebruik %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Geen groepsnaam opgegeven, geen naam voor gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Geen gebruikersnaam opgegeven, gebruik %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s bestaat niet.\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "bestand met gebruikersinformatie records" #: apps/lnewusers.c:47 msgid "PATH" msgstr "PAD" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "maak geen persoonlijke mappen aan" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "maak geen mail spools aan " #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTIE...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Fout bij openen `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Fout bij aanmaken account voor `%s': regel onjuist opgemaakt.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Ongeldige gebruiker ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Aanmaken account met UID 0 geweigerd.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Fout bij aanmaken groep voor `%s' met GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Weigering om standaard de gevaarlijke persoonlijke map `%s' voor %s te " "gebruiken\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Fout bij aanmaken persoonlijke map voor %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Fout bij het aanmaken van mail spool voor %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Fout bij instellen initiële wachtwoord voor %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Fout bij aanmaken gebruiker account voor %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "stel groepswachtwoord in plaats van gebruikerswachtwoord" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "nieuw platte tekst wachtwoord" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "nieuw versleuteld wachtwoord" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "lees nieuw platte tekst wachtwoord van gegeven descriptor" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "lees nieuw versleuteld wachtwoord van gegeven descriptor" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Wachtwoord veranderen voor %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nieuw wachtwoord" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nieuw wachtwoord (bevestigen)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Wachtwoorden komen niet overeen, probeer opnieuw.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Wachtwoord veranderen geannuleerd.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Fout bij het lezen van bestand descriptor %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Fout bij instellen wachtwoord voor gebruiker %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Fout bij instellen wachtwoord voor groep %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Wachtwoord veranderd.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "maak een systeemgebruiker aan" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "GECOS informatie voor nieuwe gebruiker" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "persoonlijke map voor nieuwe gebruiker" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "map met bestanden voor de nieuwe gebruiker" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "shell voor nieuwe gebruiker" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "uid voor nieuwe gebruiker" #: apps/luseradd.c:69 msgid "group for new user" msgstr "groep voor nieuwe gebruiker" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "maak geen persoonlijke map aan voor gebruiker" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "maak geen groep aan met dezelfde naam als de gebruiker" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "algemene naam voor nieuwe gebruiker" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "voornaam voor nieuwe gebruiker" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "achternaam voor niruwe gebruiker" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "kamernummer voor nieuwe gebruiker" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "telefoonnummer voor nieuwe gebruiker" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "thuistelefoonnummer voor nieuwe gebruiker" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Groep %jd bestaat niet\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Fout bij aanmaken groep `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Aanmaken account mislukt: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Fout bij aanmaken %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Fout bij het aanmaken van mail spool: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" "verwijder de privé groep van de gebruiker niet, als de gebruiker die heeft" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "verwijder de persoonlijke map van de gebruiker" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Gebruiker %s kon niet worden verwijderd: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s heeft geen gid nummer.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Er bestaat geen groep met GID %jd, kan niet verwijderen.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Groep met GID %jd heeft geen groepsnaam.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Groep %s kon niet worden verwijderd: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "fout bij verwijderen persoonlijke map voor gebruiker" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Fout bij het verwijderen van mail spool: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS informatie" #: apps/lusermod.c:60 msgid "home directory" msgstr "persoonlijke map" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "verplaats inhoud van persoonlijke map" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "stel shell voor gebruiker in" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "stel UID voor gebruiker in" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "stel primaire GID voor gebruiker in" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "verander inlognaam voor gebruiker" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "platte tekst wachtwoord voor de gebruiker" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "pre-hashed wachtwoord voor de gebruiker" #: apps/lusermod.c:75 msgid "lock account" msgstr "sluit account af" #: apps/lusermod.c:78 msgid "unlock account" msgstr "open account" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "stel algemene naam voor gebruiker in" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "stel voornaam voor gebruiker in" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "stel achternaam van gebruiker in" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "stel kamernummer voor gebruiker in" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "stel telefoonnummer voor gebruiker in" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "stel huistelefoonnummer voor gebruiker in" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Instellen wachtwoord voor gebruiker %s mislukt: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Gebruiker %s kon niet worden vergrendeld: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Gebruiker %s kon niet worden ontgrendeld: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Waarschuwing: Groep met ID %jd bestaat niet.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Gebruiker %s kon niet worden aangepast: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Groep %s kon niet worden aangepast: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Geen oude persoonlijke map voor %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Geen nieuwe persoonlijke map voor %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Fout bij verplaatsen van %s naar %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "kon configuratiebestand `%s' niet openen: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "kon de status van configuratiebestand `%s' niet opvragen: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "configuratiebestand `%s' is te groot" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "kon configuratiebestand `%s' niet lezen: %s" #: lib/error.c:62 msgid "success" msgstr "succes" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "module uitgezet door configuratie" #: lib/error.c:66 msgid "generic error" msgstr "generieke fout" #: lib/error.c:68 msgid "not enough privileges" msgstr "te weinig rechten" #: lib/error.c:70 msgid "access denied" msgstr "toegang geweigerd" #: lib/error.c:72 msgid "bad user/group name" msgstr "verkeerde gebruiker/groep naam" #: lib/error.c:74 msgid "bad user/group id" msgstr "verkeerde gebruiker/groep id" #: lib/error.c:76 msgid "user/group name in use" msgstr "gebruiker/groep naam in gebruik" #: lib/error.c:78 msgid "user/group id in use" msgstr "gebruiker/groep id in gebruik" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "fout bij manipuleren terminal attributen" #: lib/error.c:82 msgid "error opening file" msgstr "fout bij openen bestand" #: lib/error.c:84 msgid "error locking file" msgstr "fout bij vergrendelen bestand" #: lib/error.c:86 msgid "error statting file" msgstr "fout bij opvragen status van bestand" #: lib/error.c:88 msgid "error reading file" msgstr "fout bij lezen bestand" #: lib/error.c:90 msgid "error writing to file" msgstr "fout bij schrijven naar bestand" #: lib/error.c:92 msgid "data not found in file" msgstr "data niet in bestand gevonden" #: lib/error.c:94 msgid "internal initialization error" msgstr "interne initialisatie fout" #: lib/error.c:96 msgid "error loading module" msgstr "fout bij laden module" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "fout bij oplossen van symbool in module" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "bibliotheek/module versies komen niet overeen" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "ontgrendelen zou het wachtwoord veld leeg maken" #: lib/error.c:105 msgid "invalid attribute value" msgstr "ongeldige attribuut waarde" #: lib/error.c:107 msgid "invalid module combination" msgstr "ongeldige module combinatie" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "persoonlijke map voor nieuwe gebruiker" #: lib/error.c:115 msgid "unknown error" msgstr "onbekende fout" #: lib/misc.c:240 msgid "invalid number" msgstr "ongeldig nummer" #: lib/misc.c:254 msgid "invalid ID" msgstr "ongeldig ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "geen initialisatie functie %s in `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "module versies komen niet overeen in `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "module `%s' definieert `%s' niet" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "fout bij lezen terminal attributen" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "fout bij instellen terminal attributen" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "fout bij lezen van terminal" #: lib/user.c:218 msgid "name is not set" msgstr "naam is niet ingesteld" #: lib/user.c:223 msgid "name is too short" msgstr "naam is te kort" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "naam is te lang (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "naam bevat niet-ASCII karakters" #: lib/user.c:242 msgid "name contains control characters" msgstr "naam bevat controle karakters" #: lib/user.c:249 msgid "name contains whitespace" msgstr "naam bevat spaties of tabs" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "naam begint met een koppelteken" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "naam bevat ongeldig karakter `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "gebruiker %s heeft geen UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "gebruiker %s werd niet gevonden" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "groep %s heeft geen GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "groep %s werd niet gevonden" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "gebruiker %jd heeft geen naam" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "groep %jd heeft geen naam" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "gebruiker heeft zowel geen naam als geen UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "groep heeft zowel geen naam als geen GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" "Weigeren om standaard de gevaarlijke persoonlijke map `%s' te gebruiken" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Ongeldige standaard waarde van veld %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "fout bij vergrendelen bestand: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "kon standaard beveiliging context niet verkrijgen: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "kon beveiliging context van `%s' niet verkrijgen: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "kon standaard beveiliging context niet instellen naar `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "kon beveiliging context voor `%s' niet bepalen: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "kon `%s' niet openen: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "kon status van `%s' niet opvragen: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "fout bij aanmaken `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "back-up bestand `%s' bestaat en is geen regulier bestand" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Fout bij veranderen eigenaar van `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Fout bij het veranderen van de mode van `%s': %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Fout bij lezen van `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Fout bij schrijven van `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "grootte van het back-up bestand komt niet overeen" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s waarde `%s': `:' niet toegestaan" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "kon niet lezen van `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "item reeds aanwezig in bestand" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "kon niet naar `%s' schrijven: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "entiteit object heeft geen %s attribuut" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "item met conflict gevende naam is reeds aanwezig in bestand" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' niet toegestaan in versleuteld wachtwoord" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "fout bij versleutelen wachtwoord" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "de `%s' en `%s' modules kunnen niet gecombineerd worden" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "zal niet uitvoeren met superuser rechten" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "geen schaduwbestand aanwezig -- uitzetten" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "fout bij verbinden met de kadm5-server voor service `%s' in omgeving `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "fout bij initialiseren kerberos bibliotheek" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "fout bij verwerken gebruikersnaam `%s' voor kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "entiteit structuur heeft geen %s of %s attributen" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entiteit heeft geen %s of %s attributen" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entiteit is aangemaakt zonder %s of %s attributen" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "fout bij lezen van informatie voor `%s' van kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entiteit heeft geen %s attribuut" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "fout bij instellen wachtwoord voor `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos omgeving" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos wachtwoord voor Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "fout bij initialiseren ldap bibliotheek" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "kon LDAP protocol niet instellen op versie %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "kon de TLS niet onderhandelen met LDAP server" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "kon niet binden met de LDAP server" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "kon niet binden met de LDAP server, eerste poging als `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "gebruiker object had geen %s attribuut" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "gebruiker object is aangemaakt zonder `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "fout bij aanmaken LDAP map item: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "fout bij aanpassen LDAP map item: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "fout bij hernoemen LDAP map item: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "object had geen %s attribuut" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "fout bij verwijderen LDAP map ingang: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "object heeft geen %s attribuut" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "niet ondersteund wachtwoord encryptie schema" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "zo'n object niet gevonden in LDAP map" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "geen `%s' attribuut gevonden" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "fout bij instellen wachtwoord in LDAP map voor %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP server naam" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP zoek basis DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind wachtwoord" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL gebruiker" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL autorisatie gebruiker" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL fout bij aanmaken gebruiker: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL fout bij verwijderen gebruiker: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "fout bij initialiseren Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "fout bij aanmaken persoonlijke map voor gebruiker" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "fout bij verwijderen persoonlijke map voor gebruiker" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "fout bij verplaatsen persoonlijke map voor gebruiker" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Fout bij initialiseren %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Ongeldig ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Zoeken naar groep met ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Zoeken naar groep met naam %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Zoeken naar gebruiker met ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Zoeken naar gebruiker met naam %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Ingang niet gevonden.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Opvragen geslaagd.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Opvragen mislukt.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Standaard gebruiker object klassen:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Standaard gebruiker attribuut namen:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Ophalen standaard gebruiker attributen:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Gebruiker structuur kopiëren:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s heeft geen persoonlijke map.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Fout bij verwijderen %s: %s.\n" libuser-0.60~dfsg/po/it.gmo0000644000175000017500000005065512226342604015644 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----//B/ 0/0E0e0}00&0>0(1H1g1#11111( 2#42X2i2+|232"2N2+N3;z37363'%4(M4%v44*44)5 /5(P5<y5>5=5"36#V6Az63636#$7?H7)7 7,777+ 8,98*f8,8-8+89!295T9 99999.9:,:E:(a:: :::::;; /; =;J; N;Z;i;>;.; ;9<(L<-u<8<+< =)=1=B=Y=p==3= ==(>R@>[>>? /? P?q??? ??+?*@,A@+n@@@@-@ AA1AEA$YA~A7A0AAB/(B%XBD~B/B5B6)C9`C<C=C?D;UDDDED$E 8EYE$sE,E!E<E4$FYF1uFUF"F8 G8YG%G.G7G0H PHqHH3H6H:IQI5oII"I<I2#J7VJ8J3J,J0(KGYK6KKKL"LBL'`L"L L L!LL8M!GM%iM8M'M-M$NCNbN"{NNNN/N-#O1QOO.O$O$OP1POP1bP+PPP&P+#Q+OQ{QQ>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Italian (http://www.transifex.com/projects/p/fedora/language/it/) Language: it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s privo di un numero gid. %s non esiste %s non è autorizzato a cambiare le informazioni di finger per %s %s valore `%s': `:' non permessoScadenza account: %s Creazione account fallita: %s. L'account è bloccato. L'account non è bloccato. Autenticazione fallita per %s. Sono stati specificati sia -L che -U. Impossibile impostare il contesto predefinito per /etc/passwd Modifica informazioni di finger per %s. Cambio della password per %s. Cambio della shell per %s. Copia della struttura dell'utente: errore Cyrus SASL nella creazione dell'utente: %serrore Cyrus SASL nella rimozione dell'utente: %sNomi attributi dell'utente predefiniti: Classi oggetto utente predefinite: Indirizzo e-mailVoce non trovata. Errore modifica della modalità di `%s': %sErrore nel cambiamento del proprietario di '%s': %sErrore nella creazione di %s: %s. Errore nella creazione dell'account per `%s': riga impropriamente formattata. Errore nella creazione del gruppo `%s': %s Errore nella creazione del gruppo per '%s' con GID %jd: %s Errore nella creazione della home directory per %s: %s Errore nella creazione dell'account utente per %s: %s Errore nell'inizializzazione di %s: %s Errore nell'inizializzazione di %s: %s. Errore nell'inizializzazione di PAM. Errore nella ricerca di %s: %s Errore nello spostamento di %s in %s: %s. Errore nell'aprire `%s': %s. Errore nell'analisi degli argomenti: %s. Errore nella lettura di `%s': %sErrore leggendo dal file descriptor %d. Errore nell'impostazione della password iniziale per %s: %s Errore nell'impostazione della password per il gruppo %s: %s. Errore nell'impostazione della password per l'utente %s: %s. Errore nella scrittura di `%s': %sImpossibile rimuovere i privilegi. Impossibile modificare le informazioni sulla scadenza per %s: %s Impostazione password per il gruppo %s fallita: %s Impostazione password per l'utente %s fallita: %s. Informazioni di finger modificate. Le informazioni di finger non sono cambiate: errore di input. Informazioni di finger non cambiate: %s. Nome completoRecupero attributi predefiniti dell'utente: NomeIl gruppo %jd non esiste. Il gruppo %s non può essere eliminato: %s Il gruppo %s non può essere eliminato: %s. Il gruppo %s non può essere bloccato: %s Il gruppo %s non può essere modificato: %s Il gruppo %s non può essere modificato: %s. Il gruppo %s non può essere sbloccato: %s Il gruppo %s non esiste. Creazione del gruppo fallita: %s Il gruppo con GID %jd è privo di un nome di gruppo. Telefono casaInattivo: %ld Errore PAM interno `%s'. Errore interno. ID %s non valido Valore predefinito non valido del campo %s: %sID gruppo %s non valido ID utente %s non valido Admin Principal di kerberosPassword di kerberos per Admin PrincipalRealm di kerberosLDAP Bind DNPassword LDAP BindAutorizzazione utente LDAP SASLUtente LDAP SASLBase DN di ricerca LDAPNome del server LDAPUltima modifica: %s Massimo: %ld Minimo: %ld MaiNuova shellNuova passwordNuova password (conferma)Nessun nome di gruppo specificato, nessun nome per il gid %d. Nessun nome di gruppo specificato, usando %s. Nessun nome gruppo specificato. Non esiste nessun gruppo con GID %jd, nessuna rimozione. Nessuna nuova directory di home per %s. Nessuna precedente directory di home per %s. Nessun nome utente specificato, nessun nome per uid %d. Nessun nome utente specificato, usando %s. Nessun nome utente specificato. UfficioTelefono ufficioScadenza password: %s Password inattiva: %s Cambio di password annullato. Password cambiata. Le password non corrispondono, riprovare di nuovo. Esecuzione dei comandi fallita. Comandi eseguiti con successo Rifiuto di creare un account con UID 0. Rifiuto di usare la directory home inappropriata `%s' per impostazione predefinitaRifiuto di usare la directory home inappropriata `%s' per %s per impostazione predefinita Ricerca del gruppo di nome %s. Ricerca del gruppo con ID %jd. Ricerca dell'utente di nome %s. Ricerca dell'utente con ID %jd. Modificata la shell. La shell non è cambiata: %s CognomeAutenticato utente sconosciuto. Contesto utente sconosciutoL'utente %s non può essere eliminato: %s. L'utente %s non può essere bloccato: %s. L'utente %s non può essere modificato: %s. L'utente %s non può essere sbloccato: %s. L'utente %s non esiste. Utente non corrispondente. Attenzione: %ld Attenzione: Il gruppo con ID %jd non esiste. [OPZIONE...][OPZIONE...] [utente][OPZIONE...] gruppo[OPZIONE...] utente`:' non permesso in password cifrateaccesso negatoil file di backup `%s' esiste e non è un file regolaredimensione non corrispondente nel file di backupID utente/gruppo erratonome utente/gruppo erratoil file di configurazione `%s' è troppo grandeimpossibile collegarsi al server LDAPimpossibile collegarsi al server LDAP, primo tentativo come `%s': %simpossibile negoziare il TLS con il server LDAPimpossibile aprire il file di configurazione `%s': %simpossibile leggere il file di configurazione `%s': %simpossibile impostare il protocollo LDAP alla versione %dimpossibile fare lo stat del file di configurazione `%s': %simpossibile determinare il contesto di sicurezza per `%s': %simpossibile recuperare il contesto di sicurezza predefinito: %simpossibile recuperare il contesto di sicurezza di `%s': %simpossibile aprire `%s': %simpossibile leggere da `%s': %simpossibile impostare il contesto di sicurezza predefinito a `%s': %simpossibile fare lo stat di `%s': %simpossibile scrivere su `%s': %sdati non trovati nel filel'entità non ha nessun attributo %sl'entità non ha nessun %s o attributi di %snessun attributo %s per l'entitàla struttura dell'entità non ha nessun %s o attributi di %sl'entità è stata creata senza %s o attributi di %svoce già presente nel filevoce con nome in conflitto già presente nel fileerrore durante la connessione al server kadm5 per il servizio `%s' nel realm `%s': %serrore nella creazione di `%s': %serrore nella creazione di una voce di directory LDAP: %serrore nella creazione della home directory per l'utenteerrore nella cifratura della passworderrore nell'inizializzazione di Cyrus SASL: %serrore nell'inizializzazione della libreria di kerberoserrore nell'inizializzazione della libreria ldaperrore di caricamento del moduloerrore nel blocco del fileerrore nel blocco del file: %serrore nella modifica degli attributi del terminaleerrore nella modifica della voce di directory LDAP: %serrore nello spostamento della home directory per l'utenteerrore nell'apertura del fileerrore nell'analisi del nome utente `%s' per kerberoserrore nella lettura del fileerrore nella lettura dal terminaleerrore nella lettura delle informazioni per `%s' da kerberoserrore nella lettura degli attributi del terminaleerrore nella rimozione della voce di directory LDAP: %serrore nella rimozione della home directory per l'utenteerrore nel rinominare la voce di directory LDAP: %serrore di risoluzione del simbolo nel moduloerrore nell'impostazione della password per `%s'errore nell'impostazione della password nella directory LDAP per %s: %serrore nell'impostazione degli attributi del terminaleerrore nello stat del fileerrore nella scrittura su fileerrore genericoil gruppo %jd non ha alcun nomeil gruppo %s non ha alcun GIDil gruppo non ha né un nome né un GIDerrore interno di inizializzazioneID non validovalore dell'attributo non validocombinazione di modulo non validanumero non validomancata corrispondenza nella versione di modulo/libreriail modulo `%s' non definisce `%s'modulo disabilitato da configurazionemancata corrispondenza nella versione del modulo in `%s'il nome contiene caratteri di controlloil nome contiene il carattere non valido `%c'il nome contiene caratteri non-ASCIIil nome contiene spazi bianchiil nome non e' impostatoil nome è troppo lungo (%zu > %d)il nome è troppo cortoil nome inizia con un trattinonessun attributo `%s' trovatonessuna funzione di inizializzazione %s in `%s'nessun file shadow presente -- disattivazionetipo di oggetto non presente nella directory LDAPprivilegi insufficientiin esecuzione senza i privilegi di superutentel'oggetto non ha nessun attributo %sl'oggetto non ha nessun attributo %seseguitoi moduli `%s' e `%s' non possono essere combinatierrore sconosciutolo sblocco renderà vuoto il campo della passwordschema di cifratura password non supportatol'utente %jd non ha alcun nomel'utente %s non ha alcun UIDl'utente non ha né un nome né un UIDl'oggetto utente non ha nessun attributo %sl'oggetto utente è stato creato senza `%s'ID utente/gruppo in usonome utente/gruppo in usolibuser-0.60~dfsg/po/lv.po0000644000175000017500000007212112226342567015505 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Janis Ozolins , 2008 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/fedora/language/" "lv/)\n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Iekšējā kļūda.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Iekšējā PAM kļūda `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Nav lietotāja vārds norādīts.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Lietotājs %s neeksistē.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Konts ir bloķēts.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Konts nav bloķēts.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Bŗidinājums:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Paroles derīguma termiņš beigsies:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "" #: apps/lchfn.c:136 msgid "Full Name" msgstr "" #: apps/lchfn.c:146 msgid "Surname" msgstr "Uzvārds" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Vārds" #: apps/lchfn.c:167 msgid "Office" msgstr "Birojs" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Biroja telefons" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Mājas telefons" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-pasta adrese" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "" #: apps/lchsh.c:114 msgid "New Shell" msgstr "" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Nav grupas nosaukums norādīts.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Nederīgs grupas ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Grupas izveidošana neizdevās: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Grupa %s neeksistē.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Grupa %s nevar tik dzēsta: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nav grupas nosaukums norādīts, izmanto %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nav lietotāja vārds norādīts, izmanto %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Kļūda atverot `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Kļūda izveidojot mājas mapi priekš %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Kļūda izveidojot lietotāja kontu priekš %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "" #: apps/lpasswd.c:111 msgid "New password" msgstr "Jaunā parole" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Jaunā parole (apstiprināt)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Paroles nesakrīt, mēģiniet vēlreiz.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Paroles mainīšana atcelta.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Parole nomainīta.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Grupa %jd neeksistē\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Kļūda izveidojot grupu `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Neizdevās konta izveidošana: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Kļūda izveidojot %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "Kļūda izveidojot mājas mapi priekš %s: %s\n" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Brīdinājums: Grupa ar ID %jd neeksistē.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "Nevar atvērt konfigurācijas failu `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "Konfigurācijas fails `%s' ir pārāk liels" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "Nevar nolasīt konfigurācijas failu `%s': %s" #: lib/error.c:62 msgid "success" msgstr "" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "" #: lib/error.c:66 msgid "generic error" msgstr "" #: lib/error.c:68 msgid "not enough privileges" msgstr "" #: lib/error.c:70 msgid "access denied" msgstr "Piekļūšana aizliegta" #: lib/error.c:72 msgid "bad user/group name" msgstr "Slikts lietotāja/grupas nosaukums" #: lib/error.c:74 msgid "bad user/group id" msgstr "Slikts lietotāja/grupas ID" #: lib/error.c:76 msgid "user/group name in use" msgstr "" #: lib/error.c:78 msgid "user/group id in use" msgstr "" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "" #: lib/error.c:82 msgid "error opening file" msgstr "Kļūda atverot failu" #: lib/error.c:84 msgid "error locking file" msgstr "Kļūda bloķējot failu" #: lib/error.c:86 msgid "error statting file" msgstr "" #: lib/error.c:88 msgid "error reading file" msgstr "Kļūda nolasot failu" #: lib/error.c:90 msgid "error writing to file" msgstr "Kļūda rakstot failā" #: lib/error.c:92 msgid "data not found in file" msgstr "Dati nav atrasti failā" #: lib/error.c:94 msgid "internal initialization error" msgstr "" #: lib/error.c:96 msgid "error loading module" msgstr "klūda ielādējot moduli" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "nezināma kļūda" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modulis `%s' nenosaka `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "" #: lib/user.c:218 msgid "name is not set" msgstr "" #: lib/user.c:223 msgid "name is too short" msgstr "" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "" #: lib/user.c:242 msgid "name contains control characters" msgstr "" #: lib/user.c:249 msgid "name contains whitespace" msgstr "" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "Lietotājam %s nav UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "Grupai %s nav GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "Kļūda bloķējot failu: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "kļūda izveidojot `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Kļūda mainot īpašnieku `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Kļūda nolasot `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "" #: modules/files.c:797 msgid "entry already present in file" msgstr "" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDPA servera nosaukums" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL Lietotājs" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "kļūda izveidojot mājas mapi lietotājam" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Nederīgs ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Meklē grupu ar ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Meklē grupu vārdā %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Meklē lietotāju ar ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Meklē lietotāju vārdā %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "" libuser-0.60~dfsg/po/tr.gmo0000644000175000017500000004732112226342605015652 0ustar tzafrirtzafrir<3\()H5[.*I$t""+Jhw </)N'x %>\'s*)(0.L({(.$ >!H ju"#!#$#Ae. %CXl% + < JX ^ hu-#,%D,c"  (#;_p'8@&!Eg " !* #L #p   + !!(!%9! _!1m!!!!$!"8""(["*"*")"*#0/#)`#)###1#$0$K$b$!}$!$+$.$%3:%Gn%%)%&%&!9&#[&&&&&&&('$.'S')f'''0'!''(&:('a( ((3(!( )4) J)X)n)")) )))** 0* Q*r* **"**++;+M+g+%+#+ ++',(,C,^,-f, ,-,&,, -"-B-$b---- o//Q///&0@0]0m0)0!04011$71!\1$~121-1.2/32c2 r2:~22K2)#3BM3-3733444P4 h44 44*4) 50356d555>5(6196!k636'6646 .7 <7J7c7}777(7 88,+8 X8d8x8 88688"9'9'A9i9x99&9999 : #: 1:=: B: M:Y:3n:-::(:;0;=N;4;;; ;;< #<D<(W<<<;<I<iE=(=+=/>24>g>y>>%>>">"?&$?1K?}?? ?? ??@@61@h@3{@@#@@) A 7AFXA.A-A+A,(B/UB6B/B4B!C7C=NC"CCC C'C* D0KD/|DD'DJD7E+UE;E E$E+F'/FWFpFF,F-F>G@GFXGGG-G$G& H6GH-~H-H$H5H(5I^IxI III)I+I+JxzU;+NAEr.dy~`}*32Xpt&%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Turkish (http://www.transifex.com/projects/p/fedora/language/tr/) Language: tr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); %s için bir grup kimliği yok. Kullanıcı %s yok %s kapsamı %s kullanıcısının bilgilerini değiştirmek için yetkili değil %s değeri `%s': `:' karakterine izin verilmediHesap Zaman aşımı: %s Hesap oluşturulamadı: %s. Hesap kilitli. Hesap kilitli değil. %s için kimlik sınaması başarısız. -L ve -U birlikte kullanılamaz. /etc/passwd için öntanımlı kapsam belirlenemedi %s için kullanıcı bilgileri değiştiriliyor. `%s' için parola değiştiriliyor. %s için kabuk değiştiriliyor. Kullanıcı yapısı kopyalanıyor: kullanıcı oluşturulurken Cyrus SASL hatası: %skullanıcı silinirken Cyrus SASL hatası: %sÖntanımlı kullanıcı öznitelik isimleri: Öntanımlı kullanıcı nesnesi sınıfları: E-posta AdresiGirdi yok. `%s' dosya/dizininin sahipliği değiştirilirken hata: %s%s oluşturulurken hata: %s. `%s' için hesap oluşturulurken hata: satır yanlış biçimlendirilmiş. `%s' için grup oluşturulurken hata: %s `%s' için %jd kimlik numarası ile grup oluşturulurken hata: %s %s için ev dizini oluşturulurken hata: %s. %s için kullanıcı hesabı oluşturulurken hata: %s. %s başlatılırken hata: %s. %s başlatılırken hata: %s. PAM başlatılırken hata. %s aranırken hata: %s %s %s'e taşınırken hata: %s. `%s' açılırken hata: %s argümanlar okunurken hata: %s. `%s' okunurken hata: %s%d dosya tanımlayıcısı okuma hatası. `%s' için parola belirlenirken hata: %s `%s' grubu için parola belirlenirken hata: %s. %s kullanıcısı için parola belirlenirken hata: %s `%s' yazılırken hata: %sİzinler bırakılamadı. %s için dönemsellik bilgisi değişikliği başarısız: %s %s grubu için parola belirlenemedi: %s %s kullanıcısı için parola belirlenemedi: %s Kullanıcı bilgileri değişti. Kullanıcı bilgileri değişmedi: giriş hatası. Kullanıcı bilgileri değişmedi: %s. Adı ve SoyadıÖntanımlı kullanıcı öznitelikleri alınıyor: Verilen İsimGrup %jd yok %s grubu silinemedi: %s %s grubu silinemedi: %s. %s grubu kilitlenemedi: %s %s grubu değiştirilemedi: %s %s grubu değiştirilemedi: %s %s grubunun kilidi kaldırılamadı: %s Grup %s yok. Grup oluşturulamadı: %s %jd kimlikli gruba bir grup ismi verilmedi. Ev TelefonuEtkin olmayan: %ld İç PAM hatası `%s'. İç hata. Geçersiz Kimlik %s %s alanı geçersiz bir öntanımlı değere sahip: %sGeçersiz grup kimliği %s Geçersiz kullanıcı kimliği %s Kerberos Baş YöneticisiBaş Yönetici için Kerberos ParolasıKerberos RealmLDAP Bağlantı DNLDAP Bağlantı ParolasıLDAP SASL Yetkilendirme KullanıcısıLDAP SASL KullanıcısıLDAP Arama Tabanı DNLDAP Sunucu İsmiSon Değişiklik: %s En çok: %ld En az: %ld AslaYeni KabukYeni parolaYeni parola (tekrar)Grup ismi belirtilmemiş, %d grubu için isim yok. Grup ismi belirtilmemiş, %s kullanılıyor. Grup ismi belirtilmedi. %jd kimlikli bir grup yok, silinemiyor. %s için yeni ev dizini yok. %s için eski ev dizini yok. Kullanıcı ismi belirtilmemiş, %d kimliği için isim yok. Kullanıcı ismi belirtilmemiş, %s kullanılıyor. Kullanıcı ismi belirtilmedi. İşİş TelefonuParola zaman aşımı: %s Parola etkisiz: %s Parola değişimi iptal edildi. Parola değişti. Parolalar aynı değil, tekrar deneyin. Bilgi alımları başarısız. Bilgi alımları başarılı. 0 kullanıcı kimlikli hesap oluşturulması reddediliyor. `%s' tehlikeli ev dizininin öntanımlı olarak kullanılması reddedildi`%s' dizini tehlikeli olduğu için %s kullanıcısının öntanımlı ev dizini olarak kullanılamıyor %s isimli grup için arama yapılıyor. %jd kimlikli grup için arama yapılıyor. %s isimli kullanıcı için arama yapılıyor. %jd kimlikli kullanıcı için arama yapılıyor. Kabuk değişti. Kabuk değişmedi: %s SoyadıBilinmeyen kullanıcı doğrulandı. Bilinmeyen kullanıcı kapsamı%s kullanıcısı silinemedi: %s. Kullanıcı %s kilitlenemedi: %s. Kullanıcı %s değiştirilemedi: %s. Kullanıcı %s için kilit kaldırılamadı: %s. Kullanıcı %s yok. Kullanıcı aynı değil. Uyarı: %ld Uyarı: %jd kimlikli grup yok. [SEÇENEK...][SEÇENEK...] [kullanıcı][SEÇENEK...] grup[SEÇENEK...] kullanıcı`:' karakterine şifrelenmiş parolada izin verilmiyorerişim engellendiyedek dosyası `%s' var ama normal bir dosya değilyedek dosya boyutu tutmuyorkullanıcı/grup kimlikleri hatalıkullanıcı/grup ismi hatalı`%s' yapılandırma dosyası çok büyükLDAP sunucusuna bağlanılamadıLDAP sunucusuna bağlanılamadı, ilk deneme `%s' olarak yapıldı: %sLDAP sunucusu ile TLS uzlaşması yapılamadı`%s' yapılandırma dosyası açılamadı: %s`%s' yapılandırma dosyası okunamadı: %sLDAP protokolü %d sürümüne ayarlanamadı`%s' yapılandırma dosyası durumlanamadı: %s`%s' dosyasının güvenlik kapsamı belirlenemedi: %söntanımlı güvenlik kapsamı alınamadı: %s`%s' dosyasının güvenlik kapsamı alınamadı: %s`%s' açılamadı: %s`%s'den okunamadı: %söntanımlı güvenlik kapsamı `%s' olarak ayarlanamadı: %s`%s' durum bilgisi alınamadı: %s`%s'e yazılamadı: %sdosyada veri yoköğe %s özelliğini içermiyoröğe ne %s ne de %s özelliğine sahipöğe nesnesi %s özelliğine sahip değilöğe yapısı ne %s ne de %s özelliğine sahipöğe ne %s ne de %s özelliğiyle oluşturuldugirdi zaten dosyada varismi çakışan girdi zaten dosyada var`%s' hizmeti için `%s' alanındaki kadm5 suncusuna bağlanırken hata: %s`%s' oluşturulurken hata: %sLDAP dizin girdisi oluşturulurken hata: %sbu kullanıcı için ev dizini oluşturulurken hata oluştuparolanın şifrelenmesinde hataCyrus SASL ilklendirilirken hata: %skerberos kitaplığı başlatılırken hataldap kitaplığı başlatılırken hatamodül yüklenirken hatadosya kilitlenirken hatadosya kilitlenirken hata: %suçbirim özellikleri değiştirilirken hataLDAP dizin girdisi değiştirilirken hata: %sbu kullanıcı için eski ev dizini taşınırken hata oluştudosya açılırken hatakullanıcı ismi `%s' kerberos için ayrıştırılırken hata oluştudosya okunurken hatauçbirimden okumada hatakerberostaki %s için bilgiler okunurken hatauçbirim özellikleri okunurken hataLDAP dizin girdisi silinirken hata: %sbu kullanıcı için ev dizini silinirken hata oluştuLDAP dizin girdisi isimlendirilirken hata: %smodül içindeki sembol çözümlenirken hata`%s' için parola belirlenirken hataLDAP dizininde %s için parola belirlenirken hata: %suçbirim özellikleri ayarlanırken hatadosya durumlanırken hatadosyaya yazılırken hatagenel hatagrup %jd bir isme sahip değil%s grubunun kimliği yokgrup bir isim ya da kimliğe sahip değilkerberos kitaplığı başlatılırken hatageçersiz kimlikgeçersiz öznitelik değerigeçersiz modül kombinasyonugeçersiz sayımodül/kitaplık sürümü uyumsuzluğu`%s' modülü `%s' tanımlamıyormodül yapılandırmada iptal edildi`%s' de modül sürümü uyumsuzluğuisim denetim karakterleri içeriyorisimde `%c' karakteri kullanılamazisim ASCII olmayan karakterler içeriyorisimde boşluk karakterleri varisim yokisim çok uzun (%zu > %d)isim çok kısaisim tire ile başlıyor`%s' özelliği bulunmuyorİlklendirme işlevi %s `%s' içinde yokshadow dosyası yok -- iptal ediliyorLDAP dizininde böyle bir nesne yokizinler yetersizroot yetkileriyle çalıştırılmıyornesne %s özelliğini içermiyornesne %s özelliğini içermiyorbaşarılı`%s' ve `%s' modülleri birleştirilemezbilinmeyenkilidi kaldırmak parola alanının boş olması anlamına gelirdesteklenmeyen parola şifreleme yöntemi%jd kullanıcısının bir ismi yok%s kullanıcısının kimliği yokkullanıcı bir isim ya da kimliğe sahip değilkullanıcı nesnesi %s özelliğini içermiyorkullanıcı nesnesi `%s' olmaksızın oluşturuldukullanıcı/grup kimlikleri kullanımdakullanıcı/grup ismi kullanımdalibuser-0.60~dfsg/po/bn.gmo0000644000175000017500000007707412226342604015633 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----8/</060K0S1=s1=1k1Y[2y2i/3Y3G3;4y4>5b5_(6#6I6O6^F7777=8w8T997g:::7:<;XO;/;T;(-<V<<yf==+r>[>>]??f@@gA"A|BBMBKBNGC5CACdD<sDLD8D[6EE!E@E5FEFMYF F5FFEG]G lG%yGEG+GH*%H3PHH!HHH(HCI]IxIWeJJNKKrL$MiMN(8NHaN<N~NKfOsO?&P?fPpPQQMRQSepSiS9@T7zT TaTc!UUg V|tVpVabW8W'Wz%X XXXXX,rYYFIZ>ZEZP[If[[nW\Q\N]vg]S]2^^b_2_<-`j`'a)Aa<kagatbb ccqdd5e5egffW&g>~gTgPh9ch3h7hv isii/j}j,.kH[kXk]kj[ll_m^mj?nnv>o1o2o%p=@p`~pEpP%qvqEqSq rZ@rirzsAsos[2tStNt91uVku,uxuMhvjv!ww.)xnXxwxj?y y]y"z5zpzU'{x}{]{T|r|pS}w}>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Bengali (http://www.transifex.com/projects/p/fedora/language/bn/) Language: bn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s-র কোনো gid সংখ্যা নেই। %s বর্তমানে উপস্থিত নেই %s-র, %s-র finger সংক্রান্ত তথ্য পরিবর্তন করার অধিকার নেই। %s মান `%s': `:' অনুমোদিত নয়অ্যাকাউন্টের মেয়াদপূর্তী: %s অ্যাকাউন্ট তৈরি করতে ব্যর্থ: %s। অ্যাকাউন্ট লক করা আছে। অ্যাকাউন্ট লক করা নেই। %s-র পরিচয়প্রমাণ প্রক্রিয়া ব্যর্থ হয়েছে। -L এবং -U দুটিই নির্দিষ্ট করা হয়েছে। /etc/passwd-র ডিফল্ট প্রসঙ্গ নির্ধারণ করা সম্ভব হয়নি %s সংক্রান্ত finger তথ্য পরিবর্তন করা হচ্ছে। %s-র পাসওয়ার্ড পরিবর্তন করা হচ্ছে। %s-র শেল পরিবর্তন করা হচ্ছে। ব্যবহারকারীর বৈশিষ্ট্যের পরিকাঠামো কপি করা হচ্ছে: ব্যবহারকারী তৈরি করতে Cyrus SASL সংক্রান্ত সমস্যা: %sব্যবহারকারী মুছে ফেলার সময় Cyrus SASL সংক্রান্ত সমস্যা: %sব্যবহারকারীর ডিফল্ট বৈশিষ্ট্যর নাম: ব্যবহারকারীর ডিফল্ট অবজেক্ট ক্লাস: ই-মেইল ঠিকানাএন্ট্রি খুঁজে পাওয়া যায়নি। `%s'-র মোড পরিবর্তন করতে ত্রুটি: %s`%s'-র মালিকানা পরিবর্তন করতে সমস্যা: %s%s তৈরি করতে সমস্যা: %s। `%s' -র জন্য অ্যাকাউন্ট তৈরি করতে সমস্যা: পংক্তিটি সঠিক বিন্যাসে গঠিত হয়নি। `%s' দল তৈরি করতে সমস্যা: %s `%s'-র জন্য, GID %jd ব্যবহার করে দল তৈরি করতে সমস্যা: %s %s-র জন্য ব্যক্তিগত (হোম) ডিরেক্টরি তৈরি করতে সমস্যা: %s %s-র জন্য ব্যবহারকারীর অ্যাকাউন্ট তৈরি করতে সমস্যা:%s %s আরম্ভ করতে সমস্যা: %s %s আরম্ভ করতে সমস্যা: %s। PAM আরম্ভ করতে সমস্যা। %s অনুসন্ধানে সমস্যা: %s। %s কে %s-এ সরিয়ে নিতে সমস্যা হয়েছে: %s। `%s' খুলতে সমস্যা: %s। আর্গুমেন্ট পার্স করতে সমস্যা: %s. `%s' পড়তে সমস্যা: %sফাইল ডিসক্রিপ্টর %d থেকে পড়তে সমস্যা দেখা দিয়েছে। %s-র জন্য প্রারম্ভিক পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s %s দলের জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s। %s ব্যবহারকারীর জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s। `%s' লিখতে সমস্যা: %sঅধিকার হ্রাসের প্রচেষ্টা ব্যর্থ। %s সংক্রান্ত পুরোনো তথ্য পরিবর্তনের প্রচেষ্টা ব্যর্থ: %s। %s দলের পাসওয়ার্ড তৈরি করতে ব্যর্থ: %s %s ব্যবহারকারীর জন্য পাসওয়ার্ড নির্ধারণ করা সম্ভব হয়নি: %s। Finger সংক্রান্ত তথ্য পরিবর্তন করা হয়েছে। Finger সংক্রান্ত তথ্য পরিবর্তন করা যায়নি: ইনপুটজড়িত ত্রুটি। Finger সংক্রান্ত তথ্য পরিবর্তন করা হয়নি: %s। সম্পূর্ণ নামব্যবহারকারীর ডিফল্ট বৈশিষ্ট্য আহরণ করা হচ্ছে: প্রদত্ত নাম%jd দলটি বর্তমানে উপস্থিত নেই। %s দলটি মুছে ফেলা সম্ভব হয়নি: %s %s দলটি মুছে ফেলা সম্ভব হয়নি: %s। %s দলটি লক করা যায়নি: %s %s দল পরিবর্তন করা যায়নি: %s %s দলের তথ্য পরিবর্তন করা সম্ভব হয়নি: %s। %s দলটি আন-লক করা যায়নি: %s %s দলটি বর্তমানে উপস্থিত নেই। দল তৈরি করতে ব্যর্থ: %s %jd GIDসহ দলের কোনো নাম উল্লিখিত হয়নি। গৃহের ফোননিষ্ক্রিয়: %ld PAM-র অভ্যন্তরীণ সমস্যা `%s'. অভ্যন্তরীণ সমস্যা। অবৈধ ID %s %s ক্ষেত্রে ডিফল্ট মান বৈধ নয়: %sদলের অবৈধ ID %s ব্যবহারকারী অবৈধ ID %s Kerberos Admin PrincipalAdmin Principal-র জন্য Kerberos পাসওয়ার্ডKerberos RealmLDAP Bind DNLDAP Bind পাসওয়ার্ডLDAP SASL-র অনুমোদন ব্যবহারকারীLDAP SASL ব্যবহারকারীLDAP Search Base DNLDAP সার্ভারের নামসর্বশেষ পরিবর্তন: %s সর্বোচ্চ: %ld সর্বনিম্ন: %ld কখনো নয়নতুন শেলনতুন পাসওয়ার্ডনতুন পাসওয়ার্ড (নিশ্চায়ন)দলের নাম উল্লেখ করা হয়নি, %d gid-র জন্য কোনো নাম লেখা হয়নি। দলের নাম উল্লেখ করা হয়নি, %s ব্যবহার করা হচ্ছে। কোনো দলের নাম নির্ধারণ করা হয়নি। %jd GIDসহ কোনো দল বর্তমানে উপস্থিত নেই, মুছে ফেলা সম্ভব নয়। %s-র কোনো নতুন ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত নেই। %s-র ক্ষেত্রে পুরোনো ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত নেই। কোনো ব্যবহারকারীর নাম নির্দিষ্ট হয়নি, %d uid-র কোনো নাম উল্লিখিত হয়নি। ব্যবহারকারীর নাম উল্লেখ করা হয়নি, %s ব্যবহার করা হচ্ছে। কোনো ব্যবহারকারীর নাম উল্লেখ করা হয়নি। কর্মস্থলকর্মস্থলের ফোনপাসওয়ার্ডের মেয়াদপূর্তী: %s পাসওয়ার্ড নিষ্ক্রিয়: %s পাসওয়ার্ড পরিবর্তন প্রক্রিয়া বাতিল করা হয়েছে। পাসওয়ার্ড পরিবর্তিত হয়েছে। পাসওয়ার্ড দুটি মেলেনি, পুনরায় চেষ্টা করুন। বিফল চিহ্নকারী প্রম্পট সফল চিহ্নকারী প্রম্পট। UID 0 ব্যবহার করে অ্যাকাউন্ট তৈরি করা হবে না। ডিফল্টরূপে, ক্ষতিকর ব্যক্তিগত ডিরেক্টরি `%s' ব্যবহার প্রত্যাখ্যান করা হয়েছেডিফল্টরূপে, ক্ষতিকর ব্যক্তিগত ডিরেক্টরি `%s'-টি %s-র জন্য ব্যবহার করতে প্রত্যাখ্যান করা হয়েছে %s নামক দলের সন্ধান করা হচ্ছে। %jd ID-ধারী দলের সন্ধান করা হচ্ছে। %s নামক ব্যবহারকারীর সন্ধান করা হচ্ছে। %jd ID-ধারী ব্যবহারকারীর সন্ধান করা হচ্ছে। শেল পরিবর্তিত হয়েছে। শেল পরিবর্তিত হয়নি: %s পদবিঅজানা ব্যবহারকারী অনুমোদিত রয়েছেন। ব্যবহারকারীর প্রাসঙ্গিক বিবরণ অজানাব্যবহারকারী %s'র অ্যাকাউন্ট মুছে ফেলা সম্ভব হয়নি: %s। %s ব্যবহারকারীকে লক (lock) করা সম্ভব হয়নি: %s। %s ব্যবহারকারীর তথ্য পরিবর্তন করা সম্ভব হয়নি: %s। %s ব্যবহারকারীকে আন-লক (unlock) করা সম্ভব হয়নি: %s। %s ব্যবহারকারী বর্তমানে উপস্থিত নেই। ব্যবহারকারীর গরমিল। সতর্কবার্তা: %ld সতর্কবার্তা: %jd ID সহ দলটি বর্তমানে উপস্থিত নেই। [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] userএনক্রিপ্ট করা পাসওয়ার্ডের মধ্যে `:' ব্যবহার করা যাবে নাঅনুমোদন করা হয়নিব্যাক-আপ ফাইল `%s' বর্তমানে উপস্থিত আছে এবং এটি কোনো সাধারণ ফাইল নয়ব্যাক-আপ ফাইলের মাপে গরমিলঅবৈধ ব্যবহারকারী/দলের idঅবৈধ ব্যবহারকারী/দলের নামকনফিগারেশন ফাইল `%s' অত্যাধিক বড়LDAP সার্ভারে bind করা সম্ভব হয়নিLDAP সার্ভারে bind করা সম্ভব হয়নি, `%s' রূপে প্রথম প্রচেষ্টা করা হয়েছে: %sLDAP সার্ভারের সাথে TLS মীমাংসা করা সম্ভব হয়নিকনফিগারেশন ফাইল `%s' খোলা যায়নি: %sকনফিগারেশন ফাইল `%s' পড়া যায়নি: %sLDAP প্রোটোকল %d সংস্করণের সাথে স্থাপন করা যায়নিকনফিগারেশন ফাইল `%s' stat করা যায়নি: %s`%s'-র জন্য প্রাসঙ্গিক নিরাপত্তার বিবরণ প্রাপ্ত করা যায়নি: %sডিফল্ট প্রাসঙ্গিক নিরাপত্তার বিবরণ নির্ধারণ করা যায়নি: %s`%s'-র জন্য প্রাসঙ্গিক নিরাপত্তার বিবরণ প্রাপ্ত করা যায়নি: %s`%s' খোলা সম্ভব হয়নি: %s`%s' থেকে পড়া সম্ভব হয়নি: %sডিফল্ট প্রাসঙ্গিক নিরাপত্তার বিবরণ`%s' হিসাবে নির্ধারণ করা যায়নি: %s`%s' stat করা যায়নি: %s`%s'-এ লেখা যায়নি: %sফাইলে তথ্য পাওয়া যায়নিএন্ট্রিতে কোনো %s বৈশিষ্ট্য উপস্থিত নেইস্বত্বায় কোনো %s অথবা %s বৈশিষ্ট্য উপস্থিত নেইস্বত্বার অবজেক্টের মধ্যে %s বৈশিষ্ট্য উপস্থিত নেইস্বত্বার গঠনে কোনো %s অথবা %s বৈশিষ্ট্য উপস্থিত নেইকোনো %s অথবা %s বৈশিষ্ট্য বিনা স্বত্বা তৈরি করা হয়েছেফাইলের মধ্যে এন্ট্রি বর্তমানে উপস্থিত আছেদ্বন্দযুক্ত নাম সহ একটি এন্ট্রি ফাইলের মধ্যে বর্তমানে উপস্থিত আছে`%s' পরিসেবার জন্য kdam5 সার্ভারটির সাথে সংযোগ করতে `%s' realm-এ সমস্যা হয়েছে: %s`%s' তৈরি করতে সমস্যা: %sLDAP ডিরেক্টরি এন্ট্রি তৈরি করতে সমস্যা: %sব্যবহারকারীর জন্য ব্যক্তিগত (হোম) ডিরেক্টরি তৈরি করতে সমস্যাপাসওয়ার্ড এনক্রিপ্ট করতে সমস্যাCyrus SASL আরম্ভ করতে সমস্যা: %skerberos লাইব্রেরি আরম্ভ করতে সমস্যাLdap লাইব্রেরি আরম্ভ করতে সমস্যামডিউল লোড করতে সমস্যাফাইল লক করতে সমস্যাফাইল লক করতে সমস্যা: %sটার্মিনালের বৈশিষ্ট্য পরিবর্তন করতে সমস্যাLDAP ডিরেক্টরি এন্ট্রি পরিবর্তন করতে সমস্যা: %sব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি সরাতে সমস্যাফাইল খুলতে সমস্যা`%s' ব্যবহারকারীর নাম kerberos-র জন্য পার্স করতে সমস্যাফাইল পড়তে সমস্যাটার্মিনাল থেকে পড়তে সমস্যা`%s'-র জন্য kerberos থেকে তথ্য পড়তে সমস্যাটার্মিনালের বৈশিষ্ট্য পড়তে সমস্যাLDAP ডিরেক্টরি এন্ট্রি মুছে ফেলতে সমস্যা: %sব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি মুছে ফেলতে সমস্যাLDAP ডিরেক্টরি এন্ট্রির নাম পরিবর্তন করতে সমস্যা: %sমডিউলের সিম্বল মীমাংসা করতে সমস্যা`%s'-র জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা%s-র জন্য LDAP ডিরেক্টরিতে পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %sটার্মিনালের বৈশিষ্ট্য নির্ধারণ করতে সমস্যাফাইল stat করতে সমস্যাফাইলে লিখতে সমস্যাসাধারণ সমস্যা%jd দলের নাম উল্লিখিত নেই%s নামক দলের ক্ষেত্রে GID ধার্য করা হয়নিদলের নাম ও GID ধার্য করা হয়নিঅভ্যন্তরীণ প্রারম্ভিক সমস্যাঅবৈধ IDঅ্যাট্রিবিউটের মান বৈধ নয়বৈধ রূপে মডিউল একত্রিত করা হয়নিঅবৈধ সংখ্যালাইব্রেরি/মডিউলের সংস্করণে গরমিল`%s' মডিউলের দ্বারা `%s'-র ব্যাখ্যা করা যায়নিকনফিগারেশনের দরুণ মডিউলটি নিষ্ক্রিয় হয়ে গেছে`%s'-র মডিউল সংস্করণে গরমিলনামের মধ্য নিয়ন্ত্রক (control) অক্ষর লেখা হয়েছেনামের মধ্য অবৈধ অক্ষর `%c' লেখা হয়েছেনামের মধ্য non-ASCII অক্ষর লেখা হয়েছেনামের মধ্যে শূণ্যস্থান রয়েছেনাম নির্ধারণ করা হয়নিউল্লিখিত নাম অত্যাধিক লম্বা (%zu > %d)নাম অত্যাধিক ছোটনামের প্রারম্ভে হাইফেন চিহ্ন (-) উপস্থিত রয়েছেকোনো `%s' বৈশিষ্ট্য পাওয়া যায়নি%s প্রারম্ভিক কার্য `%s'-র মধ্যে উপস্থিত নেইকোনো শেডো ফাইল উপস্থিত নেই -- নিষ্ক্রিয় করা হচ্ছেLDAP ডিরেক্টরির মধ্যে এই ধরনের কোনো বস্তু উপস্থিত নেইঅপর্যাপ্ত অধিকারসুপার-ইউজারের অধিকারসহ সঞ্চালিত হচ্ছে নাঅবজেক্টের মধ্যে কোনো %s বৈশিষ্ট্য উপস্থিত নেইঅবজেক্টের মধ্যে %s বৈশিষ্ট্য উপস্থিত নেইসফল`%s' ও `%s' মডিউলগুলি একত্রিত করা যাবে নাঅজানা সমস্যাআন-লক করা হলে পাসওয়ার্ডের ক্ষেত্র ফাঁকা হয়ে যাবেপাসওয়ার্ড এনক্রিপশনের বিন্যাস সমর্থিত নয়%jd ব্যবহারকারীর নাম উল্লিখিত নেই%s নামক ব্যবহারকারীর ক্ষেত্রে UID ধার্য করা হয়নিব্যবহারকারীর নাম ও UID ধার্য করা হয়নিব্যবহারকারীর অবজেক্টে কোনো `%s' বৈশিষ্ট্য উপস্থিত নেইব্যবহারকারীর অবজেক্ট `%s' বিনা নির্মিত হয়েছেব্যবহারকারী/দলের id বর্তমানে ব্যবহৃত হচ্ছেব্যবহারকারী/দলের নাম বর্তমানে ব্যবহৃত হচ্ছেlibuser-0.60~dfsg/po/sr@latin.gmo0000644000175000017500000004676712226342605017016 0ustar tzafrirtzafrir35Qp* $4Yt"" (7 Ij</)'8`{*3)^(.((<e.$ !  "'#J!n#$#.2 al{%%C R_r     -$#Rv,,"(Kd kx#'8D@}! >Nem"!## , E U +c    % 1!7!Q!c!$w!!8!(!*"*G")r"*"0")")"#L#c#1#####!$!7$+Y$.$$3$G%N%)f%&%%!%#%&7&L&_&&v&(&$&&)&(';'0W'!'''&''' !(B(3b(!((( (()")=) [)f)u) ) )) )*"8*[*t*****%*# + .+O+'e++++ +-+&,.,C,"V,y,$,,,,//1-/-_// /// /0:(0c000"0/0/1,11+^111)11I1*G25r27252#3$:3#_33&3$3'3!4+842d464 4!4.5.@53o5515#56. 6 O6\6%r6(6'6%6)7'97a7w7'777"7881(8Z8r88"8888!9)9<9U9f9}999 9 99/9&:):*C:(n:):5:,:$; D;P;f;{;;;);;<$<??<F<%<"<)=&9=`=w=="==*=->+5>-a>>>>*> >??0?-E?s?:?&???+@#C@Eg@.@5@7A/JA@zA7A9A7-BeB!BFB)B!C:CYCrC!C*C-C" D80DSiD#D/D9EKE,kE/E+EE#F'7F+_F+F;FF>GQG!oG6G(G/G9!H2[H*H,H:H,!I+NIzIIIII#I JJ$+J$PJ!uJ$JJ$JJK/KDKbKsK!K+K-K#L(L/ALqLLLL0L%LM-MBM$`M.M M!M</kJ4rGv!IS5 U3(6["L f'lO?$ +dKn7 VgiB,m&h.E#a`{\Pz8Z;0Hp%>jRQY e ]~9NuF^tbACX=wyT:*M@Dq-cx}_|)21Wos%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/fedora/language/sr@latin/) Language: sr@latin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); %s nije imala gid broj. %s ne postoji %s nije ovlašćen da menja finger podatke za %s %s vrednost „%s“: „:“ nije dozvoljenaNalog ističe: %s Neuspelo pravljenje naloga: %s. Nalog je zaključan. Nalog nije zaključan. Neuspela autentifikacija za %s. I -L i -U su navedeni. Ne mogu da postavim podrazumevani kontekst za /etc/passwd Menjam finger podatke za %s. Menjam lozinku za %s. Menjam ljusku za %s. Umnožavam korisničku strukturu: Cyrus SASL greška pri pravljenju korisnika: %sCyrus SASL greška pri uklanjanju korisnika: %sPodrazumevana imena korisničkih svojstava: Podrazumevane klase korisničkih objekata: Adresa e-pošteStavka nije pronađena. Greška pri promeni vlasnika „%s“: %sGreška pri pravljenju %s: %s. Greška pri pravljenju naloga za „%s“: nepravilno oblikovana linija. Greška pri pravljenju grupe „%s“: %s Greška pri pravljenju grupe „%s“ sa GID %jd: %s Greška pri pravljenju ličnog direktorijuma za %s: %s Greška pri pravljenju korisničkog naloga za %s: %s Greška pri inicijalizaciji %s: %s Greška pri inicijalizaciji %s: %s. Greška pri inicijalizaciji PAM-a. Greška pri potrazi za %s: %s Greška pri premeštanju %s u %s: %s. Greška pri otvaranju „%s“: %s. Greška pri tumačenju argumenata: %s. Greška pri čitanju „%s“: %sGreška pri postavljanju lozinke za %s: %s Greška pri postavljanju lozinke za grupu %s: %s. Greška pri postavljanju lozinke za korisnika %s: %s. Greška pri pisanju „%s“: %sNeuspelo odbacivanje povlastica. Neuspela izmena zastarelih podataka za %s: %s Neuspelo postavljanje lozinke za grupu %s: %s Neuspelo postavljanje lozinke za korisnika %s: %s. Finger podaci su promenjeni. Finger podaci nisu promenjeni: greška u unosu. Finger podaci nisu promenjeni: %s. Puno imeDobavljam podrazumevana korisnička svojstva: Kršteno imeGrupa %jd ne postoji Grupa %s ne može biti izbrisana: %s Grupa %s ne može da bude obrisana: %s. Grupa %s ne može biti zaključana: %s Grupa %s ne može biti izmenjena: %s Grupa %s ne može da bude izmenjena: %s. Grupa %s ne može biti otključana: %s Grupa %s ne postoji. Neuspelo pravljenje grupe: %s Grupa sa GID %jd nije imala ime grupe. Kućni telefonNeaktivno: %ld Unutrašnja PAM greška „%s“. Unutrašnja greška. Neispravan ID %s Neispravna podrazumevana vrednost za polje %s: %sNeispravan ID grupe %s Neispravan korisnički ID %s Kerberos glavni adminKerberos lozinka za glavnog adminaKerberos područjeDN LDAP uvezivanjaLozinka LDAP uvezivanjaLDAP SASL ovlašćujući korisnikLDAP SASL korisnikOsnovni DN LDAP pretrageIme LDAP serveraPoslednja promena: %s Najveći: %ld Najmanji: %ld NikadaNova ljuskaNova lozinkaNova lozinka (potvrda)Nije navedeno ime grupe, nema imena za gid %d. Nije navedeno ime grupe, koristim %s. Nije navedeno ime grupe. Ne postoji grupa sa GID %jd, ne uklanjam. Nema novog ličnog direktorijuma za %s. Nema starog ličnog direktorijuma za %s. Nije navedeno korisničko ime, nema imena za uid %d. Nije navedeno korisničko ime, koristim %s. Nije navedeno korisničko ime. KancelarijaKancelarijski telefonLozinka ističe: %s Lozinka neaktivna: %s Promena lozinke je otkazana. Lozinka je promenjena. Lozinke se ne slažu, pokušajte ponovo. Odzivi nisu uspeli. Odzivi su uspeli. Odbijam da napravim nalog sa UID 0. Odbijam da podrazumevano upotrebim opasan direktorijum „%s“Odbijam da podrazumevano upotrebim opasan direktorijum „%s“ za %s Pretražujem za grupom sa imenom %s. Pretražujem za grupom sa ID %jd. Pretražujem za korisnikom sa imenom %s. Pretražujem za korisnikom sa ID %jd. Ljuska je promenjena. Ljuska nije promenjena: %s PrezimeAutentifikovan nepoznat korisnik. Nepoznat korisnički kontekstKorisnik %s ne može da bude obrisan: %s. Korisnik %s ne može da bude zaključan: %s. Korisnik %s ne može da bude izmenjen: %s. Korisnik %s ne može da bude otključan: %s. Korisnik %s ne postoji. Neslaganje korisnika. Upozorenje: %ld Upozorenje: Grupa sa ID-om %jd ne postoji [OPCIJA...][OPCIJA...] [korisnik][OPCIJA...] grupa[OPCIJA...] korisnik„:“ nije dozvoljena u šifrovanoj lozincipristup odbijenrezervna datoteka „%s“ postoji i nije redovna datotekaneslaganje veličine rezervne datotekeloš id korisnika/grupeloše ime korisnika/grupedatoteka podešavanja „%s“ je prevelikane mogu da se vežem za LDAP serverne mogu da se vežem za LDAP server, prvo pokušajte kao „%s“: %snisam mogao da pregovaram TLS sa LDAP serveromne mogu da otvorim datoteku podešavanja „%s“: %sne mogu da pročitam datoteku podešavanja „%s“: %sne mogu da postavim LDAP protokol na verziju %dne mogu da izvršim stat nad datotekom podešavanja „%s“: %sne mogu da utvrdim bezbednosni kontekst za „%s“: %sne mogu da dobavim podrazumevani bezbednosni kontekst: %sne mogu da dobavim bezbednosni kontekst za „%s“: %sne mogu da otvorim „%s“: %sne mogu da čitam iz „%s“: %sne mogu da postavim podrazumevani bezbednosni kontekst na „%s“: %sne mogu da izvršim stat nad „%s“: %sne mogu da upišem u „%s“: %spodaci nisu nađeni u datotecientitet nema %s svojstvaentitet nema %s ili %s svojstvaobjekat entiteta nema %s svojstvostruktura entiteta nema %s ili %s svojstvaentitet je napravljen bez %s ili %s svojstavastavka je već prisutna u datotecistavka sa sukobljenim imenom je već prisutna u datotecigreška pri povezivanju na kadm5 server za servis „%s“ u području „%s“: %sgreška pri pravljenju „%s“: %sgreška pri pravljenju stavke LDAP kataloga: %sgreška pri pravljenju ličnog direktorijuma za korisnikagreška pri šifrovanju lozinkegreška pri inicijalizaciji Cyrus SASL-a: %sgreška pri inicijalizaciji kerberos bibliotekegreška pri inicijalizaciji ldap bibliotekegreška pri učitavanju modulagreška pri zaključavanju datotekegreška pri zaključavanju datoteke: %sgreška pri udešavanju svojstava terminalagreška pri izmeni stavke LDAP kataloga: %sgreška pri premeštanju ličnog direktorijuma za korisnikagreška pri otvaranju datotekegreška pri tumačenju korisničkog imena „%s“ za kerberosgreška pri čitanju datotekegreška pri čitanju sa terminalagreška pri čitanju podataka za „%s“ iz kerberosagreška pri čitanju svojstava terminalagreška pri uklanjanju stavke LDAP kataloga: %sgreška pri uklanjanju ličnog direktorijuma za korisnikagreška pri preimenovanju stavke LDAP kataloga: %sgreška pri razrešavanju simbola u modulugreška pri postavljanju lozinke za „%s“greška pri postavljanju lozinke u LDAP katalogu za %s: %sgreška pri postavljanju svojstava terminalagreška pri izvršavanju stat nad datotekomgreška pri upisu u datotekuuopštena greškagrupa %jd nema imegrupa %s nema GIDgrupa nema ni ime niti GIDunutrašnja greška inicijalizacijeneispravan IDneispravan brojneslaganje verzije biblioteke/modulamodul „%s“ ne definiše „%s“modul isključen u podešavanjimaneslaganje verzije modula u „%s“ime sadrži kontrolne znakoveime sadrži neispravan znak „%c“ime sadrži ne-ASCII znakoveime sadrži razmakime nije postavljenoime je predugačko (%zu > %d)ime je prekratkoime počinje crticomnije pronađeno „%s“ svojstvonema funkcije inicijalizacije %s u „%s“nema prisutne shadow datoteke -- isključujemnema takvog objekta u LDAP katalogunema dovoljno povlasticane izvršavam sa administratorskim povlasticamaobjekat nije imao %s svojstvoobjekat nema %s svojstvouspehnepoznata greškaotključavanje bi učinilo polje lozinke praznimnepodržana šema šifrovanja lozinkekorisnik %jd nema imekorisnik %s nema UIDkorisnik nema ni ime niti UIDkorisnički objekat nema %s svojstvokorisnički objekat je napravljen bez „%s“id korisnika/grupe je u upotrebiime korisnika/grupe je u upotrebilibuser-0.60~dfsg/po/ta.gmo0000644000175000017500000007467312226342605015643 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----8//`/bM090S0<>1B{1H1j2vr2N2W83K3R3V/4M4k4h@515'5>6`B6C66B7l7hb8n89:9=t97949i:::S:7;'P;nx;l;oT<4<j<kd=}=xN>9>W?FY?!?i?%,@"R@Mu@M@IAK[AQA]A!WBLyBtB,;C9hC7C-C,Dm5D#D<D.EM3EE#E?EGElDl%-m=Sm)mcm>n(^nNn?nog0o]ono^epxp`=q`qSq4SrJrKrbs!sOsqsSft8trtAfu>uudu"_vvw@w,wOxHQxqx[ yRhy>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Tamil (http://www.transifex.com/projects/p/fedora/language/ta/) Language: ta MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %sக்கு ஒரு gid எண் இல்லை. %s இல்லை. %s க்கு %s இன் தகவலை மாற்ற அனுமதி இல்லை %s மதிப்பு `%s': `:' அனுமதிக்கப்படுவதில்லைகணக்கு முடிவுற்றது: %s கணக்கு உருவாக்க முடியவில்லை: %s. கணக்கு பூட்டப்பட்டது. கணக்கு பூட்டப்படவில்லை. %s உறுதிப்படுத்தல் தவறானது. இரண்டும் -L மற்றும் -U குறிப்பிடப்பட்டது. /etc/passwd முன்னிருப்பு சூழலை அமைக்க முடியவில்லை %sக்கு தகவல் மாற்றப்படுகிறது. %sக்கு கடவுச்சொல்லை மாற்றுகிறது. %sக்கு ஷெல் மாற்றப்படுகிறது. பயனர் வடிவத்தை நகலெடுக்கிறது: Cyrus SASL பயனர் உருவாக்குவதில் பிழை: %sCyrus SASL பயனரை நீக்குவதில் பிழை: %sமுன்னிருப்பு பயனர் கூறுகளின் பெயர்கள்: முன்னிருப்பு பயனர் பொருள் வகுப்புகள்: மின்அஞ்சல் முகவரிஉள்ளீடு இல்லை. '%s' பிழை மாற்றும் விதம்: %s`%s' இன் உரிமையாளரை மாற்றுவதில் பிழை: %s%sஐ உருவாக்குவதில் பிழை: %s. '%s'க்கு கணக்கு உருவாக்குவதில் பிழை. வரி ஒழுங்கின்றி வடிவமைக்கப்பட்டுள்ளது. குழு `%s' அமைப்பதில் பிழை: %s `%s'க்கு GID %jd: உடன் குழு உருவாக்கவதில் பிழை %s %sக்கு இல்ல அடைவை உருவாக்குவதில் பிழை: %s %sக்கு பயனர் கணக்கு உருவாக்குவதில் பிழை: %s துவக்குவதில் பிழை %s: %s %sஐ துவங்குவதில் பிழை: %s. PAM துவக்குவதில் பிழை. %sஇல் பிழை தேடுதல்: %s. %s இலிருந்து %sக்கு நகர்த்துவதில் பிழை: %s. `%s' ஐ திறப்பதில் பிழை: %s. அளவுருக்கள் பகுப்பதில் பிழை: %s. வாசிப்பதில் பிழை `%s': %sError reading from file descriptor %d. %sக்கு ஆரம்ப கடவுச்சொல் அமைப்பதில் பிழை: %s குழு %sக்கு கடவுச்சொல் அமைப்பதில் பிழை: %s. பயனர் %sக்கு கடவுச்சொல் அமைப்பதில் பிழை: %s. '%s' எழுதுவதில் பிழை :%sசலுகைகள் வழங்கபடாதது கைவிடப்படுகிறது. பழைய செய்தியை %sக்கு மாற்ற முடியவில்லை: %s குழு %sக்கான கடவுச்சொல்லை அமைக்க முடியவில்லை: %s பயனர் %sக்கு கடவுச்சொல் அமைக்க முடியவில்லை: %s. தகவல் மாற்றப்பட்டது. தகவல் மாற்றவில்லை: உள்ளீடு பிழை. தகவல் மாற்ற முடியவில்லை.%s. முழுப்பெயர்முன்னிருப்பு பயனர் கூறுகளை பெறுகிறது : கொடுத்த பெயர்குழு %jd இல்லை குழு %sஐ அழிக்க முடியவில்லை: %s. குழு %sஐ அழிக்க முடியவில்லை: %s. குழு%s ஐ பூட்ட முடியவில்லை: %s குழு %s ஐ மாற்ற முடியவில்லை: %s. குழுவை %s ஐ மாற்ற முடியவில்லை: %s. குழு %s ஐ பூட்டு நீக்க முடியவில்லை: %s குழு %s இல்லை. குழு உருவாக்க முடியவில்லை: %s GID %jd உடன் உள்ள குழுவுக்கு குழுப்பெயர் இல்லை. வீட்டு தொலைபேசி செயலிழக்கப்பட்டது: %ld உள்ளார்ந்த PAM பிழை `%s'. உள்ளார்ந்த பிழை. தவறான குறியீடு %s புலத்தின் தவறான முன்னிருப்பு மதிப்பு %s: %sதவறான குழு ID %s தவறான பயனர் குறியீடு %s Kerberos நிர்வாக தலைமைKerberos கடவுச்சொல் நிர்வாக தலைமைKerberos RealmLDAP பிணைத்தல் DNLDAP பிணைத்தல் கடவுச்சொல்LDAP SASL அனுமதிக்கப்பட்ட பயனர்LDAP SASL பயனர்LDAP தேடல் தளம் DNLDAP சேவையக பெயர்கடைசி மாற்றம்: %s அதிகபட்சம்: %ld குறைந்தபட்சம்: %ld எப்போதும் இல்லைபுதிய ஷெல் புதிய கடவுச்சொல்புதிய கடவுச்சொல் (உறுதிப்படுத்துதல்)குழுப் பெயர் குறிப்பிடப்படவில்லை, குழு குறியீடுக்கு பெயர் இல்லை%d. %s ஐ பயன்படுத்தி, குழுப் பெயர் குறிப்பிடவில்லை . குழுப் பெயர் எதுவும் குறிப்பிடவில்லை %jd GID எனக்கொண்ட குழு இல்லை, நீக்கப்படவில்லை. %sக்கு புதிய இல்ல அடைவு இல்லை. பழைய இல்ல அடைவு எதுவும் இல்லை %s. பயனர் பெயர் எதுவும் குறிப்பிடவில்லை, பயனர் குறியீடு %dக்கு பெயர் இல்லை. %s பயன்படுத்தி, பயனர் பெயர் எதுவும் குறிப்பிடப்படவில்லை. பயனர் பெயர் எதுவும் குறிப்பிடப்படவில்லை. அலுவலகம்அலுவலக தொலைபேசி கடவுச்சொல் முடிவுற்றது: %s செயலிழக்கப்பட்ட கடவுச்சொல் : %s மாற்றிய கடவுச்சொல் ரத்து செய்யப்பட்டது. கடவுச்சொல் மாற்றப்பட்டது. கடவுச்சொல் பொருந்தவில்லை. மீண்டும் முயற்சி செய்யவும். கண்டுபிடிக்க முடியவில்லை. வெற்றிகரமாக கண்டுபிடித்தது. UID 0 உடன் கணக்கு உருவாக்க மறுக்கப்படுகிறது. அபாயகரமான இல்ல அடைவு `%s'ஐ முன்னிப்பாக பயன்படுத்த மறுக்கிறதுஅபாயகரமான இல்ல அடைவு `%s' க்கு %sஐ முன்னிப்பாக பயன்படுத்த மறுக்கிறது குழுப்பெயர் %sஐ தேடுகிறது. குறியீடு %jd ஐ கொண்ட குழுவை தேடுகிறது. பயனர் பெயர் %sஐ தேடுகிறது. %jd பயனர் குறியீட்டை தேடுகிறது . ஷெல் மாற்றப்பட்டது. ஷெல் மாற்றப்படவில்லை: %s துணைப்பெயர்தெரியாத பயனர் அங்கீரித்தல். தெரியாத பயனர் தொடர்புபயனர் %sஐ அழிக்க முடியாது: %s. பயனர்%s ஐ பூட்ட இயலவில்லை: %s. பயனர்%s ஐ மாற்ற முடியவில்லை: %s. பயனர்%s இன் பூட்டை நீக்க முடியவில்லை: %s. பயனர்%s இல்லை. பயனர் பொறுத்தம் இல்லை. எச்சரிக்கை: %ld எச்சரிக்கை: குழு குறியீடு %jd இல்லை. [OPTION...][OPTION...] [user][OPTION...] குழு[OPTION...] பயனர்`:' மறைகுறியாக்கப்பட்ட கடவுச்சொல்லில் அனுமதிக்கப்படுவதில்லைஅனுமதி மறுக்கப்பட்டதுபின்சேமிப்பு கோப்பு %s' உள்ளது, ஆனால் அது இயல்பான கோப்பில்லைபின்சேமிப்பு கோப்பின் அளவு தவறானதுதவறான பயனர்/குழு குறியீடுதவறான பயனர்/குழுப் பெயர்கட்டமைப்பு கோப்பு `%s' மிகப் பெரியதுLDAP சேவையகத்துடன் பிணைக்க முடியவில்லைLDAP சேவையகத்துடன் பிணைக்க முடியவில்லை, முதல் முயற்சி `%s': %sTLS யுடன் LDAP சேவையகத்தை கேட்க முடியாதுகட்டமைப்பு கோப்பு `%s'ஐ திறக்க முடியவில்லை: %sகட்டமைக்கப்பட்ட கோப்பு `%s'ஐ வாசிக்க முடியவில்லை: %sLDAP நெறிமுறையைப் பதிப்பு %dக்காக அமைக்க முடியவில்லைகட்டமைப்பு கோப்பு `%s'ஐ ஆரம்பிக்க முடியவில்லை: %s`%s'இன் பாதுகாப்பு சூழலை குறிப்பிட முடியவில்லை: %sமுன்னிருப்பு பாதுகாப்பு சூழலை பெற முடியவில்லை:%s`%s'இன் பாதுகாப்பு சூழலை பெற முடியவில்லை: %s`%s' ஐ திறக்க முடியவில்லை: %s`%s'இலிருந்து வாசிக்க முடியவில்லை: %s`%s' க்கு முன்னிருப்பு பாதுகாப்பு சூழலை அமைக்க முடியவில்லை: %s'%s' வரையறுக்க முடியவில்லை: %s`%s'க்கு எழுத முடியவில்லை: %sகோப்பில் தகவல் இல்லைஉருப்படியில் %s கூறுகள் இல்லைஉருப்படியில் %s அல்லது %s கூறுகள் இல்லைஉருப்படியில் %s கூறுகள் இல்லைஉருப்படி வடிவத்தில் %s அல்லது %s கூறுகள் இல்லைஉருப்படி %s அல்லது %s கூறுகளால் உருவாக்கப்படவில்லைஉள்ளீடு ஏற்கனவே கோப்பில் உள்ளதுமுரண்படும் பெயருடன் உள்ள உள்ளீடு ஏற்கனவே கோப்பில் உள்ளதுrealm`%s' இல் சேவை `%s' காக kadm5 சேவையகத்தில் இணைப்பதில் பிழை: %s`%s'ஐ உருவாக்குவதில் பிழை : %sLDAP அடைவு உள்ளீட்டை உருவாக்கும் போது பிழை: %sபயனருக்காக இல்ல அடைவை உருவாக்குவதில் பிழைகடவுச்சொல்லை குறிமுறையாக்குவதில் பிழைCyrus SASL துவக்குவதில் பிழை: %skerberos நுலகத்தின் துவக்குவதில் பிழைldap நூலகத்தை துவக்குவதில் பிழைதொகுதி ஏற்றும் போது பிழைகோப்பினை பூட்டும் போது பிழைகோப்பினை பூட்டுவதில் பிழை : %sமுனையம் கூறுகளை கணக்கிடும் போது பிழைLDAP அடைவு உள்ளீட்டை மாற்றும் போது பிழை: %sபயனருக்காக இல்ல அடைவை நகர்த்துவதில் பிழைகோப்பினை திறக்கும் போது பிழைkerberosக்கு `%s' பயனர் பெயர் பகுப்பதில் பிழைகோப்பினை வாசிப்பதில் பிழைமுனையத்திலிருந்து வாசிப்பதில் பிழைkerberos இலிருந்து `%s' க்காக தகவல் வாசிப்பதில் பிழைமுனையம் கூறுகளை வாசிப்பதில் பிழைLDAP அடைவு உள்ளீட்டை நீக்கும் போது பிழை: %sபயனருக்காக இல்ல அடைவை நீக்குவதில் பிழைLDAP அடைவு உள்ளீடுகளை பெயர் மாற்றுவதில் பிழை: %sதொகுதியில் சின்னத்தை சரி செய்யும் போது பிழை`%s'க்கு கடவுச்சொல் அமைப்பதில் பிழைLDAP அடைவில் %s க்கு கடவுச்சொல் அமைப்பதில் பிழை: %sமுனையம் கூறுகளை அமைப்பதில் பிழைகோப்பின் நிலையில் பிழைகோப்பில் எழுதுவதில் பிழைஉற்பத்தி பிழைகுழு %jd க்கு பெயர் இல்லைகுழு %sம் GID இல்லைகுழுவில் ஒரு பெயர் அல்லது ஒரு GID இல்லைஉள்ளார்ந்த துவக்க பிழைதவறான குறியீடுதவறான அளவுரு மதிப்புதவறான அறதவறான தொகுதி கலவைதவறான தவறான எண்நூலகம்/தொகுதி பதிப்பு பொறுத்தம் இல்லைதொகுதி `%s' யானது `%s'ஐ குறிப்பிடவில்லைகட்டமைப்பால் தொகுதி செயல்நீக்கப்பட்டது`%s'இல் தொகுதி பதிப்பு பொருந்தவில்லைபெயர் கட்டுப்பாட்டு எழுத்துகளை கொண்டுள்ளதுபெயர் தவறான எழுத்து `%c' ஐ கொண்டுள்ளதுபெயர் ASCII அல்லாத எழுத்தை கொண்டுள்ளதுபெயர் வெற்றிடத்தை கொண்டுள்ளதுபெயர் அமைக்கவில்லைபெயர் மிக நீளமாக உள்ளது (%zu > %d)பெயர் மிகச் சிறியதாக உள்ளதுபெயர் இடைக்கோட்டினால் ஆரம்பமாகிறது`%s' கூறு இல்லை`%s'இல் துவக்க செயல்பாடு %s இல்லைநிழல் கோப்பு இல்லை - செயல்நீக்கப்படுகிறதுLDAP அடைவில் பொருள் எதுவும் இல்லைபோதிய சலுகைகள் இல்லைசிறப்பு பயனர் சலுகைகளை செயல்படுத்தவில்லைபொருளில் %s கூறுகள் இல்லைபொருளுக்கு %s கூறு இல்லைவெற்றி`%s' மற்றும் `%s' தொகுதிகளை கலக்க முடியாதுதெரியாத பிழைபூட்டு நீக்குதல் கடவுச்சொல் புலத்தை வெறுமையாக்கும்துணைபுரியாத கடவுச்சொல் மறைக்குறியாக்க திட்டம்பயனர் %jd க்கு பெயர் இல்லைபயனர் %sம் UID இல்லைபயனரிடம் பெயர் அல்லது UID இல்லைபயனர் பொருளில் %s கூறு இல்லைபயனர் பொருள் `%s' இல்லாமல் உருவாக்கப்பட்டதுபயனர்/குழு குறியீடு பயனில் உள்ளதுபயனர்/குழு பெயர் பயனில் உள்ளதுlibuser-0.60~dfsg/po/Makevars0000644000175000017500000000344212226342567016220 0ustar tzafrirtzafrir# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Red Hat, Inc. # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = http://bugzilla.redhat.com/bugzilla/ # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = libuser-0.60~dfsg/po/he.po0000644000175000017500000007540112226342567015464 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/fedora/language/" "he/)\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "כישלון בוויתור על הרשאות.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "שגיאה פנימית.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "המשתמש %s אינו מורשה לשנות מידע כללי (finger info) של %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "הקשר משתמש לא ידוע" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "קביעת ברירת מחדל להקשר עבור ‎/etc/passwd נכשלה\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "שגיאה באתחול PAM.‏\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "שגיאת אימות עבור %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "שגיאת PAM פנימית '%s`.‏\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "אומת משתמש לא מוכר.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "אי התאמה של המשתמש.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[אפשרות...] משתמש" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "שגיאה בפענוח פרמטרים: %s.‏\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "לא צויין שם משתמש.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "שגיאה באתחול %s:‏ %s.‏\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "המשתמש %s אינו קיים.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "החשבון נעול.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "החשבון אינו נעול.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "מזערי:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "מירבי:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "אתרעה:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "לא פעיל:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "לעולם לא" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "עדכון אחרון:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "פקיעת תוקף ססמה:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "ססמה לא פעילה:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "פקיעת תוקף חשבון:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "כישלון בעדכון מידע אודות התיישנות עבור %s:‏ %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[אפשרות...] [משתמש]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "לא צויין שם משתמש, אין שם עבור uid %d.‏\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "שינוי מידע כללי (finger) עבור %s.‏\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "שם מלא" #: apps/lchfn.c:146 msgid "Surname" msgstr "שם משפחה" #: apps/lchfn.c:157 msgid "Given Name" msgstr "שם פרטי" #: apps/lchfn.c:167 msgid "Office" msgstr "משרד" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "טלפון בעבודה" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "טלפון בבית" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "כתובת דואר" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "מידע כללי (finger) לא עודכן: שגיאת קלט.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "מידע כללי (finger) עודכן.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "מידע כללי (finger) לא עודכן: %s.‏\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "מעדכן shell עבור %s.‏\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "ה-shell לא עודכן: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "ה-shell עודכן.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[אפשרות...] קבוצה" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "לא צויין שם קבוצה.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "זיהוי קבוצה %s שגוי\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "יצירת קבוצה נכשלה: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "הקבוצה %s אינה קיימת.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "מחיקת הקבוצה %s נכשלה: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "נכשלה קביעת ססמה לקבוצה %s:‏ %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "נכשלה נעילת הקבוצה %s:‏ %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "נכשל שחרור נעילת הקבוצה %s:‏ %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "נכשל עדכון הקבוצה %s:‏ %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "איתור %s נכשל: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "לא צויין שם קבוצה, משתמש ב-%s.‏\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "לא צויין שם קבוצה, אין שם עבור gid‏‏ %d.‏\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "לא צויין שם חשבון, משתמש ב-%s.‏\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[אפשרות...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "שגיאה בפתיחת '%s`:‏ %s.‏\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "יצירת חשבון עבור '%s` נכשלה: שורה במבנה שגוי.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "זיהוי משתמש שגוי %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "מסרב ליצור חשבון עם זיהוי משתמש (UID)‏ 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "יצירת קבוצה עבור '%s` נכשלה עם GID ‏%jd:‏ %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "כישלון ביצירת תיקיית בית עבור %s:‏ %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "כישלון בקביעת ססמה התחלתית עבור %s:‏ %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "כישלון ביצירת חשבון משתמש עבור %s:‏ %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "שינוי ססמה עבור %s.‏\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "ססמה חדשה" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "ססמה חדשה (אישור)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "ססמאות אינן תואמות, יש לנסות שנית.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "שינוי ססמה בוטל.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "כישלון בקביעת ססמה עבור המשתמש %s:‏ %s.‏\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "כישלון בקביעת ססמה עבור הקבוצה %s:‏ %s.‏\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "ססמה עודכנה.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "הקבוצה %jd אינה קיימת\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "שגיאה ביצירת קבוצה '%s`:‏ %s.‏\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "יצירת חשבון משתמש נכשלה: %s.‏\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "כישלון ביצירת %s:‏ %s.‏\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "לא ניתן למחוק את המשתמש %s:‏ %s.‏\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "לקבוצה %s לא היה מספר זיהוי (gid).‏\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "אין קבוצה עם מספר זיהוי (GID)‏ %jd, לא ניתן למחוק.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "כישלון ביצירת תיקיית בית עבור %s:‏ %s\n" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "" #: lib/error.c:62 msgid "success" msgstr "" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "" #: lib/error.c:66 msgid "generic error" msgstr "" #: lib/error.c:68 msgid "not enough privileges" msgstr "" #: lib/error.c:70 msgid "access denied" msgstr "" #: lib/error.c:72 msgid "bad user/group name" msgstr "" #: lib/error.c:74 msgid "bad user/group id" msgstr "" #: lib/error.c:76 msgid "user/group name in use" msgstr "" #: lib/error.c:78 msgid "user/group id in use" msgstr "" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "" #: lib/error.c:82 msgid "error opening file" msgstr "" #: lib/error.c:84 msgid "error locking file" msgstr "" #: lib/error.c:86 msgid "error statting file" msgstr "" #: lib/error.c:88 msgid "error reading file" msgstr "" #: lib/error.c:90 msgid "error writing to file" msgstr "" #: lib/error.c:92 msgid "data not found in file" msgstr "" #: lib/error.c:94 msgid "internal initialization error" msgstr "" #: lib/error.c:96 msgid "error loading module" msgstr "" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "" #: lib/user.c:218 msgid "name is not set" msgstr "" #: lib/user.c:223 msgid "name is too short" msgstr "" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "" #: lib/user.c:242 msgid "name contains control characters" msgstr "" #: lib/user.c:249 msgid "name contains whitespace" msgstr "" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "שגיאה בשינוי בעלות '%s`:‏ %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "שגיאה בקריאת '%s`:‏ %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "שגיאה בכתיבת '%s`:‏ %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "" #: modules/files.c:797 msgid "entry already present in file" msgstr "" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "" libuser-0.60~dfsg/po/sv.gmo0000644000175000017500000006374212226342605015662 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<< >>@>&*?Q?!e???$??:?#,@P@l@@+@+@@.@/-A ]AiA1}A(AA=A!1B2SB)B(B B-B(CECdCC#CC"CD)D HD/iD-D2DD(E<)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 10:03+0000 Last-Translator: Göran Uddeborg Language-Team: Swedish (http://www.transifex.com/projects/p/fedora/language/sv/) Language: sv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s hade inte något gid-nummer. %s finns inte %s är inte auktoriserad att ändra fingerinformationen för %s %s värde "%s": ":" är inte tillåtetKontot går ut: %s Kontoskapandet misslyckades: %s. Kontot är låst. Kontot är inte låst. Autentisering misslyckades för %s. Både -L och -U angivna. Det går inte att sätta standardkontext för /etc/passwd Ändrar fingerinformation för %s. Ändrar lösenord för %s. Ändrar skal för %s. Kopierar användarstruktur: Cyrus SASL-fel när användare skapades: %sCyrus SASL-fel när anvädare togs bort: %sDAGARStandardvärde för användares attributnamn: Standardvärde för användares objektklasser: EpostadressIngen post funnen. Fel vid ändring av rättigheter på ”%s”: %sFel när ägaren till "%s" ändrades: %sFel när %s skapades: %s. Fel när konto för "%s" skapades: felaktigt formaterad rad. Fel när grupp "%s" skapades: %s Fel när grupp för "%s" skapades med GID %jd: %s Fel när hemkatalog för %s skapades: %s Fel när brevlåda för %s skapades: %s Fel när brevlåda skapades: %s Fel när användarkonto för %s skapades: %s Fel när %s initierades: %s Fel vid initiering av %s: %s. Fel vid initialisering av PAM. Fel när %s slogs upp: %s Fel när %s flyttades till %s: %s. Fel när "%s" öppnades: %s. Fel vid tolkning av argument: %s. Fel när "%s" lästes: %sFel vid läsning från filbeskrivare %d. Fel när brevlåda togs bort: %sFel när initialt lösenord för %s sattes: %s Fel när lösenord för grupp %s sattes: %s. Fel när lösenord för användare %s sattes: %s. Fel när "%s" skrevs: %sDet gick inte att släppa rättigheter. Det gick inte att ändra åldringsinformationen för %s: %s Det gick inte att sätta lösenord för grupp %s: %s Det gick inte att sätta lösenord för anvädare %s: %s. Fingerinformationen ändrades. Fingerinformationen ändrades inte: inmatningsfel. Fingerinformationen ändrades inte: %s. Fullständigt namnGECOS-informationGECOS-information för ny användareHämtar standardvärden för användarattribut: FörnamnGrupp %jd finns inte Grupp %s gick inte att ta bort: %s Grupp %s gick inte att ta bort: %s. Grupp %s gick inte att låsa: %s Grupp %s gick inte att ändra: %s Det gick inte att modifiera grupp %s: %s. Grupp %s gick inte att låsa upp: %s Grupp %s finns inte. Det gick inte att skapa grupp: %s Grupp med GID %jd hade inget gruppnamn. HemtelefonInaktiv: %ld Inaktiv:»Aldrig Internt PAM-fel "%s". Internt fel. Ogiltigt ID %s Ogiltigt standardvärd för fält %s: %sOgiltig grupp-id %s Ogiltigt användar-id %s Kerberos administrativ principalKerberoslösenord för administrativ principalKerberosrikeLDAP bindnings-DNLDAP bindningslösenordLDAP SASL-auktoriseringsanvändareLDAP SASL-användareLDAP sökningsbas-DNLDAP-servernamnSenaste ändring: %s Maximum: %ld Maximum:»Inget Minimum: %ld Måste ändra lösenord vid nästa inloggningNAMNNUMAldrigNytt skalNytt lösenordNytt lösenord (bekräfta)Inget gruppnamn angivet, inget namn för gid %d. Inget gruppnamn angivet, använder %s. Inget gruppnamn angivet. Det finns ingen grupp med GID %jd, tar inte bort. Ingen ny hemkatalog för %s. Ingen gammal hemkatalog för %s. Inget användarnamn angivet, inget namn för uid %d. Inget användarnamn angivet, använder %s. Inget användarnamn angivet. KontorArbetstelefonSÖKVÄGLösenordet går ut: %s Lösenordet inaktivt: %s Lösenordsändringen avbruten. Lösenordet ändrat. Lösenorden stämmer inte överens, försök igen. Frågor misslyckades. Frågor lyckades. Vägrar att skapa konto med UID 0. Vägrar att använda farlig hemkatalog "%s" som standardVägrar att använda farlig hemkatalog "%s" för %s som standard STRÄNGSöker efter grupp med namnet %s. Söker efter grupp med ID %jd. Söker efter användare med namnet %s. Söker efter användare med ID %jd. Skal ändrat. Skal inte ändrat: %s EfternamnOkänd användare autentiserad. Okänd användarkontextAnvändare %s gick inte att ta bort: %s. Det gick inte att låsa användare %s: %s. Det gick inte att modifiera användare %s: %s. Det gick inte att låsa upp användare %s: %s. Användare %s finns inte. Användare stämmer inte. Varning: %ld Varning: Grupp med ID %jd finns inte. [FLAGGA...][FLAGGA...] [användare][FLAGGA...] grupp[FLAGGA...] användare":" är inte tillåtet i krypterade lösenordåtkomst nekassäkerhetskopieringsfil "%s" finns och är inte en normal filstorleken på säkerhetskopieringsfilen stämmer intefelaktigt användar-/grupp-idfelaktigt användar-/gruppnamnändra gruppen till att ha det angivna namnetändra inloggningsnamn för användarevanliga namnet för den nya användarenkonfigurationsfil "%s" är för stordet gick inte att binda till en LDAP-serverdet gick inte att binda till en LDAP-server, första försöket som "%s": %sdet gick inte att förhandla fram TLS med LDAP-serverndet gick inte att öppna konfigurationsfil "%s": %sdet gick inte att läsa konfigurationsfil "%s": %sdet gick inte att sätta LDAP-protokoll till version %ddet gick inte att ta status på konfigurationsfil "%s": %sdet gick inte att avgöra säkerhetskontext för "%s": %sdet gick inte att få standardsäkerhetskontext: %sdet gick inte att få säkerhetskontext för "%s": %sdet gick inte att öppna "%s": %sdet gick inte att läsa från "%s": %sdet gick inte att sätta standardsäkerhetskontext till "%s": %sdet gick inte att ta status på "%s": %sdet gick inte att skriva till "%s": %sskapa en systemgruppskapa systemanvändaredata finns inte i filendatum för senaste lösenordsändringen i dagar sedan 1/1/70dagar innan upphörande som användaren skall börja varnaskatalog med filer för den nya användarenskapa inte grupp med amma namn som användareskapa inte hemkatalogerskapa inte hemkatalog för användareskapa inte brevlådorta inte bort användarens prvata grupp, om användaren har enentiteten har inget %s-attributentiteten har inga %s- eller %s-attributentitetsobjektet har inget %s-attributentitetsstruktur har inga %s- eller %s-attributentiteten skapades utan %s- eller %s-attributposten finns redan i filenen post med motstridigt namn finns redan i filenfel vid anslutning till kadm5-servern för tjänst "%s" i rike "%s": %sfel när "%s" skapades: %sfel när en LDAP-katalogpost skapades: %sfel när hemkatalogen skapades för användarenfel när lösenordet krypteradesfel när Cyrus SASL initierades: %sfel när kerberosbibliteket initieradesfel när ldap-bibliotek initieradesfel när modulen lästes infel när filen låstesfel när filen låstes: %sfel vid hantering av terminalattributfel när en LDAP-katalogpost ändrades: %sfel när hemkatalogen flyttades för användarenfel när filen öppnadesfel när användarnamnet "%s" tolkades för kerberosfel när filen lästesfel vid läsning från terminalenfel när information lästes för "%s" från kerberosfel när terminalattribut lästesfel när LDAP-katalogpost togs bort: %sfel när hemkatalogen togs bort för användarenfel när namnet byttes på en LDAP-katalogpost: %sfel när symbolen slogs upp i modulenfel när lösenord sattes för "%s"fel när lösenordet sattes i LDAP-katalogen för %s: %sfel när terminalattribut sattesfel när status togs på filenfel när filen skrevsfil med poster med användarinformationallmänt felgid för ny grupptilltalsnamn för ny användaregrupp %jd har inget namngrupp %s har ingen GIDgruppen %s finns integrupp för ny användaregruppen har varken ett namn eller en GIDhemkataloghemkatalog för ny användarehemtelefonnummer för ny användareinternt initieringsfelogiltigt idogiltigt attributvärdeogiltig modulkombinationogiltigt talbiblioteks-/modulversion som inte stämmer överenslista åldringsparametrar för användarenlista medelmmar av en namngiven grupp istället för gruppmedlemskapen för den namngivna användarenlista med administratörer att lägga tilllista med administratörer att ta bortlista med gruppmedlemmar att lägga tilllista med gruppmedlemmar att ta bortlås kontolås gruppmaximalt antal dagar mellan lösenordsändringarminsta antal dagar mellan lösenordsändringarmodul "%s" definierar inte "%s"modulen avaktiverad av konfigurationenmodulversion stämmer inte i "%s"flytta innehåll i hemkatalognamnet innehåller kontrollteckennamnet innehåller ogiltigt tecken "%c"namnet innehåller tecken som inte är ASCIInamnet innehåller blankteckeninget namn sattnamnet är för långt (%zu > %d)namnet är för kortnamnet startar med ett bindestrecknytt krypterat lösenordnytt lösenord i klartextdet finns inget "%s"-attributingen initieringsfunktion %s i "%s"det finns ingen skuggfil -- avaktiveraringet sådant objekt i LDAP-katalogeninte tillräckliga rättigheterkör inte med superanvändarrättigheterantal dagar efter lösenordet gått ut som kontot anses inaktivtobjektet hade inget %s-attributobjektet har inget %s-attributlista bara medelmskapsinformation med namn, och inte UID/GIDutgångsdatum för lösenord i dagar sedan 1/1/70lösenord i klartext för användarenlösenord i klartext att användas med gruppenför-hashat lösenord för användarenför-hashat lösenord att användas med gruppenfråga efter all informationläs ett nytt krypterat lösenord från den angivna deskriptornläs ett nytt lösenord i klartext från den angivna deskriptornta bort användarens hemkatalogrumsnummer för ny användaresätt GID för gruppange UID för användaresätt det vanliga namnet för användarenange tilltalsnamn för användareange grupplösenord istället fr användarlösenordange hemtelefonnummer för användareange primärt GID för användareange rumsnummer för användareange skal för användareange efternamn för användareange telefonnummer för användareskal för ny användaregick braefternamn för ny användaretelefonnummer för ny användaremodulerna ”%s” och ”%s” kan inte kombinerasuid för ny användareokänt fellås upp kontolås upp gruppatt låsa upp skulle göra lösenordsfältet tomtej stödd krypteringsmetod för lösenordanvändare %jd har inget namnanvändare %s har ingen UIDanvändaren %s finns inteanvändaren har varken ett namn eller en UIDanvändarobjektet hade inget %s-attributanvändarobjektet var skapat utan "%s"användar-/grupp-id som användsanvändar-/gruppnamn som användslibuser-0.60~dfsg/po/sr.gmo0000644000175000017500000006057412226342605015656 0ustar tzafrirtzafrir35Qp* $4Yt"" (7 Ij</)'8`{*3)^(.((<e.$ !  "'#J!n#$#.2 al{%%C R_r     -$#Rv,,"(Kd kx#'8D@}! >Nem"!## , E U +c    % 1!7!Q!c!$w!!8!(!*"*G")r"*"0")")"#L#c#1#####!$!7$+Y$.$$3$G%N%)f%&%%!%#%&7&L&_&&v&(&$&&)&(';'0W'!'''&''' !(B(3b(!((( (()")=) [)f)u) ) )) )*"8*[*t*****%*# + .+O+'e++++ +-+&,.,C,"V,y,$,,,,%./I//Ay//4/" 0&009W0#0a0*1#B1f1<1F1F 2QQ2O22*3@93-z3y3="4J`4Y4U5:[5;5;5/67>63v6?6-6D7P]7X7-8<58Pr8L8U9-f9N959:S):}:#:<:@:<5;:r;@;<;#+<1O<?<<<.<!#=E=Ua=&=0= >80>i>>&>1>>'?:?$U?z?? ???(?N@BU@-@B@E AGOAXALA7=BuB)B B&B5B(4CF]C$C C<Cp'DyD?E6REGE>E$F+5FaF@pF6FDFF-GDtGFG)H'*HRHDkHH$HH"IJ'IrIeIEI'Q|Q1 RKRRdR5SD9SP~SLS3T;PT?TLTGUhaU5U]V1^V8VPVFWKaWdWSXIfXEX\XNSYGY2YZ;ZZZ,uZ>ZZZC[2[[7[:[5\:7\-r\ \$\+\]"1]5T]G]I]=^,Z^X^4^+_ A_L_Ql_?_$_ #`2D`@w`K`9a=>a</kJ4rGv!IS5 U3(6["L f'lO?$ +dKn7 VgiB,m&h.E#a`{\Pz8Z;0Hp%>jRQY e ]~9NuF^tbACX=wyT:*M@Dq-cx}_|)21Wos%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Serbian (http://www.transifex.com/projects/p/fedora/language/sr/) Language: sr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); %s није имала gid број. %s не постоји %s није овлашћен да мења finger податке за %s %s вредност „%s“: „:“ није дозвољенаНалог истиче: %s Неуспело прављење налога: %s. Налог је закључан. Налог није закључан. Неуспела аутентификација за %s. И -L и -U су наведени. Не могу да поставим подразумевани контекст за /etc/passwd Мењам finger податке за %s. Мењам лозинку за %s. Мењам љуску за %s. Умножавам корисничку структуру: Cyrus SASL грешка при прављењу корисника: %sCyrus SASL грешка при уклањању корисника: %sПодразумевана имена корисничких својстава: Подразумеване класе корисничких објеката: Адреса е-поштеСтавка није пронађена. Грешка при промени власника „%s“: %sГрешка при прављењу %s: %s. Грешка при прављењу налога за „%s“: неправилно обликована линија. Грешка при прављењу групе „%s“: %s Грешка при прављењу групе „%s“ са GID %jd: %s Грешка при прављењу личног директоријума за %s: %s Грешка при прављењу корисничког налога за %s: %s Грешка при иницијализацији %s: %s Грешка при иницијализацији %s: %s. Грешка при иницијализацији PAM-а. Грешка при потрази за %s: %s Грешка при премештању %s у %s: %s. Грешка при отварању „%s“: %s. Грешка при тумачењу аргумената: %s. Грешка при читању „%s“: %sГрешка при постављању лозинке за %s: %s Грешка при постављању лозинке за групу %s: %s. Грешка при постављању лозинке за корисника %s: %s. Грешка при писању „%s“: %sНеуспело одбацивање повластица. Неуспела измена застарелих података за %s: %s Неуспело постављање лозинке за групу %s: %s Неуспело постављање лозинке за корисника %s: %s. Finger подаци су промењени. Finger подаци нису промењени: грешка у уносу. Finger подаци нису промењени: %s. Пуно имеДобављам подразумевана корисничка својства: Крштено имеГрупа %jd не постоји Група %s не може бити избрисана: %s Група %s не може да буде обрисана: %s. Група %s не може бити закључана: %s Група %s не може бити измењена: %s Група %s не може да буде измењена: %s. Група %s не може бити откључана: %s Група %s не постоји. Неуспело прављење групе: %s Група са GID %jd није имала име групе. Кућни телефонНеактивно: %ld Унутрашња PAM грешка „%s“. Унутрашња грешка. Неисправан ID %s Неисправна подразумевана вредност за поље %s: %sНеисправан ID групе %s Неисправан кориснички ID %s Kerberos главни админKerberos лозинка за главног админаKerberos подручјеDN LDAP увезивањаЛозинка LDAP увезивањаLDAP SASL овлашћујући корисникLDAP SASL корисникОсновни DN LDAP претрагеИме LDAP сервераПоследња промена: %s Највећи: %ld Најмањи: %ld НикадаНова љускаНова лозинкаНова лозинка (потврда)Није наведено име групе, нема имена за gid %d. Није наведено име групе, користим %s. Није наведено име групе. Не постоји група са GID %jd, не уклањам. Нема новог личног директоријума за %s. Нема старог личног директоријума за %s. Није наведено корисничко име, нема имена за uid %d. Није наведено корисничко име, користим %s. Није наведено корисничко име. КанцеларијаКанцеларијски телефонЛозинка истиче: %s Лозинка неактивна: %s Промена лозинке је отказана. Лозинка је промењена. Лозинке се не слажу, покушајте поново. Одзиви нису успели. Одзиви су успели. Одбијам да направим налог са UID 0. Одбијам да подразумевано употребим опасан директоријум „%s“Одбијам да подразумевано употребим опасан директоријум „%s“ за %s Претражујем за групом са именом %s. Претражујем за групом са ID %jd. Претражујем за корисником са именом %s. Претражујем за корисником са ID %jd. Љуска је промењена. Љуска није промењена: %s ПрезимеАутентификован непознат корисник. Непознат кориснички контекстКорисник %s не може да буде обрисан: %s. Корисник %s не може да буде закључан: %s. Корисник %s не може да буде измењен: %s. Корисник %s не може да буде откључан: %s. Корисник %s не постоји. Неслагање корисника. Упозорење: %ld Упозорење: Група са ID-ом %jd не постоји [ОПЦИЈА...][ОПЦИЈА...] [корисник][ОПЦИЈА...] група[ОПЦИЈА...] корисник„:“ није дозвољена у шифрованој лозинциприступ одбијенрезервна датотека „%s“ постоји и није редовна датотеканеслагање величине резервне датотекелош id корисника/групелоше име корисника/групедатотека подешавања „%s“ је превеликане могу да се вежем за LDAP серверне могу да се вежем за LDAP сервер, прво покушајте као „%s“: %sнисам могао да преговарам TLS са LDAP серверомне могу да отворим датотеку подешавања „%s“: %sне могу да прочитам датотеку подешавања „%s“: %sне могу да поставим LDAP протокол на верзију %dне могу да извршим stat над датотеком подешавања „%s“: %sне могу да утврдим безбедносни контекст за „%s“: %sне могу да добавим подразумевани безбедносни контекст: %sне могу да добавим безбедносни контекст за „%s“: %sне могу да отворим „%s“: %sне могу да читам из „%s“: %sне могу да поставим подразумевани безбедносни контекст на „%s“: %sне могу да извршим stat над „%s“: %sне могу да упишем у „%s“: %sподаци нису нађени у датотециентитет нема %s својстваентитет нема %s или %s својстваобјекат ентитета нема %s својствоструктура ентитета нема %s или %s својстваентитет је направљен без %s или %s својставаставка је већ присутна у датотециставка са сукобљеним именом је већ присутна у датотецигрешка при повезивању на kadm5 сервер за сервис „%s“ у подручју „%s“: %sгрешка при прављењу „%s“: %sгрешка при прављењу ставке LDAP каталога: %sгрешка при прављењу личног директоријума за корисникагрешка при шифровању лозинкегрешка при иницијализацији Cyrus SASL-а: %sгрешка при иницијализацији kerberos библиотекегрешка при иницијализацији ldap библиотекегрешка при учитавању модулагрешка при закључавању датотекегрешка при закључавању датотеке: %sгрешка при удешавању својстава терминалагрешка при измени ставке LDAP каталога: %sгрешка при премештању личног директоријума за корисникагрешка при отварању датотекегрешка при тумачењу корисничког имена „%s“ за kerberosгрешка при читању датотекегрешка при читању са терминалагрешка при читању података за „%s“ из kerberos-агрешка при читању својстава терминалагрешка при уклањању ставке LDAP каталога: %sгрешка при уклањању личног директоријума за корисникагрешка при преименовању ставке LDAP каталога: %sгрешка при разрешавању симбола у модулугрешка при постављању лозинке за „%s“грешка при постављању лозинке у LDAP каталогу за %s: %sгрешка при постављању својстава терминалагрешка при извршавању stat над датотекомгрешка при упису у датотекууопштена грешкагрупа %jd нема имегрупа %s нема GIDгрупа нема ни име нити GIDунутрашња грешка иницијализацијенеисправан IDнеисправан бројнеслагање верзије библиотеке/модуламодул „%s“ не дефинише „%s“модул искључен у подешавањиманеслагање верзије модула у „%s“име садржи контролне знаковеиме садржи неисправан знак „%c“име садржи не-ASCII знаковеиме садржи размакиме није постављеноиме је предугачко (%zu > %d)име је прекраткоиме почиње цртицомније пронађено „%s“ својствонема функције иницијализације %s у „%s“нема присутне shadow датотеке -- искључујемнема таквог објекта у LDAP каталогунема довољно повластицане извршавам са администраторским повластицамаобјекат није имао %s својствообјекат нема %s својствоуспехнепозната грешкаоткључавање би учинило поље лозинке празнимнеподржана шема шифровања лозинкекорисник %jd нема имекорисник %s нема UIDкорисник нема ни име нити UIDкориснички објекат нема %s својствокориснички објекат је направљен без „%s“id корисника/групе је у употребииме корисника/групе је у употребиlibuser-0.60~dfsg/po/eu.gmo0000644000175000017500000000344612226342604015635 0ustar tzafrirtzafrir%@AU d ny    # . 6 DPc y o  )1D)Y        Account is locked. E-Mail AddressFull NameGiven NameGroup %jd does not exist Home PhoneInternal error. NeverNew ShellNew passwordNew password (confirm)OfficeOffice PhonePassword changed. Passwords do not match, try again. SurnameWarning: %ld [OPTION...]error reading fileerror writing to fileinvalid IDinvalid numbername is too shortunknown errorProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Basque (http://www.transifex.com/projects/p/fedora/language/eu/) Language: eu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Kontua blokeatuta dago. E-posta helbideaIzen osoaIzena%jd taldea ez da existitzen. Etxeko telefonoaBarne-errorea. Inoiz ezShell berriaPasahitz berriaPasahitz berria (berretsi)BulegoaBulegoko telefonoaPasahitza aldatuta. Pasahitzak ez datoz bat, saiatu berriro. AbizenaAbisua: %ld [AUKERA...]errorea fitxategia irakurtzeanerrorea fitxategian idazteanID baliogabeazenbaki baliogabeaizena laburregia daerrore ezezagunalibuser-0.60~dfsg/po/zh_TW.po0000644000175000017500000011140512226342570016110 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Ben Wu , 2002 # Cheng-Chia Tseng , 2011-2012 # Chester Cheng , 2004-2006 # Miloslav Trmač , 2011 # Terry Chuang , 2008-2009 # Waika Liu , 2005 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora/" "language/zh_TW/)\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "無法卸下特權。\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "內部錯誤。\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "並未授權 %s 修改 %s 的 finger 資訊\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "不明的使用者情境" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "無法為 /etc/passwd 設定預設的情境\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "初始化 PAM 時發生錯誤。\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s 認證時失敗。\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "內部 PAM 錯誤「%s」。\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "不明的使用者通過身份認證。\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "使用者不符。\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "提示請求所有資訊" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "列出使用者的過時參數" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "密碼更動之間的最小天數" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "DAYS" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "密碼更動之間的最大天數" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "上次密碼更動的日期,日子是從 1/1/70 算起" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "當帳號在密碼過期日後多少天才被視為失效" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "密碼過期日,日子是從 1/1/70 算起" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "在過期之前開始警告使用者的天數" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[選項...] 使用者" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "解析引數時發生錯誤:%s。\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "沒有指定使用者名稱。\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "初始化 %s 時發生錯誤:%s。\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "使用者 %s 不存在。\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "帳號已鎖住。\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "帳號未鎖住。\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "最小值:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "最大值:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "最大值:\t無\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "警告:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "失效:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "失效:\t永不\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "下次登入時必須更改密碼" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "永不" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "上次更改:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "密碼過期:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "密碼失效:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "帳號過期:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "修改 %s 的過時資訊時失敗:%s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[選項...] [使用者]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "沒有指定使用者名稱,uid %d 沒有名稱。\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "修改 %s 的 finger 資訊。\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "全名" #: apps/lchfn.c:146 msgid "Surname" msgstr "姓氏" #: apps/lchfn.c:157 msgid "Given Name" msgstr "名字" #: apps/lchfn.c:167 msgid "Office" msgstr "辦公室" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "辦公電話" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "住家電話" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "電子郵件位址" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "finger 的資訊未變更:輸入發生錯誤。\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "finger 的資訊已變更。\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "finger 的資訊未變更:%s。\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "變更 %s 的 shell。\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "新的 shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "shell 未變更:%s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "shell 已變更。\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "新群組的 GID" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "NUM" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "建立系統群組" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[選項...] 群組" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "沒有指定群組名稱。\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "無效的群組 ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "群組建立失敗:%s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "%s 群組不存在。\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "無法刪除 %s 群組:%s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "設定群組的 GID" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "變更群組以擁有名字" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NAME" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "群組要使用的明文密碼" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "STRING" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "群組要使用的預先雜湊密碼" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "要加入的管理員清單" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "要移除的管理員清單" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "要加入的群組成員清單" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "要移除的群組成員清單" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "鎖住群組" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "解除群組鎖" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L 與 -U 兩者皆指定。\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "設定 %s 群組的密碼失敗:%s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "無法鎖定 %s 群組:%s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s 群組無法被解除鎖定:%s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s 群組無法修改:%s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "查詢 %s 時發生錯誤:%s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "列出已命名群組的成員,而不是已命名使用者的群組成員關係" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "僅依名稱列出成員資訊,而不是 UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "沒有指定群組名稱,所以使用 %s。\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "沒有指定群組名稱,GID %d 沒有指定名稱。\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "沒有指定使用者名稱,所以使用 %s。\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s 不存在\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "含有使用者資訊記錄的檔案" #: apps/lnewusers.c:47 msgid "PATH" msgstr "PATH" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "不要建立家目錄" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "不要建立郵件池" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[選項...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "開啟「%s」時發生錯誤:%s。\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "建立「%s」的帳號時發生錯誤:含有不當格式的列。\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "無效的使用者 ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "拒絕建立 UID 為 0 的帳號。\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "為「%s」建立群組時 (使用 GID %jd) 發生錯誤:%s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "預設狀況下拒絕為 %2$s 使用危險的「%1$s」家目錄\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "建立 %s 的家目錄時發生錯誤:%s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "為 %s 建立郵件池時發生錯誤:%s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "為 %s 設定初始密碼時發生錯誤:%s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "建立 %s 的使用者帳號時發生錯誤:%s。\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "設定群組密碼而不是使用者密碼" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "新的明文密碼" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "新的加密密碼" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "從給定的描述元讀取新的明文密碼" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "從給定的描述元讀取新的加密密碼" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "更改 %s 的密碼。\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "新密碼" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "新密碼 (確認)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "密碼不符,請再試一次。\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "取消密碼變更。\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "從檔案描述元 %d 讀取時發生錯誤。\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "為使用者 %s 設定密碼發生錯誤:%s。\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "為群組 %s 設定密碼時發生錯誤:%s。\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "密碼已變更。\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "建立系統使用者" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "新使用者的 GECOS 資訊" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "新使用者的家目錄" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "新使用者的含檔案家目錄" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "新使用者的 shell" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "新使用者的 UID" #: apps/luseradd.c:69 msgid "group for new user" msgstr "新使用者的群組" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "不要為使用者建立家目錄" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "不要用與使用者相同的名稱建立群組" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "新使用者的通用名稱" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "新使用者的名字" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "新使用者的姓氏" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "新使用者的房間號碼" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "新使用者的電話號碼" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "新使用者的家用電話號碼" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd 群組不存在\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "建立「%s」群組發生錯誤:%s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "帳號建立失敗:%s。\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "建立 %s 發生錯誤:%s。\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "建立郵件池時發生錯誤:%s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "不要移除使用者的私人群組,如果使用者擁有的話" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "移除使用者的家目錄" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "無法刪除 %s 使用者:%s。\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s 沒有群組 ID (gid) 號碼。\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd 的群組不存在,所以無法移除。\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd 的群組沒有群組名稱。\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "無法刪除 %s 群組:%s。\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "為使用者移除家目錄時發生錯誤" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "移除郵件池時發生錯誤:%s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS 資訊" #: apps/lusermod.c:60 msgid "home directory" msgstr "家目錄" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "移動家目錄內容" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "設定使用者的 shell" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "設定使用者的 UID" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "設定使用者的主要 GID" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "改變使用者的登入名稱" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "使用者的明文密碼" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "使用者的預先雜湊密碼" #: apps/lusermod.c:75 msgid "lock account" msgstr "鎖住帳號" #: apps/lusermod.c:78 msgid "unlock account" msgstr "解除帳號鎖" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "設定使用者的通用名稱" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "設定使用者的名字" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "設定使用者的姓氏" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "設定使用者的房間號碼" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "設定使用者的電話號碼" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "設定使用者的家用電話號碼" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "為 %s 使用者設定密碼失敗:%s。\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "無法鎖定 %s 使用者:%s。\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "無法被解除 %s 使用者的鎖定:%s。\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "警告:ID 為 %jd 的群組不存在。\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "無法修改 %s 使用者:%s。\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "無法修改 %s 群組:%s。\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s 沒有舊的家目錄。\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s 沒有新的家目錄。\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "將 %s 移動至 %s 時發生錯誤:%s。\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "無法開啟組態檔「%s」:%s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "無法取得組態檔「%s」的狀態:%s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "組態檔「%s」過大" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "無法讀取組態檔「%s」:%s" #: lib/error.c:62 msgid "success" msgstr "成功" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "模組已由組態停用" #: lib/error.c:66 msgid "generic error" msgstr "一般錯誤" #: lib/error.c:68 msgid "not enough privileges" msgstr "權力不足" #: lib/error.c:70 msgid "access denied" msgstr "拒絕存取" #: lib/error.c:72 msgid "bad user/group name" msgstr "不當的使用者/群組名稱" #: lib/error.c:74 msgid "bad user/group id" msgstr "不當的使用者/群組 ID" #: lib/error.c:76 msgid "user/group name in use" msgstr "使用者/群組名稱已被使用" #: lib/error.c:78 msgid "user/group id in use" msgstr "使用者/群組 ID 已被使用" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "處理終端機特性時發生錯誤" #: lib/error.c:82 msgid "error opening file" msgstr "開啟檔案時發生錯誤" #: lib/error.c:84 msgid "error locking file" msgstr "鎖定檔案時發生錯誤" #: lib/error.c:86 msgid "error statting file" msgstr "取得檔案狀態時發生錯誤" #: lib/error.c:88 msgid "error reading file" msgstr "讀取檔案時發生錯誤" #: lib/error.c:90 msgid "error writing to file" msgstr "寫入檔案時發生錯誤" #: lib/error.c:92 msgid "data not found in file" msgstr "檔案裡找不到資料" #: lib/error.c:94 msgid "internal initialization error" msgstr "內部初始化錯誤" #: lib/error.c:96 msgid "error loading module" msgstr "載入模組時發生錯誤" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "解析模組裡的符號時發生錯誤" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "函式庫/模組版本不符" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "解鎖會讓密碼欄成為空白" #: lib/error.c:105 msgid "invalid attribute value" msgstr "無效的特性值" #: lib/error.c:107 msgid "invalid module combination" msgstr "無效的模組組合" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "新使用者的家目錄" #: lib/error.c:115 msgid "unknown error" msgstr "不明錯誤" #: lib/misc.c:240 msgid "invalid number" msgstr "無效的號碼" #: lib/misc.c:254 msgid "invalid ID" msgstr "無效的 ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "「%2$s」內無初始函式 %1$s 於" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "「%s」中模組版本不符" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "模組「%s」未定義「%s」" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "讀取終端機特性時發生錯誤" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "設定終端機特性時發生錯誤" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "從終端機讀取時發生錯誤" #: lib/user.c:218 msgid "name is not set" msgstr "名稱尚未設定" #: lib/user.c:223 msgid "name is too short" msgstr "名稱過短" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "名稱過長 (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "名稱包含非 ASCII 的字元" #: lib/user.c:242 msgid "name contains control characters" msgstr "名稱包含控制字元" #: lib/user.c:249 msgid "name contains whitespace" msgstr "名稱包含空白" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "名稱以連字號開頭" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "名稱包含無效字元「%c」" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "使用者 %s 沒有 UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "找不到使用者 %s" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "群組 %s 沒有 GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "找不到 %s 群組" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "使用者 %jd 沒有名稱" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "群組 %jd 沒有名稱" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "使用者沒有名稱也沒有 UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "群組沒有名稱也沒有 GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "預設情況下拒絕使用危險的「%s」家目錄" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "欄位 %s 的預設值無效:%s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "鎖定檔案時發生錯誤:%s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "無法取得預設的安全情境:%s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "無法取得「%s」的安全情境:%s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "無將預設安全情境設為「%s」:%s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "無法判定「%s」的安全情境:%s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "無法開啟「%s」:%s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "無法取得「%s」的狀態:%s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "建立「%s」時發生錯誤:%s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "備份檔「%s」已存在且非一般檔案" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "改變「%s」的擁有者時發生錯誤:%s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "變更「%s」的模式時發生錯誤:%s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "讀取「%s」時發生錯誤:%s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "寫入「%s」時發生錯誤:%s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "備份檔案的大小不符" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s 值「%s」:不允許有「:」" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "無法從「%s」讀取:%s" #: modules/files.c:797 msgid "entry already present in file" msgstr "條目已存在檔案中" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "無法寫入「%s」:%s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "實體物件沒有 %s 特性" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "名稱產生衝突的條目已存在檔案中" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "加密的密碼中不允許使用「:」" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "加密密碼時發生錯誤" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "無法組合「%s」與「%s」模組" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "非以超級使用者的特權執行中" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "shadow 檔案不存在 -- 停用中" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "為「%s」服務於「%s」領域連接至 kadm5 伺服器時發生錯誤:%s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "初始化 kerberos 函式庫時發生錯誤" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "為 kerberos 解析使用者名稱「%s」時發生錯誤" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "實體結構沒有 %s 或 %s 特性" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "實體沒有 %s 或 %s 特性" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "建立的實體沒有 %s 或 %s 特性" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "從 kerberos 讀取「%s」的資訊時發生錯誤" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "實體沒有 %s 特性" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "設定「%s」的密碼時發生錯誤" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos 領域" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Admin Principal 的 Kerberos 密碼" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "初始化 ldap 函式庫時發生錯誤" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "無法將 LDAP 通訊協定設定為 %d 版" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "無法以 TLS 與 LDAP 伺服器協商" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "無法綁定至 LDAP 伺服器" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "第一次以「%s」嘗試時,無法連接綁定至 LDAP 伺服器:%s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "使用者物件沒有 %s 特性" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "使用者物件在無「%s」情況下建立" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "建立 LDAP 目錄條目時發生錯誤:%s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "修改 LDAP 目錄條目時發生錯誤:%s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "為 LDAP 目錄條目重新命名時發生錯誤:%s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "物件沒有 %s 特性" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "移除 LDAP 目錄條目時發生錯誤:%s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "物件沒有 %s 特性" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "不支援的密碼加密方案" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "在 LDAP 目錄中沒有這項物件" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "找不到「%s」特性" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "在 LDAP 目錄設定 %s 的密碼時發生錯誤:%s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP 伺服器名稱" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind 密碼" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL 使用者" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL 認證使用者" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "建立使用者時發生 Cyrus SASL 錯誤:%s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "移除使用者時發生 Cyrus SASL 錯誤:%s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "初始化 Cyrus SASL 時發生錯誤:%s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "為使用者建立家目錄時發生錯誤" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "為使用者移除家目錄時發生錯誤" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "為使用者移動家目錄時發生錯誤" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "初始化 %s 時發生錯誤:%s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "無效 ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "搜尋 ID 為 %jd 的群組。\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "搜尋名稱為 %s 的群組。\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "搜尋 ID 為 %jd 的使用者。\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "搜尋名稱為 %s 的使用者。\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "找不到條目。\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "提示成功。\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "提示失敗。\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "預設使用者物件類別:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "預設使用者特性名稱:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "正在取得預設使用者特性:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "正在複製使用者結構:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s 沒有家目錄。\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "移除 %s 時發生錯誤:%s。\n" libuser-0.60~dfsg/po/bs.po0000644000175000017500000010554612226342567015500 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Adnan Hodzic , 2007 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora/language/" "bs/)\n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Odbacivanje privilegija nije uspjelo.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Interna pogreška.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s nema dopuštenja za izmjenu finger podatka o %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Nepoznati kontekst korisnika" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Nije moguće postaviti zadani kontekst za /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Pogreška pri inicijalizaciji PAM-a.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Provjere autentičnosti za %s nije uspjela.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Interna pogreška PAM-a `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Autentifikacija nepoznatog korisnika.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Neodgovarajući korisnik.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPCIJA...] korisnik" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Pogreška pri raščlanjivanju argumenata: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Korisničko ime nije određeno.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Pogreška pri inicijalizaciji %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Korisnik %s ne postoji.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Nalog je zaključan.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Nalog nije zaključan.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nikad" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Posljednja izmjena:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Lozinka zastarijeva:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Neaktivna lozinka:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Nalog zastarijeva:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Uređivanje podataka o zastari za %s nije uspjelo: %s.\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPCIJA...] [korisnik]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Korisničko ime nije određeno. Nema naziva za uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Izmjena podataka usluge finger za %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Puno ime" #: apps/lchfn.c:146 msgid "Surname" msgstr "Prezime" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Ime" #: apps/lchfn.c:167 msgid "Office" msgstr "Ured" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Uredski telefon" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefon (kućni)" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Adresa e-pošte" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Podaci usluge finger nisu izmijenjene: pogreška unosa.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Podaci usluge finger izmijenjeni su.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Podaci usluge finger nisu izmijenjene: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Promjena korisničke ljuske za %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nova ljuska" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Korisnička ljuska nije promijenjena:%s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Korisnička ljuska je promijenjena.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPCIJA...] grupa" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Naziv grupe nije određen.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Neispravan ID grupe %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Izrada grupe nije uspjela: %s.\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Grupa %s ne postoji.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Grupu %s nije moguće izbrisati: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Podjednako su određeni -L i -U.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Postavljanja lozinke za grupu %s nije uspjelo: %s.\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Grupu %s nije moguće zaključati: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Grupu %s nije moguće otključati: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Grupu %s nije moguće izmijeniti: %s.\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Pogreška pri pretraživanju %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Naziv grupe nije određen. Bit će upotrijebljen %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Naziv grupe nije određen. Nema naziva za gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nije određeno korisničko ime. Bit će upotrijebljen %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPCIJA...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Pogreška pri otvaranju `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Pogreška pri izradi naloga za `%s': linija je nepravilno oblikovana.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Neispravan ID korisnika %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Izrada naloga s UID 0 je odbijena.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Pogreška pri izradi grupe za `%s' uz GID %jd: %s.\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Pogreška pri izradi početne mape za %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Pogreška pri postavljanju početne lozinke za %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Pogreška pri izradi korisničkog naloga za %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Izmjena lozinke za %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nova lozinka" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nova lozinka (potvrdite)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Lozinke se ne podudaraju, pokušajte ponovo.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Izmjena lozinke je otkazana.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Pogreška pri postavljanju lozinke za korisnika %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Pogreška pri postavljanju lozinke za grupu %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Lozinka je izmijenjena.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Grupa %jd ne postoji.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Pogreška pri izradi grupe `%s': %s.\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Izradi naloga nije uspjela: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Pogreška pri izradi %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Brisanje korisnika %s nije moguće: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s nema GID broj.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Ne postoji grupa s GID %jd. Nema uklanjanja.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Grupa s GID %jd nije imala naziv grupe.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Brisanje grupe %s nije moguće: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "Pogreška pri uklanjanju početne mape za korisnika" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Postavljanja lozinke za korisnika %s nije uspjelo: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Korisnik %s nije mogao biti zaključan: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Korisnik %s nije mogao biti otključan: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Korisnik %s nije mogao biti izmijenjen: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Izmjena grupe %s nije moguća: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Prethodna početna mapa za %s ne postoji.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Novi naziv za mapu %s ne postoji.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Pogreška pri premještanju %s u %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "Otvaranje konfiguracijske datoteke`%s' nije uspjelo: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "Pokretanje konfiguracijske datoteke`%s' nije uspjelo: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "Konfiguracijska datoteka`%s' je prevelika" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "Čitanje konfiguracijske datoteke`%s' nije uspjelo: %s" #: lib/error.c:62 msgid "success" msgstr "Uspjeh" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "Modul je onemogućen u konfiguraciji" #: lib/error.c:66 msgid "generic error" msgstr "Generička pogreška" #: lib/error.c:68 msgid "not enough privileges" msgstr "Nema dovoljno privilegija" #: lib/error.c:70 msgid "access denied" msgstr "Pristup odbijen" #: lib/error.c:72 msgid "bad user/group name" msgstr "Loše ime korisnika ili naziv grupe" #: lib/error.c:74 msgid "bad user/group id" msgstr "Loš ID korisnika ili grupe" #: lib/error.c:76 msgid "user/group name in use" msgstr "Ime korisnika ili naziv grupe je u upotrebi" #: lib/error.c:78 msgid "user/group id in use" msgstr "ID korisnika ili grupe je u upotrebi" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "Pogreška pri rukovanju s atributima terminala" #: lib/error.c:82 msgid "error opening file" msgstr "Pogreška pri otvaranju datoteke" #: lib/error.c:84 msgid "error locking file" msgstr "Pogreška pri zaključavanju datoteke" #: lib/error.c:86 msgid "error statting file" msgstr "Pogreška datoteke statistika" #: lib/error.c:88 msgid "error reading file" msgstr "Pogreška pri čitanju datoteke" #: lib/error.c:90 msgid "error writing to file" msgstr "Pogreška pri zapisivanju u datoteku" #: lib/error.c:92 msgid "data not found in file" msgstr "Podatak nije pronađen u datoteci" #: lib/error.c:94 msgid "internal initialization error" msgstr "Interna greška inicijalizacije" #: lib/error.c:96 msgid "error loading module" msgstr "Pogreška pri učitavanju modula" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "Pogreška pri razrješavanju znaka u modulu" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "Ne podudaraju se verzije biblioteke i modula" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "Otključavanje će polje lozinke učiniti praznim" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "Nepoznata pogreška" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "Nema funkcije pokretanja %s u `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "Ne podudaraju se verzije modula u `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "Modul `%s' ne određuje `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "Pogreška pri čitanju atributa terminala" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "Pogreška pri postavljanju atributa terminala" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "Pogreška pri čitanja iz terminala" #: lib/user.c:218 msgid "name is not set" msgstr "Naziv nije zadan" #: lib/user.c:223 msgid "name is too short" msgstr "Naziv je prekratak" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "Naziv je predugačak (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "Naziv sadrži znakove koji nisu ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "Naziv sadrži kontrolne znakove" #: lib/user.c:249 msgid "name contains whitespace" msgstr "Naziv sadrži prazna mjesta (razmake)" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "Naziv započinje znakom rastavljanja" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "Naziv sadrži neispravni znak `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "Korisnik %s nema UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "Grupa %s nema GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "Korisnik %jd nema naziva" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "Grupa %jd nema naziva" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "Korisnik nema ni naziv ni UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "Grupa nema ni naziv ni UID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "Pogreška pri zaključavanju datoteke: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "Dohvaćanje sigurnosnog sadržaja `%s' nije uspjelo: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "Dohvaćanje sigurnosnog sadržaja u `%s' nije uspjelo: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "Otvaranje`%s' nije uspjelo: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "Izrada statistike`%s' nije uspjela: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "Pogreška pri izradi`%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "Datoteka sigurnosnog spremanja`%s' postoji i nije regularna datoteka" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Pogreška pri izmjeni vlasnika`%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Pogreška pri čitanju `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Pogreška pri zapisivanju `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "Ne podudara se veličina datoteke sigurnosnog spremanja" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "Čitanje iz `%s' nije moguće: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "Unos već postoji u datoteci" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "Zapisivanje u `%s' nije moguće: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "Objekt entiteta nema atribut %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "Pogreška pri šifriranju lozinke" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "Ne izvršava se s pravima superkorisnika" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "Datoteka lozinki u sjeni ne postoji -- Bit će onemogućeno" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "Pogreška pri povezivanju s kadm5 poslužiteljem za uslugu`%s' u području `" "%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "Pogreška pri inicijalizaciji kerberos biblioteka" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "Pogreška pri raščlanjivanju korisničkog imena `%s' za kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "Struktura entiteta nema atribute %s ili %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "Entitet nema atribute %s ili %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "Entitet je izrađen bez atributa %s ili %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "Pogreška pri čitanju podataka za %s' iz kerberosa" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "Entitet nema atribut %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "Pogreška pri postavljanju lozinke za `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Područje Kerberosa" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Principal administratora kerberosa" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Lozinka kerberosa za principal administratora" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "Pogreška pri inicijalizaciji ldap biblioteke" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "Zadavanje LDAP protokola za verziju %d nije uspjelo" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "TLS pregovaranja s LDAP poslužiteljem nije uspjelo" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "Povezivanje s LDAP poslužiteljem nije uspjelo" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "Povezivanje s LDAP poslužiteljem nije uspjelo. Prvi pokušaj kao %s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "Korisnički objekt nije imao atribut %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "Korisnički objekt je izrađen bez `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "Pogreška pri izradi unosa LDAP imenika: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "Pogreška pri uređivanju unosa LDAP imenika: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "Pogreška pri preimenovanju unosa LDAP imenika: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "Objekt nije imao atribut %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "Pogreška pri uklanjanju unosa LDAP imenika: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "Objekt nema atribut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "Takav objekt ne postoji u LDAP imeniku" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "Atribut `%s' nije pronađen" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "Pogreška pri postavljanju lozinke u LDAP imeniku za %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Naziv LDAP poslužitelja" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Osnovna DN LDAP pretrage" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind lozinka" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL korisnik" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL korisnik autorizacije" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Pogreška pri izradi Cyrus SASL korisnika: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Pogreška pri uklanjanju Cyrus SASL korisnika: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Pogreška pri inicijalizaciji Cyrus SASL-a: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "Pogreška pri izradi početne mape za korisnika" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "Pogreška pri uklanjanju početne mape za korisnika" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "Pogreška pri premještanju početne mape za korisnika" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Pogreška pri inicijalizaciji %s: %s.\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Neispravan ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Pretražuje se za grupom s ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Pretražuje se za grupom s nazivom %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Pretražuje se za korisnikom s ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Pretražuje se za korisnikom s nazivom %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Unos nije pronađen.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Odzivi su uspjeli.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Odzivi nisu uspjeli.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Zadane klase korisničkih objekata:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Zadani atributi korisničkih naziva: \n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Dohvaćanje zdanih korisničkih atributa:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kopiranje strukture korisnika:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s nema početnu mapu.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Pogreška pri uklanjanju %s: %s.\n" libuser-0.60~dfsg/po/ro.po0000644000175000017500000007364412226342570015511 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Alexandru Szasz , 2007 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/fedora/language/" "ro/)\n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "2:1));\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Eşec în eliminarea privilegiilor.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Eroare internă.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s nu este autorizat să schimbe informaţiile finger pentru %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Context necunoscut de utilizator" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Nu se poate seta contextul implicit pentru /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Eroare la iniţializarea PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Autentificarea a eşuat pentru %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Eroare internă PAM „%s”.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Utilizator autentificat necunoscut.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Utilizatorul nu se potriveşte.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPŢIUNE ] utilizator" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Eroare la analiza argumentelor: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Niciun utilizator specificat.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Eroare la iniţializarea %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Utilizatorul %s nu există.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Contul este blocat.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Contul nu este blocat.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minim:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maxim:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Avertisment:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inactiv:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Niciodată" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Ultima schimbare:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Parola expiră:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Parolă inactivă:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Contul expiră:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Modificarea informaţiilor de timp pentru %s a eşuat: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPŢIUNE..] [utilizator]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Niciun utilizator specificat, niciun nume pentru uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Schimbare informaţii de finger pentru %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Nume complet" #: apps/lchfn.c:146 msgid "Surname" msgstr "Nume de familie" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Pseudonim" #: apps/lchfn.c:167 msgid "Office" msgstr "Birou" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefonul de la birou" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefonul de acasă" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Adresă de poştă electronică" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Informaţiile finger nu s-au schimbat: eroare de intrare.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Informaţiile de finger s-au schimbat.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Informaţiile de finger nu s-au schimbat: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Schimbare shell pentru %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Shell nou" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell-ul nu s-a schimbat: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell-ul s-a schimbat.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPŢIUNE ] grup" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Niciun nume de grup specificat.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ID invalid de grup %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Crearea grupului a eşuat: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Grupul %s nu există.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Grupul %s nu poate fi şters: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "S-a specificat atât L cât şi U.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Setarea parolei pentru grupul %s a eşuat: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Grupul %s nu poate fi blocat: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Grupul %s nu poate fi deblocat: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Grupul %s nu poate fi modificat: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Eroare la căutarea %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nu s-a specificat niciun nume de grup, se va folosi %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Nu s-a specificat niciun nume de grup, niciun nume pentru gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Niciun nume de utilizator specificat, se va folosi %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPŢIUNE..]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Eroare la deschiderea „%s”: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Eroare la crearea contului „%s”: linie incorect formatată.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Schimbare parolă pentru %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Parolă nouă" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Parolă nouă (confirmare)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Parolele nu se potrivesc, încercaţi din nou.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Schimbarea parolei a fost anulată.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Eroare la setarea parolei pentru utilizatorul %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Eroare la setarea parolei pentru grupul %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Parola a fost schimbată.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "Eroare la analiza argumentelor: %s.\n" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Setarea parolei pentru %s a eşuat: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "" #: lib/error.c:62 msgid "success" msgstr "" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "" #: lib/error.c:66 msgid "generic error" msgstr "" #: lib/error.c:68 msgid "not enough privileges" msgstr "" #: lib/error.c:70 msgid "access denied" msgstr "" #: lib/error.c:72 msgid "bad user/group name" msgstr "" #: lib/error.c:74 msgid "bad user/group id" msgstr "" #: lib/error.c:76 msgid "user/group name in use" msgstr "" #: lib/error.c:78 msgid "user/group id in use" msgstr "" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "" #: lib/error.c:82 msgid "error opening file" msgstr "" #: lib/error.c:84 msgid "error locking file" msgstr "" #: lib/error.c:86 msgid "error statting file" msgstr "" #: lib/error.c:88 msgid "error reading file" msgstr "" #: lib/error.c:90 msgid "error writing to file" msgstr "" #: lib/error.c:92 msgid "data not found in file" msgstr "" #: lib/error.c:94 msgid "internal initialization error" msgstr "" #: lib/error.c:96 msgid "error loading module" msgstr "" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "" #: lib/user.c:218 msgid "name is not set" msgstr "" #: lib/user.c:223 msgid "name is too short" msgstr "" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "" #: lib/user.c:242 msgid "name contains control characters" msgstr "" #: lib/user.c:249 msgid "name contains whitespace" msgstr "" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Eroare la schimbarea proprietarului pentru „%s”: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Eroare la citirea „%s”: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Eroare la scrierea „%s”: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "" #: modules/files.c:797 msgid "entry already present in file" msgstr "" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "eroare la criptarea parolei" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "eroare la setarea parolei pentru „%s”" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Parolă Kerberos pentru Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "eroare la setarea parolei pentru %s în directorul LDAP: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Parolă LDAP Bind" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "" libuser-0.60~dfsg/po/cs.gmo0000644000175000017500000006401112226342604015624 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<>>3>#'?K?!`?????4?#@B@Y@#p@1@4@@)@()ARAdA!zA&A ALA)1B7[B:B%BB:CNCnCC!C"C"C-DBD-^D D*D3D6 ECE_E"E%E6EE)FCF cFpF&F,FFFF G>G^G|GGG$G(G !H/H@HSHmH~H)HHHH"I*I :IGI#WI{IIII II I3I0J7J?J EJ QJ]J9uJ/JJ-J2-K.`K<K2K"K "L-LDLJL^LtLL$LLL$LD MLOM M!MM"MN$N5N ON#[NN#N#N!N#O*ODO]O)nO OOOO'O P:P)XPP!P)P-P!Q-Q#Q.Q+R)KR)uR0R4R-S3SMS=fS#SSS"T#T3BT5vT+T7T!U/2UbU9UU UU*V*>V$iV<VIV W$6W=[WW&W)W%X.XLX!jX+X'X>XY>?Y~YY2Y'Y,Z@AZ/Z)Z'Z;[-@[+n[[-[[[#\2\K\`\v\!\\*\.\ %] F]S]n]]#],]V] D^"e^&^(^^^ ^ _;_V_t_'_ _#_` `7`&N`u`````'` a?a^a,zaMaa b:%b-`b"b0b$b2c:c4Yc6c*c%cd/d&Kd(rd.d3d&d*%ePe#ne*eeee%f,(fUfpfff*f)ffg*g#Ag!eg'g*g.g0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-10-12 21:41+0000 Last-Translator: Miloslav Trmač Language-Team: Czech (http://www.transifex.com/projects/p/fedora/language/cs/) Language: cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2; %s nemá GID číslo. %s neexistuje %s není autorizován měnit informace finger o %s %s hodnota `%s': `:' není povolenoÚčet vyprší: %s Vytváření účtu selhalo: %s. Účet je zablokován. Účet není zablokován. Chyba při autentizaci %s. Použito zároveň -L a -U. Nemohu nastavit implicitní kontext pro /etc/passwd Měním údaje finger pro %s. Měním heslo pro %s. Měním shell pro %s. Kopíruji uživatelskou strukturu: Chyba Cyrus SASL při vytváření uživatele: %sChyba Cyrus SASL při odstraňování uživatele: %sDNYImplicitní jména atributů uživatele: Implicitní třídy objektů uživatel: E-mailová adresaPoložka nenalezena. Chyba při změně módu `%s': %sChyba při změně vlastníka `%s': %sChyba při vytváření %s: %s. Chyba při vytváření účtu pro '%s': nesprávně formátovaný řádek. Chyba při vytváření skupiny `%s': %s Chyba při vytváření skupiny pro `%s' s GID %jd: %s Chyba při vytváření domovského adresáře pro %s: %s Chyba vytváření pošty pro %s: %s Chyba vytváření pošty: %s Chyba při vytváření uživatelského účtu pro %s: %s Chyba při inicializaci %s: %s Chyba při inicializaci %s: %s Chyba při inicializaci PAM. Chyba při vyhledávání %s: %s Chyba při přesunu %s do %s: %s. Chyba při otevírání '%s': %s. Chyba při zpracovávání argumentů: `%s'. Chyba při čtení '%s': %sChyba při čtení z deskriptoru souboru %d. Chyba odstraňování pošty: %schyba při nastavování hesla pro %s: %s Chyba při nastavování hesla pro skupinu %s: %s. Chyba při nastavování hesla pro uživatele %s: %s. Chyba při zápisu `%s': %sChyba při zahazování práv. Nemohu změnit informace o %s: %s Nemohu nastavit heslo skupinu %s: %s Chyba při nastavování hesla pro uživatele %s: %s. Údaje finger změněny. Údaje finger nezměněny: chyba vstupu. Údaje finger nezměněny: %s. Plné jménoinformace GECOSinformace GECOS pro nového uživateleNačítám implicitní atributy uživatele: Křestní jménoSkupina %jd neexistuje Skupinu %s nelze odstranit: %s Skupinu %s nelze odstranit: %s. Skupinu %s nelze uzamknout: %s Skupinu %s nelze změnit: %s Skupinu %s nelze změnit: %s. Skupinu %s nelze odemknout: %s Skupina %s neexistuje. Chyba při vytváření skupiny: %s Skupina s GID %jd nemá jméno skupiny. Telefon domůNeaktivní: %ld Neaktivní: Nikdy Interní chyba PAM `%s'. Interní chyba. Neplatné ID %s Neplatná implicitní hodnota pole %s: %sNeplatné ID skupiny %s Neplatné ID uživatele %s Kerberos Admin PrincipalHeslo pro Kerberos Admin PrincipalRealm KerberosuLDAP Bind DNLDAP Bind hesloLDAP SASL uživatel pro autentizaciLDAP SASL uživatelLDAP Search Base DNJméno LDAP serveruPoslední změna: %s Maximum: %ld Maximum: Žádné Minimum: %ld Musí změnit heslo při příštím přihlášeníNÁZEVČÍSLONikdyNový shellNové hesloNové heslo (potvrďte)Nebylo zadáno jméno skupiny, chybí jméno pro gid %d. Nebylo zadáno jméno skupiny, používám %s. Nebylo zadáno jméno skupiny. Skupina s GID %jd neexistuje, neodstraňuji. Nový domovský adresář pro %s nebyl vytvořen. Starý domovský adresář pro %s neexistuje. Nebylo zadáno jméno uživatele, chybí jméno pro uid %d. Nebylo zadáno jméno uživatele, používám %s. Nebylo zadáno jméno uživatele. KancelářTelefon do kancelářeCESTAHeslo vyprší: %s Heslo neaktivní: %s Změna hesla zrušena. Heslo změněno. Hesla nesouhlasí, zkuste to znovu. Výzvy selhaly. Výzvy uspěly. Odmítám vytvořit účet s UID 0. Odmítám implicitně použít nebezpečný domovský adresář `%s'Odmítám implicitně použít nebezpečný domovský adresář `%s' pro %s ŘETĚZECHledám skupinu pojmenovanou %s. Hledám skupinu s ID %jd. Hledám uživatele se jménem %s. Hledám uživatele s ID %jd. Shell změněn. Shell nebyl změněn: %s PříjmeníAutentizován neznámý uživatel. Neznámý kontext uživateleUživatele %s nelze odstranit: %s. Uživatele %s nelze uzamknout: %s. Uživatele %s nelze změnit: %s. Uživatele %s nelze odemknout: %s. Uživatel %s neexistuje. Uživatel se neshoduje. Varování: %ld Varování: Skupina s ID %jd neexistuje. [VOLBY...][VOLBY...] [uživatel][VOLBY...] skupina[VOLBY...] uživatel`:' není povoleno v šifrovaném heslepřístup odepřenzáloha souboru '%s' existuje a není to normální soubornesouhlasí velikost záložního souboruchybné ID uživatele/skupinychybné jméno uživatele/skupinyzměnit skupinu, aby měla zadaný názevzměnit přihlašovací jméno pro uživateleobecné jméno nového uživatelesoubor s nastavením `%s' je příliš velkýnemohu se připojit k LDAP serverunemohu se připojit k LDAP serveru, první pokus jako `%s': %snemohu domluvit TLS s LDAP serveremnemohu otevřít soubor s nastavením `%s': %snemohu číst soubor s nastavením `%s': %snemohu nastavit protokol LDAP na verzi %dnemohu stat soubor s nastavením `%s': %snemohu určit kontext zabezpečení pro `%s': %snemohu získat implicitní kontext zabezpečení: %snemohu získat kontext zabezpečení `%s': %snemohu otevřít `%s': %snemohu číst z `%s': %snemohu nastavit implicitní kontext zabezpečení na `%s': %snemohu zjistit informace o `%s': %snemohu zapsat do `%s': %svytvořit systémovou skupinuvytvořit systémového uživateledata nebyla v souboru nalezenadatum poslední změny hesla ve dnech od 1. 1. 1970dny před vypršením, kdy začít varovat uživateleadresář se soubory pro nového uživatelenevytvářet skupinu se stejným názvem jako uživatelnevytvářet domovské adresářenevytvářet domovský adresář pro uživatelenevytvářet poštovní spoolyneodstraňovat soukromou skupinu uživatele, pokud ji máentita nemá atribut %sentita nemá %s nebo %s atributyobjekt entita nemá atribut %sstruktura entity nemá %s nebo %s atributyentita vytvořena bez %s nebo %s atributůpoložka je již v souboru obsaženapoložka s kolidujícím názvem je již v souboru obsaženachyba při spojování s kadm5 serverem pro službu '%s' v realm '%s': %schyba při vytváření `%s': %schyba při tvorbě LDAP položky: %schyba při vytváření domovského adresáře pro uživatelechyba při šifrování heslachyba při inicializaci Cyrus SASL: %schyba při inicializaci knihovny kerberoschyba při inicializaci LDAP knihovnychyba při zavádění moduluchyba při zamykání souboruchyba při zamykání souboru: %schyba při manipulaci s atributy termináluchyba při modifikaci LDAP položky: %schyba při přesouvání domovského adresáře pro uživatelechyba při otevírání souboruchyba při zpracovávání jména uživatele '%s' pro kerberoschyba při čtení souboruchyba při čtení z termináluchyba při čtení informací pro '%s' z kerberosuchyba při čtení atributů termináluchyba při odstraňování LDAP položky: %schyba při odstraňování domovského adresáře pro uživatelechyba při přejmenovávání LDAP položky: %schyba při zpracování symbolů v moduluchyba při nastavování hesla pro '%s'chyba při nastavování hesla v LDAP adresáři pro %s: %schyba při nastavování atributů termináluchyba při zjišťování údajů o souboruchyba při zápisu do souborusoubor se záznamy informací o uživatelíchvšeobecná chybagid pro novou skupinukřestní jméno nového uživateleskupina %jd nemá jménoskupina %s nemá GIDskupina %s nenalezenaskupina pro nového uživateleskupina nemá ani jméno, ani GIDdomovský adresářdomovský adresář pro nového uživateledomácí telefonní číslo nového uživateleinterní chyba při inicializacineplatné IDneplatná hodnota atributuneplatná kombinace modulůneplatné číslonesouhlasí verze knihovny a moduluvypsat informace o stárnutí pro uživatelevypsat členy zadané skupiny místo členství ve skupinách pro zadaného uživateleseznam správců, které přidatseznam správců, které odstranitseznam členů skupiny, které přidatseznam členů skupiny, které odstranitzamknout účetzamknout skupinumaximum dní mezi změnami heslaminimum dní mezi změnami heslamodul `%s' nedefinuje `%s'modul zakázán v konfiguracinesouhlasí verze modulu v '%s'přesunout obsah domovského adresářejméno obsahuje řídící znakyjméno obsahuje neplatný znak `%c'jméno obsahuje ne-ASCII znakyjméno obsahuje mezeryjméno není nastavenojméno je příliš dlouhé (%zu > %d)jméno je příliš krátkéjméno začíná pomlčkounové šifrované heslonové nešifrované hesloatribut '%s' nenalezenchybí inicializační funkce %s v '%s'chybí soubor shadow -- zakazujinení objekt v LDAP adresářinedostatečné oprávněnínespuštěno s právy administrátora (root)počet dní po datu vypršení hesla, kdy je účet považován za neaktivníobjekt nemá atribut %sobjekt nemá atribut %svypsat informace o členství jen podle názvu, ne UID/GIDdatum vypršení hesla ve dnech od 1. 1. 1970nešifrované heslo pro uživatelenešifrované heslo, které pro skupinu použítpředhashované heslo pro uživatelepředhashované heslo, které pro skupinu použítptát se na všechny informacečíst nové šifrované heslo z daného deskriptoručíst nové nešifrované heslo z daného deskriptoruodstranit uživatelův domovský adresářčíslo místnosti nového uživatelenastavit GID pro skupinunastavit UID pro uživatelenastavit obecné jméno pro uživatelenastavit křestní jméno pro uživatelenastavit heslo skupiny místo hesla uživatelenastavit domácí telefonní číslo pro uživatelenastavit primární GID pro uživatelenastavit číslo místnosti pro uživatelenastavit shell pro uživatelenastavit příjmení pro uživatelenastavit telefonní číslo pro uživateleshell pro nového uživateleúspěchpříjmení nového uživateletelefonní číslo nového uživatelemoduly `%s' a `%s' nemohou být kombinoványuid pro nového uživateleneznámá chybaodemknout účetodemknout skupinupo odemčení by pole hesla bylo prázdnénepodporované schéma šifrování heslauživatel %jd nemá jménouživatel %s nemá UIDuživatel %s nenalezenuživatel nemá ani jméno, ani UIDobjekt uživatel nemá atribut %sobjekt uživatel byl vytvořen bez '%s'ID uživatele/skupiny je již používánojméno uživatele/skupiny je již používánolibuser-0.60~dfsg/po/en_GB.gmo0000644000175000017500000004200412226342604016167 0ustar tzafrirtzafrir\ 53Qe}*$":"S"v <0m/)')E^w*) (6_v.((.0$_ ! "#!#>$b#. )CT%c%   =L`q    -#$,>k," &<Sn#'!3 Qr"!##<`y   13E$Y~8(**) )T *~ )   1!8!O!j!!!!!!+!. ";"GY"")"&" #!$##F#j####&#(#$$>$)Q${$$0$!$'$&%%'L% t%%3%!% && 5&C&Y&"m&&& & &' 0'Q'"q''''''(%(#C( g(('(((( )-)@)U)"h))$))))+5+%,:,X,l,,,*,$,-)-A-"Z-"}----- -.<7.t./.).'./0/L/e/~////*/)0(=0f0}0.0(0(01.71$f1 1!1 11"1#1!#2#E2$i2#222.2 3!303J3[3%j3333%33 44'4D4S4g4x4 4 44 4 44-4#5+5,E5r55,5"566 6-6C6Z6v6#666'66!7;7 Y7z77777"7!7# 8#D8h88 8 8888 818!9;9M9$a9989(9*:*1:)\:*:):::1;@;W;r;;!;!;+;.<C<Ga<<)<&<=!,=#N=r====&=(=$!>F>)Y>>>0>!>'?&-?'T? |??3?!?@'@ =@K@a@"u@@@ @ @A 8AYA"yAAAAAA B%%B#KB oBB'BBBC C-CHC]C"pCC$CCC] "V%.=u{q,>yt&IDhrg5xlae$ J4z3^Ln#<oR\:A7HMkN+ BU@dc~_)|F}pXY'CTP/wj9-WO;f im[GKb1QS(E2 6s0Z! ?v8*`%s did not have a gid number. %s is not authorized to change the finger info of %s Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] useraccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/fedora/language/en_GB/) Language: en_GB MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s did not have a gid number. %s is not authorized to change the finger info of %s Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change cancelled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] useraccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in uselibuser-0.60~dfsg/po/hu.gmo0000644000175000017500000006731012226342604015640 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<">>=>'(?P?+h???"??S@+U@#@0@%@1@3.AbA7hA4A AA B3!B(UBW~B2B5 C>?C:~C'C<C*D&ID pDD(D#D(D'E*GE"rE8E=EC FPF%mF>F7FC G+NG;zG(G GG(G;(HdHmH&H&H$H(H##I%GImI&I7III JJ 1J?J4]J$J,J$J- K7KKK_K%{KKKKK LL LB.LqLvL|L L LL7L+LME4M-zM/M=M1N!HN jNtN NNN#NN4N4ONO2fOOOeOOPWP&tP"P8PP Q 'Q'4Q$\Q'Q*Q)Q'Q&RFRaR7wR RRRR/S5S8NS S'S%S-S9$T!^T$T.TLT4!U0VU6U5U-U_"V8V.VVWEW!aWWW#W"W2WD.X+sX:X"X:X 8YNYY!Y*Y/YA%Z9gZ)Z2ZhZ#g[7[<[\) \+J\(v\\\\*\7 ]9X]]C]]& ^;3^*o^9^>^6_$J_,o_I_._`3`2R`` `#``%`a6a,Uaa"a*aaab0bLb!`b2bcb(c+Bc#nc&ccc3c3 d#Td&xdd)d$d+e%:e`e{eeeeeef2'f$Zf*ff4fOf$Hg!mgLg0g. h5)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora/language/hu/) Language: hu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s nem rendelkezik GID számmal. %s nem létezik %s nem jogosult %s személyes adatainak megváltoztatására %s érték `%s': `:' nem engedélyezettAzonosító lejár: %s Azonosító létrehozása meghiúsult: %s. Azonosító zárolva. Fiók nincs lezárva. Azonosítás mint "%s" sikertelen -L és -U is meg van adva. Az alapértelmezett kontextus beállítása nem sikerült a /etc/passwd esetében %s személyes adatainak megváltoztatása. %s jelszavának megváltoztatása. %s parancsértelmezőjének megváltoztatása. Felhasználói szerkezet másolása: Cyrus SASL hiba %s felhasználó létrehozásakorCyrus SASL hiba %s felhasználó eltávolításakorNAPOKAlapértelmezett felhasználói attríbútumok nevei: Alapértelmezett felhasználói objektumosztályok: E-mail címA bejegyzés nem található. Hiba a '%s' mód váltáskor: %sHiba a(z) `%s' tulajdonosának változatásakor: %sHiba történt %s létrehozásakor: %s. A fiók létrehozása `%s' számára nem sikerült: a sor nem megfelelően formázott. Hiba történt `%s' csoport létrehozásakor: %s A(z) `%s' csoport nem hozható létre %jd GID-el: %s Hiba történt %s saját könyvtárának létrehozásakor: %s Hiba a levéltár %s részére való létrehozásakor: %s Hiba a levéltár létrehozásakor: %s Hiba történt %s felhasználói fiók létrehozásakor: %s Hiba történt %s inicializálásakor: %s Hiba a(z) %s inicializálásakor: %s. Hiba a PAM inicializálásakor. Hiba %s keresése közben: %s Hiba történt %s mozgatásakor %s: %s. Hiba a(z) `%s' megnyitásakor: %s. Hiba a paraméter értelmezésekor: %s. Hiba a(z) `%s' olvasásakor: %sHiba %d fájl leírójának olvasásakor. Hiba a levéltár törlésekor: %s%s kezdeti jelszávanak beállítása nem sikerült: %s Hiba történt %s csoport jelszavának beállításakor: %s. Hiba történt %s felhasználó jelszavának beállításakor: %s. Hiba a(z) `%s' írasakor: %sJogosultságok eldobása sikertelen. %s elévülési információit nem sikerült módosítani: %s Hiba a(z) %s csoport jelszavának beállításakor: %s Hiba történt %s felhasználó jelszavának beállításakor: %s. Az információ frissítése megtörtént. A személyes információk nem változtak: beviteli hiba. A személyes adatok nem változtak: %s Teljes névGECOS információkaz új felhasználó GECOS információiAlapértelmezett felhasználói attribútumok lekérése: Utónév%jd csoport nem létezik A(z) %s csoport nem törölhető : %s %s csoportot nem lehet törölni: %s. %s csoportot nem lehet zárolni: %s %s csoportot nem lehet módosítani: %s %s csoport nem módosítható: %s. %s csoportot nem lehet feloldani: %s A(z) %s csoport nem létezik. Csoportl étrehozása meghiúsult: %s A %jd GID azonosítójú csoportnak nincs csoportneve. Otthoni telefonInaktív: %ld Inaktív: Soha Belső PAM hiba `%s'. Belső hiba. Érvénytelen azonosító %s %s mező érvénytelen alapértelmezett értéke: %sÉrvénytelen csoportazonosító %s Érvénytelen felhasználói azonosító %s Kerberos Elsődleges AdminisztrátorElsődleges Adminisztrátor Kerberos jelszavaKerberos TartományLDAP keresés DN-jeLDAP kapcsolódási jelszóLDAP SASL hitelesített felhasználóLDAP SASL felhasználóLDAP keresés Base DN-jeLDAP kiszolgálónévUtolsó módosítás: %s Maximum: %ld Maximum: Nincs Minimum: %ld Meg kell változtatnia jelszavát a következő bejelentkezésnélNÉVSZÁMSohaÚj shellÚj jelszóÚj jelszó (megerősítés)Nincs csoportnév megadva, nincs név a(z) %d gid-hez. Nincs csoportnév megadva, %s használata. Nincs csoportnév megadva. Nincs csoport %jd GID azonosítóval, így nincs eltávolítás sem. %s nem rendelkezik új saját könyvtárral. %s nem rendelkezik régi saját könyvtárral. Nincs felhasználónév megadva, nincs név a(z) %d uid-hoz. Nincs felhasználónév megadva, %s használata. Nincs felhasználónév megadva. MunkahelyMunkahelyi telefonELÉRÉSI ÚTJelszó lejár: %s jelszó inaktív: %s Jelszóváltoztatás megszakítva. A jelszó megváltoztatva. A két jelszó nem egyezik meg, próbálja újból. Kérések meghiúsultak. Kérések teljesítve. Felhasználó létrehozása 0 UID-val megtagadva. alapértelmezésben`%s' veszélyes home könyvtár használatának megtagadása`%s' veszélyes home könyvtár használati jogának megtagadása %s számára alapértelmezésként SZÖVEG%s nevű csoport keresése. %jd azonosítójú csoport keresése. %s nevű felhasználó keresése. %jd azonosítóval rendelkező felhasználó keresése. Shell megváltozott. Shell nem változott: %s VezetéknévIsmeretlen felhasználó hitelesítve. Ismeretlen felhasználói környezet%s felhasználó nem törölhető: %s. %s felhasználót nem lehet zárolni: %s. %s felhasználó nem módosítható: %s. %s felhasználó nem megnyitható: %s. %s felhasználó nem létezik. Felhasználói eltérés. Figyelmeztetés: %ld Figyelem: Csoport %jd GID azonosítóval nem létezik. [OPCIÓ...][OPCIÓ...] [felhasználó][OPCIÓ...] csoport[OPCIÓ...] felhasználó`:' nem megengedett a titkosított jelszavakbanhozzáférés megtagadva`%s' backup fájl már létezik és nem szabályos fájlbackup fájl mérete nem egyezikrossz felhasználó/csoport azonosítórossz felhasználónév / csoportnévcsoport megváltoztatása egy megadott névrebejelentkezési név megváltozatása a felhasználónálaz új felhasználó közös neve`%s' konfigurációs fájl túl nagynem lehet kapcsolódni az LDAP kiszolgálóhozLDAP kiszolgáló elérése nem sikerült. Első próbálkozás, mint %s: %snem lehet egyeztetni a TLS-t az LDAP kiszolgálóval`%s' konfigurációs fájl nem nyitható meg: %sa(z) `%s' konfigurációs fájlt nem lehet olvasni: %saz LDAP protokoll nincs beállítva a(z) %d verzióra`%s' konfigurációs fájl nem elérhető: %sNem sikerült meghatározni az alapértelmezett kontextust az alábbi program számára: %s: %sNem sikerült lekérni az alap futtatási kontextust: %s%s biztonsági kontextusa nem kérhető le: %s`%s' nem nyitható meg: %s%s nem olvasható: %sNem sikerült beállítani az alap futtatási kontextust erre: %s: %s`%s'-t nem lehet beállítani: %s%s nem írható: %srendszercsoport készítéserendszer felhasználó készítéseaz adat nem található a fájlbanaz utolsó jelszó cseréje napokban 1970/1/1 ótahány nappal kezdjen el a lejárat előtt figyelmeztetést küldeni az új felhasználó könyvtára fájlokkalne készítsen felhasználó nevével megegyező csoportotne készítsen home könyvtárakatne készítsen home könyvtárat a felhasználó számárane készítsen levélgyüjtőketne távolítsa el a felhasználó privát csoportját, ha rendelkezik ilyennelentitásnak nincs %s attribútumaentitásnak nincs %s vagy %s attribútumaiA(z) %s entitás-objektumnak nincs attribútumaAz entitás struktúrájának nincsen sem %s, sem %s attribútumaaz entitás %s és %s attribútumok nélkül jött létrebejegyzés már megtalálható a fájlbanbejegyzés ellentétes névvel már a fájlban vanhiba a kadm5 kiszolgálóhoz való kapcsolódáskor `%s' szolgáltatásért, a(z) `%s' tartományban: %shiba a(z) `%s' létrehozásakor: %shiba az LDAP könyvtár-bejegyzés létrehozásakor: %shiba a felhasználó saját könyvtárának létrehozásakorhiba a jelszó titkosításakorhiba a Cyrus SASL előkészítésekor: %shiba a kerberos könyvtár beállításakorhiba az ldap könyvtár beállításakorhiba a modul betöltésekorhiba a fájl zárolásakorhiba a fájl zárolásakor: %shiba a terminálattribútumok kezelésekorhiba az LDAP könyvtár-bejegyzés módosításakor: %shiba a felhasználó saját könyvtárának mozgatásakorhiba a fájl megnyitásakorhiba a(z) `%s' felhasználónév kerberoshoz való feldolgozásakorhiba a fájl olvasásakorhiba a terminálból való olvasáskorhiba a(z) `%s' információ kerberosból való olvasásakorhiba a terminálattribútumok olvasásakorhiba az LDAP könyvtár-bejegyzés eltávolításakor: %shiba a felhasználó saját könyvtárának eltávolításakorhiba az LDAP könyvtár-bejegyzés átnevezésekor: %shiba a modulszimbólum feloldásakorhiba a(z) `%s' jelszavának beállításakorhiba történt %s jelszavának beállításakor az LDAP könyvtárban: %shiba a terminálattribútumok beállításakorhiba a fájl beállításakorhiba a fájlba való íráskorfájl felhasználói információs bejegyzésekkeláltalános hibaaz új csoport GID azonosítójaaz új felhasználó kitalált neve%jd csoportnak nincs neve%s csoportnak nincs GID azonosítója%s csoport nem találhatóaz új felhasználó csoportjacsoportnak nincs neve, sem GID azonosítójahome könyvtáraz új felhasználó home mappájaaz új felhasználó otthoni telefonszámabelső inicializálási hibaérvénytelen azonosítórossz attributum értékhelytelen modulkombinációérvénytelen számkönyvtár/modul verzió eltérőlista a felhasználó időkorlát paramétereirőlcsak a megnevezett csoport tagjait listázza - a megnevezett felhasználó csoporttagságai helyetthozzáadandó adminisztrátorok listájaeltávolítandó adminisztrátorok listájahozzáadandó csoporttagok listájaeltávolítandó csoporttagok listájafelhasználói fiók zárolásacsoport zárolásamaximális napok száma jelszó váltások közöttminimális napok száma jelszó váltások között`%s' modul nincs meghatározva `%s'modul kikapcsolva a konfigurációbólmodul verzió eltérés itt: %shome könyvtár tartalmának elmozgatásanév tartalmaz vezérlőkaraktereketnév érvénytelen `%c' karaktert tartalmaznév tartalmaz nem ASCII karaktereketa név tartalmaz szóköztnév nincs beállítvanév túl hosszú (%zu > %d)név túl rövidnév kötőjellel kezdődikúj titkosított jelszóúj titkosítatlan jelszónincs `%s' attribútumNem található %s inicializáló funkció itt: %snincs árnyék fájl -- kikapcsolásnincs ilyen objektum az LDAP könyvtárbannincs elég jogosultságnem végrehajtható rendszergazdai jogosultságokkalhány nappal a jelszó lejárata után váljon a regisztrált fiók inaktívváobjektumnak nem volt %s attribútumaobjektumnak nincs %s attribútumacsak tagsági információkat listázza - de ne UID/GID, hanem név alapjánjelszó lejárati ideje napokban 1970/01/01 ótaegyszerű szöveges jelszó a felhasználónaksima szöveges jelszó csoporttal való használathozelő-hash-elt jelszó a felhasználó számáraelő-hash-elt jelszó a csoporttal való használathozösszes információ megjelenítéseaz új titkosított jelszó beolvasása a megadott leírófájlbólaz új titkosítatlan jelszó beolvasása a megadott leírófájlbóltávolítsa el felhasználók home mappájátaz új felhasználó szobaszámaGID beállítása a csoporthozUID beállítása a felhasználó számáraközös név megadása a felhasználó számáramegadott név beállítása a felhasználó számáraállítsa be a csoport jelszavának a felhasználó jelszava helyettotthoni telefonszám beállítása a felhasználó számáraelsődleges GID beállítása a felhasználó számáraszobaszám beállítása a felhasználó számáraparancsértelmező beállítása fehasználó számáravezetéknév beállítása a felhasználó számáratelefonszám beállítása a felhasználó számáraaz új felhasználó shell-jekészaz új felhasználó utóneveaz új felhasználó telefonszámaaz `%s' és a `%s' modulok nem kombinálhatóakaz új felhasználó UID-jeismeretlen hibafelhasználói fiók feloldásacsoport feloldásaa feloldás üresen hagyná a jelszó-mezőtnem támogatott jelszó-titkosítási séma %jd felhasználónak nincs neve%s felhasználónak nincs UID azonosítója%s felhasználó nem találhatófelhasználónak nincs se neve se UID azonosítójaA felhasználói objektumnak nincs %s attribútumafelhasználói objektum létrehozva `%s' nélkülfelhasználó/csoport azonosító használatbanfelhasználónév/csoportnév használatbanlibuser-0.60~dfsg/po/insert-header.sin0000644000175000017500000000124012226342570017755 0ustar tzafrirtzafrir# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } libuser-0.60~dfsg/po/hr.gmo0000644000175000017500000004470512226342604015640 0ustar tzafrirtzafrir\ 53Qe}*$":"S"v <0m/)')E^w*) (6_v.((.0$_ ! "#!#>$b#. )CT%c%   =L`q    -#$,>k," &<Sn#'!3 Qr"!##<`y   13E$Y~8(**) )T *~ )   1!8!O!j!!!!!!+!. ";"GY"")"&" #!$##F#j####&#(#$$>$)Q${$$0$!$'$&%%'L% t%%3%!% && 5&C&Y&"m&&& & &' 0'Q'"q''''''(%(#C( g(('(((( )-)@)U)"h))$)))),3,I, `,,,,,!,6,&5-\-#t----1-&.$?.d.t.&..F.%/37-Z7"7*777:8 I8j8o88888-89*9#>9'b9#9+9'9$:(':P:&X::(:,:,:,;L;e;; ;;;;;D;70<h<#<)<.<I=3K=7=6=3=8">7[>>!>9>&?#5?!Y?{???*?*?)@SF@@+@/@!A.5A1dA-A A%A) B.5B0dB6B BBB0C#PC3tC)C/C3D26D+iD*D;D-D*E$HEmEEEEE,EF$/F&TF{F"F%F%F GG;G$NGsG"G;G&GH(/HXHtHHH1HHHI'$I'LI$tI+I] "V%.=u{q,>yt&IDhrg5xlae$ J4z3^Ln#<oR\:A7HMkN+ BU@dc~_)|F}pXY'CTP/wj9-WO;f im[GKb1QS(E2 6s0Z! ?v8*`%s did not have a gid number. %s is not authorized to change the finger info of %s Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] useraccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Croatian (http://www.transifex.com/projects/p/fedora/language/hr/) Language: hr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2; %s nema GID broj. %s nema dopuštenja za izmjenu finger podatka o %s Nalog zastarijeva: %s Izradi naloga nije uspjela: %s. Nalog je zaključan. Nalog nije zaključan. Provjere autentičnosti za %s nije uspjela. Podjednako su određeni -L i -U. Nije moguće postaviti zadani kontekst za /etc/passwd Izmjena podataka usluge finger za %s. Izmjena lozinke za %s. Promjena korisničke ljuske za %s. Kopiranje strukture korisnika: Pogreška pri izradi Cyrus SASL korisnika: %sPogreška pri uklanjanju Cyrus SASL korisnika: %sZadani atributi korisničkih naziva: Zadane klase korisničkih objekata: Adresa e-pošteUnos nije pronađen. Pogreška pri izmjeni vlasnika`%s': %sPogreška pri izradi %s: %s. Pogreška pri izradi naloga za `%s': linija je nepravilno oblikovana. Pogreška pri izradi grupe `%s': %s. Pogreška pri izradi grupe za `%s' uz GID %jd: %s. Pogreška pri izradi početne mape za %s: %s Pogreška pri izradi korisničkog naloga za %s: %s Pogreška pri inicijalizaciji %s: %s. Pogreška pri inicijalizaciji %s: %s. Pogreška pri inicijalizaciji PAM-a. Pogreška pri pretraživanju %s: %s. Pogreška pri premještanju %s u %s: %s. Pogreška pri otvaranju `%s': %s. Pogreška pri raščlanjivanju argumenata: %s. Pogreška pri čitanju `%s': %sPogreška pri postavljanju početne lozinke za %s: %s Pogreška pri postavljanju lozinke za grupu %s: %s. Pogreška pri postavljanju lozinke za korisnika %s: %s. Pogreška pri zapisivanju `%s': %sOdbacivanje privilegija nije uspjelo. Uređivanje podataka o zastari za %s nije uspjelo: %s. Postavljanja lozinke za grupu %s nije uspjelo: %s. Postavljanja lozinke za korisnika %s nije uspjelo: %s. Podaci usluge finger izmijenjeni su. Podaci usluge finger nisu izmijenjene: pogreška unosa. Podaci usluge finger nisu izmijenjene: %s. Puno imeDohvaćanje zdanih korisničkih atributa: ImeGrupa %jd ne postoji. Grupu %s nije moguće izbrisati: %s. Brisanje grupe %s nije moguće: %s. Grupu %s nije moguće zaključati: %s Grupu %s nije moguće izmijeniti: %s. Izmjena grupe %s nije moguća: %s. Grupu %s nije moguće otključati: %s Grupa %s ne postoji. Izrada grupe nije uspjela: %s. Grupa s GID %jd nije imala naziv grupe. Telefon (kućni)Neaktivno: %ld Interna pogreška PAM-a `%s'. Interna pogreška. Neispravan ID %s Neispravana zadana vrijednost polja %s: %sNeispravan ID grupe %s Neispravan ID korisnika %s Principal administratora kerberosaLozinka kerberosa za principal administratoraPodručje KerberosaLDAP Bind DNLDAP Bind lozinkaLDAP SASL korisnik autorizacijeLDAP SASL korisnikOsnovna DN LDAP pretrageNaziv LDAP poslužiteljaPosljednja izmjena: %s Najviše: %ld Najmanje: %ld NikadNova ljuskaNova lozinkaNova lozinka (potvrdite)Naziv grupe nije određen. Nema naziva za gid %d. Naziv grupe nije određen. Bit će upotrijebljen %s. Naziv grupe nije određen. Ne postoji grupa s GID %jd. Nema uklanjanja. Novi naziv za mapu %s ne postoji. Prethodna početna mapa za %s ne postoji. Korisničko ime nije određeno. Nema naziva za uid %d. Nije određeno korisničko ime. Bit će upotrijebljen %s. Korisničko ime nije određeno. UredUredski telefonLozinka zastarijeva: %s Neaktivna lozinka: %s Izmjena lozinke je otkazana. Lozinka je izmijenjena. Lozinke se ne podudaraju, pokušajte ponovo. Odzivi nisu uspjeli. Odzivi su uspjeli. Izrada naloga s UID 0 je odbijena. Pretražuje se za grupom s nazivom %s. Pretražuje se za grupom s ID %jd. Pretražuje se za korisnikom s nazivom %s. Pretražuje se za korisnikom s ID %jd. Korisnička ljuska je promijenjena. Korisnička ljuska nije promijenjena:%s PrezimeAutentifikacija nepoznatog korisnika. Nepoznati kontekst korisnikaBrisanje korisnika %s nije moguće: %s. Korisnik %s nije mogao biti zaključan: %s. Korisnik %s nije mogao biti izmijenjen: %s. Korisnik %s nije mogao biti otključan: %s. Korisnik %s ne postoji. Neodgovarajući korisnik. Upozorenje: %ld [OPCIJA...][OPCIJA...] [korisnik][OPCIJA...] grupa[OPCIJA...] korisnikPristup odbijenDatoteka sigurnosnog spremanja`%s' postoji i nije regularna datotekaNe podudara se veličina datoteke sigurnosnog spremanjaLoš ID korisnika ili grupeLoše ime korisnika ili naziv grupeKonfiguracijska datoteka`%s' je prevelikaPovezivanje s LDAP poslužiteljem nije uspjeloPovezivanje s LDAP poslužiteljem nije uspjelo. Prvi pokušaj kao %s': %sTLS pregovaranja s LDAP poslužiteljem nije uspjeloOtvaranje konfiguracijske datoteke`%s' nije uspjelo: %sČitanje konfiguracijske datoteke`%s' nije uspjelo: %sZadavanje LDAP protokola za verziju %d nije uspjeloPokretanje konfiguracijske datoteke`%s' nije uspjelo: %sDohvaćanje sigurnosnog sadržaja `%s' nije uspjelo: %sOtvaranje`%s' nije uspjelo: %sČitanje iz `%s' nije moguće: %sDohvaćanje sigurnosnog sadržaja u `%s' nije uspjelo: %sIzrada statistike`%s' nije uspjela: %sZapisivanje u `%s' nije moguće: %sPodatak nije pronađen u datoteciEntitet nema atribut %sEntitet nema atribute %s ili %sObjekt entiteta nema atribut %sStruktura entiteta nema atribute %s ili %sEntitet je izrađen bez atributa %s ili %sUnos već postoji u datoteciPogreška pri povezivanju s kadm5 poslužiteljem za uslugu`%s' u području `%s': %sPogreška pri izradi`%s': %sPogreška pri izradi unosa LDAP imenika: %sPogreška pri izradi početne mape za korisnikaPogreška pri šifriranju lozinkePogreška pri inicijalizaciji Cyrus SASL-a: %sPogreška pri inicijalizaciji kerberos bibliotekaPogreška pri inicijalizaciji ldap bibliotekePogreška pri učitavanju modulaPogreška pri zaključavanju datotekePogreška pri zaključavanju datoteke: %sPogreška pri rukovanju s atributima terminalaPogreška pri uređivanju unosa LDAP imenika: %sPogreška pri premještanju početne mape za korisnikaPogreška pri otvaranju datotekePogreška pri raščlanjivanju korisničkog imena `%s' za kerberosPogreška pri čitanju datotekePogreška pri čitanja iz terminalaPogreška pri čitanju podataka za %s' iz kerberosaPogreška pri čitanju atributa terminalaPogreška pri uklanjanju unosa LDAP imenika: %sPogreška pri uklanjanju početne mape za korisnikaPogreška pri preimenovanju unosa LDAP imenika: %sPogreška pri razrješavanju znaka u moduluPogreška pri postavljanju lozinke za `%s'Pogreška pri postavljanju lozinke u LDAP imeniku za %s: %sPogreška pri postavljanju atributa terminalaPogreška datoteke statistikaPogreška pri zapisivanju u datotekuGenerička pogreškaGrupa %jd nema nazivaGrupa %s nema GIDGrupa nema ni naziv ni UIDInterna greška inicijalizacijeNe podudaraju se verzije biblioteke i modulaModul `%s' ne određuje `%s'Modul je onemogućen u konfiguracijiNe podudaraju se verzije modula u `%s'Naziv sadrži kontrolne znakoveNaziv sadrži neispravni znak `%c'Naziv sadrži znakove koji nisu ASCIINaziv sadrži prazna mjesta (razmake)Naziv nije zadanNaziv je predugačak (%zu > %d)Naziv je prekratakNaziv započinje znakom rastavljanjaAtribut `%s' nije pronađenNema funkcije pokretanja %s u `%s'Datoteka lozinki u sjeni ne postoji -- Bit će onemogućenoTakav objekt ne postoji u LDAP imenikuNema dovoljno privilegijaNe izvršava se s pravima superkorisnikaObjekt nije imao atribut %sObjekt nema atribut %sUspjehNepoznata pogreškaOtključavanje će polje lozinke učiniti praznimKorisnik %jd nema nazivaKorisnik %s nema UIDKorisnik nema ni naziv ni UIDKorisnički objekt nije imao atribut %sKorisnički objekt je izrađen bez `%s'ID korisnika ili grupe je u upotrebiIme korisnika ili naziv grupe je u upotrebilibuser-0.60~dfsg/po/bn_IN.gmo0000644000175000017500000007711212226342604016212 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----8/</$060K0S-1=1=1k1Yi2y2i=3Y3G4I4y4L5b5_66#6I6O7^T7777=8w8b997u:::7:< ;X];/;T;(;<d<<yt==+>[>?]??f@@gA"A|BBMBK CNUC5CACdD<DLD8 E[DEE!E@E5FSFMgF F5F GE%GkG zG%GEG+GH*3H3^HH!HHH(HC'IkIxIWsJJ\KKL2MiM-N(FNHoN<N~NKtOsO?4P?tPpP%QQMRQ,Se~SiS9NT7T TaTc/UUgV|VpVapW8W' Xz3X XXXXX,YYFWZ>ZEZP#[It[[ne\Q\N&]vu]S]@^^p_2`<;`x`''a)Oa<yagatbbccqddCe5eg)ffW4g>gTgP h9qh3h7hvisij/j}j,1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Bengali (India) (http://www.transifex.com/projects/p/fedora/language/bn_IN/) Language: bn_IN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s-র কোনো gid সংখ্যা নেই। %s বর্তমানে উপস্থিত নেই %s-র, %s-র finger সংক্রান্ত তথ্য পরিবর্তন করার অধিকার নেই। %s মান `%s': `:' অনুমোদিত নয়অ্যাকাউন্টের মেয়াদপূর্তী: %s অ্যাকাউন্ট তৈরি করতে ব্যর্থ: %s। অ্যাকাউন্ট লক করা আছে। অ্যাকাউন্ট লক করা নেই। %s-র পরিচয়প্রমাণ প্রক্রিয়া ব্যর্থ হয়েছে। -L এবং -U দুটিই নির্দিষ্ট করা হয়েছে। /etc/passwd-র ডিফল্ট প্রসঙ্গ নির্ধারণ করা সম্ভব হয়নি %s সংক্রান্ত finger তথ্য পরিবর্তন করা হচ্ছে। %s-র পাসওয়ার্ড পরিবর্তন করা হচ্ছে। %s-র শেল পরিবর্তন করা হচ্ছে। ব্যবহারকারীর বৈশিষ্ট্যের পরিকাঠামো কপি করা হচ্ছে: ব্যবহারকারী তৈরি করতে Cyrus SASL সংক্রান্ত সমস্যা: %sব্যবহারকারী মুছে ফেলার সময় Cyrus SASL সংক্রান্ত সমস্যা: %sব্যবহারকারীর ডিফল্ট বৈশিষ্ট্যর নাম: ব্যবহারকারীর ডিফল্ট অবজেক্ট ক্লাস: ই-মেইল ঠিকানাএন্ট্রি খুঁজে পাওয়া যায়নি। `%s'-র মোড পরিবর্তন করতে ত্রুটি: %s`%s'-র মালিকানা পরিবর্তন করতে সমস্যা: %s%s তৈরি করতে সমস্যা: %s। `%s' -র জন্য অ্যাকাউন্ট তৈরি করতে সমস্যা: পংক্তিটি সঠিক বিন্যাসে গঠিত হয়নি। `%s' দল তৈরি করতে সমস্যা: %s `%s'-র জন্য, GID %jd ব্যবহার করে দল তৈরি করতে সমস্যা: %s %s-র জন্য ব্যক্তিগত (হোম) ডিরেক্টরি তৈরি করতে সমস্যা: %s %s-র জন্য ব্যবহারকারীর অ্যাকাউন্ট তৈরি করতে সমস্যা:%s %s আরম্ভ করতে সমস্যা: %s %s আরম্ভ করতে সমস্যা: %s। PAM আরম্ভ করতে সমস্যা। %s অনুসন্ধানে সমস্যা: %s। %s কে %s-এ সরিয়ে নিতে সমস্যা হয়েছে: %s। `%s' খুলতে সমস্যা: %s। আর্গুমেন্ট পার্স করতে সমস্যা: %s. `%s' পড়তে সমস্যা: %sফাইল ডিসক্রিপ্টর %d থেকে পড়তে সমস্যা দেখা দিয়েছে। %s-র জন্য প্রারম্ভিক পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s %s দলের জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s। %s ব্যবহারকারীর জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s। `%s' লিখতে সমস্যা: %sঅধিকার হ্রাসের প্রচেষ্টা ব্যর্থ। %s সংক্রান্ত পুরোনো তথ্য পরিবর্তনের প্রচেষ্টা ব্যর্থ: %s। %s দলের পাসওয়ার্ড তৈরি করতে ব্যর্থ: %s %s ব্যবহারকারীর জন্য পাসওয়ার্ড নির্ধারণ করা সম্ভব হয়নি: %s। Finger সংক্রান্ত তথ্য পরিবর্তন করা হয়েছে। Finger সংক্রান্ত তথ্য পরিবর্তন করা যায়নি: ইনপুটজড়িত ত্রুটি। Finger সংক্রান্ত তথ্য পরিবর্তন করা হয়নি: %s। সম্পূর্ণ নামব্যবহারকারীর ডিফল্ট বৈশিষ্ট্য আহরণ করা হচ্ছে: প্রদত্ত নাম%jd দলটি বর্তমানে উপস্থিত নেই। %s দলটি মুছে ফেলা সম্ভব হয়নি: %s %s দলটি মুছে ফেলা সম্ভব হয়নি: %s। %s দলটি লক করা যায়নি: %s %s দল পরিবর্তন করা যায়নি: %s %s দলের তথ্য পরিবর্তন করা সম্ভব হয়নি: %s। %s দলটি আন-লক করা যায়নি: %s %s দলটি বর্তমানে উপস্থিত নেই। দল তৈরি করতে ব্যর্থ: %s %jd GIDসহ দলের কোনো নাম উল্লিখিত হয়নি। গৃহের ফোননিষ্ক্রিয়: %ld PAM-র অভ্যন্তরীণ সমস্যা `%s'. অভ্যন্তরীণ সমস্যা। অবৈধ ID %s %s ক্ষেত্রে ডিফল্ট মান বৈধ নয়: %sদলের অবৈধ ID %s ব্যবহারকারী অবৈধ ID %s Kerberos Admin PrincipalAdmin Principal-র জন্য Kerberos পাসওয়ার্ডKerberos RealmLDAP Bind DNLDAP Bind পাসওয়ার্ডLDAP SASL-র অনুমোদন ব্যবহারকারীLDAP SASL ব্যবহারকারীLDAP Search Base DNLDAP সার্ভারের নামসর্বশেষ পরিবর্তন: %s সর্বোচ্চ: %ld সর্বনিম্ন: %ld কখনো নয়নতুন শেলনতুন পাসওয়ার্ডনতুন পাসওয়ার্ড (নিশ্চায়ন)দলের নাম উল্লেখ করা হয়নি, %d gid-র জন্য কোনো নাম লেখা হয়নি। দলের নাম উল্লেখ করা হয়নি, %s ব্যবহার করা হচ্ছে। কোনো দলের নাম নির্ধারণ করা হয়নি। %jd GIDসহ কোনো দল বর্তমানে উপস্থিত নেই, মুছে ফেলা সম্ভব নয়। %s-র কোনো নতুন ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত নেই। %s-র ক্ষেত্রে পুরোনো ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত নেই। কোনো ব্যবহারকারীর নাম নির্দিষ্ট হয়নি, %d uid-র কোনো নাম উল্লিখিত হয়নি। ব্যবহারকারীর নাম উল্লেখ করা হয়নি, %s ব্যবহার করা হচ্ছে। কোনো ব্যবহারকারীর নাম উল্লেখ করা হয়নি। কর্মস্থলকর্মস্থলের ফোনপাসওয়ার্ডের মেয়াদপূর্তী: %s পাসওয়ার্ড নিষ্ক্রিয়: %s পাসওয়ার্ড পরিবর্তন প্রক্রিয়া বাতিল করা হয়েছে। পাসওয়ার্ড পরিবর্তিত হয়েছে। পাসওয়ার্ড দুটি মেলেনি, পুনরায় চেষ্টা করুন। বিফল চিহ্নকারী প্রম্পট সফল চিহ্নকারী প্রম্পট। UID 0 ব্যবহার করে অ্যাকাউন্ট তৈরি করা হবে না। ডিফল্টরূপে, ক্ষতিকর ব্যক্তিগত ডিরেক্টরি `%s' ব্যবহার প্রত্যাখ্যান করা হয়েছেডিফল্টরূপে, ক্ষতিকর ব্যক্তিগত ডিরেক্টরি `%s'-টি %s-র জন্য ব্যবহার করতে প্রত্যাখ্যান করা হয়েছে %s নামক দলের সন্ধান করা হচ্ছে। %jd ID-ধারী দলের সন্ধান করা হচ্ছে। %s নামক ব্যবহারকারীর সন্ধান করা হচ্ছে। %jd ID-ধারী ব্যবহারকারীর সন্ধান করা হচ্ছে। শেল পরিবর্তিত হয়েছে। শেল পরিবর্তিত হয়নি: %s পদবিঅজানা ব্যবহারকারী অনুমোদিত রয়েছেন। ব্যবহারকারীর প্রাসঙ্গিক বিবরণ অজানাব্যবহারকারী %s'র অ্যাকাউন্ট মুছে ফেলা সম্ভব হয়নি: %s। %s ব্যবহারকারীকে লক (lock) করা সম্ভব হয়নি: %s। %s ব্যবহারকারীর তথ্য পরিবর্তন করা সম্ভব হয়নি: %s। %s ব্যবহারকারীকে আন-লক (unlock) করা সম্ভব হয়নি: %s। %s ব্যবহারকারী বর্তমানে উপস্থিত নেই। ব্যবহারকারীর গরমিল। সতর্কবার্তা: %ld সতর্কবার্তা: %jd ID সহ দলটি বর্তমানে উপস্থিত নেই। [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] userএনক্রিপ্ট করা পাসওয়ার্ডের মধ্যে `:' ব্যবহার করা যাবে নাঅনুমোদন করা হয়নিব্যাক-আপ ফাইল `%s' বর্তমানে উপস্থিত আছে এবং এটি কোনো সাধারণ ফাইল নয়ব্যাক-আপ ফাইলের মাপে গরমিলঅবৈধ ব্যবহারকারী/দলের idঅবৈধ ব্যবহারকারী/দলের নামকনফিগারেশন ফাইল `%s' অত্যাধিক বড়LDAP সার্ভারে bind করা সম্ভব হয়নিLDAP সার্ভারে bind করা সম্ভব হয়নি, `%s' রূপে প্রথম প্রচেষ্টা করা হয়েছে: %sLDAP সার্ভারের সাথে TLS মীমাংসা করা সম্ভব হয়নিকনফিগারেশন ফাইল `%s' খোলা যায়নি: %sকনফিগারেশন ফাইল `%s' পড়া যায়নি: %sLDAP প্রোটোকল %d সংস্করণের সাথে স্থাপন করা যায়নিকনফিগারেশন ফাইল `%s' stat করা যায়নি: %s`%s'-র জন্য প্রাসঙ্গিক নিরাপত্তার বিবরণ প্রাপ্ত করা যায়নি: %sডিফল্ট প্রাসঙ্গিক নিরাপত্তার বিবরণ নির্ধারণ করা যায়নি: %s`%s'-র জন্য প্রাসঙ্গিক নিরাপত্তার বিবরণ প্রাপ্ত করা যায়নি: %s`%s' খোলা সম্ভব হয়নি: %s`%s' থেকে পড়া সম্ভব হয়নি: %sডিফল্ট প্রাসঙ্গিক নিরাপত্তার বিবরণ`%s' হিসাবে নির্ধারণ করা যায়নি: %s`%s' stat করা যায়নি: %s`%s'-এ লেখা যায়নি: %sফাইলে তথ্য পাওয়া যায়নিএন্ট্রিতে কোনো %s বৈশিষ্ট্য উপস্থিত নেইস্বত্বায় কোনো %s অথবা %s বৈশিষ্ট্য উপস্থিত নেইস্বত্বার অবজেক্টের মধ্যে %s বৈশিষ্ট্য উপস্থিত নেইস্বত্বার গঠনে কোনো %s অথবা %s বৈশিষ্ট্য উপস্থিত নেইকোনো %s অথবা %s বৈশিষ্ট্য বিনা স্বত্বা তৈরি করা হয়েছেফাইলের মধ্যে এন্ট্রি বর্তমানে উপস্থিত আছেদ্বন্দযুক্ত নাম সহ একটি এন্ট্রি ফাইলের মধ্যে বর্তমানে উপস্থিত আছে`%s' পরিসেবার জন্য kdam5 সার্ভারটির সাথে সংযোগ করতে `%s' realm-এ সমস্যা হয়েছে: %s`%s' তৈরি করতে সমস্যা: %sLDAP ডিরেক্টরি এন্ট্রি তৈরি করতে সমস্যা: %sব্যবহারকারীর জন্য ব্যক্তিগত (হোম) ডিরেক্টরি তৈরি করতে সমস্যাপাসওয়ার্ড এনক্রিপ্ট করতে সমস্যাCyrus SASL আরম্ভ করতে সমস্যা: %skerberos লাইব্রেরি আরম্ভ করতে সমস্যাLdap লাইব্রেরি আরম্ভ করতে সমস্যামডিউল লোড করতে সমস্যাফাইল লক করতে সমস্যাফাইল লক করতে সমস্যা: %sটার্মিনালের বৈশিষ্ট্য পরিবর্তন করতে সমস্যাLDAP ডিরেক্টরি এন্ট্রি পরিবর্তন করতে সমস্যা: %sব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি সরাতে সমস্যাফাইল খুলতে সমস্যা`%s' ব্যবহারকারীর নাম kerberos-র জন্য পার্স করতে সমস্যাফাইল পড়তে সমস্যাটার্মিনাল থেকে পড়তে সমস্যা`%s'-র জন্য kerberos থেকে তথ্য পড়তে সমস্যাটার্মিনালের বৈশিষ্ট্য পড়তে সমস্যাLDAP ডিরেক্টরি এন্ট্রি মুছে ফেলতে সমস্যা: %sব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি মুছে ফেলতে সমস্যাLDAP ডিরেক্টরি এন্ট্রির নাম পরিবর্তন করতে সমস্যা: %sমডিউলের সিম্বল মীমাংসা করতে সমস্যা`%s'-র জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা%s-র জন্য LDAP ডিরেক্টরিতে পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %sটার্মিনালের বৈশিষ্ট্য নির্ধারণ করতে সমস্যাফাইল stat করতে সমস্যাফাইলে লিখতে সমস্যাসাধারণ সমস্যা%jd দলের নাম উল্লিখিত নেই%s নামক দলের ক্ষেত্রে GID ধার্য করা হয়নিদলের নাম ও GID ধার্য করা হয়নিঅভ্যন্তরীণ প্রারম্ভিক সমস্যাঅবৈধ IDঅ্যাট্রিবিউটের মান বৈধ নয়বৈধ রূপে মডিউল একত্রিত করা হয়নিঅবৈধ সংখ্যালাইব্রেরি/মডিউলের সংস্করণে গরমিল`%s' মডিউলের দ্বারা `%s'-র ব্যাখ্যা করা যায়নিকনফিগারেশনের দরুণ মডিউলটি নিষ্ক্রিয় হয়ে গেছে`%s'-র মডিউল সংস্করণে গরমিলনামের মধ্য নিয়ন্ত্রক (control) অক্ষর লেখা হয়েছেনামের মধ্য অবৈধ অক্ষর `%c' লেখা হয়েছেনামের মধ্য non-ASCII অক্ষর লেখা হয়েছেনামের মধ্যে শূণ্যস্থান রয়েছেনাম নির্ধারণ করা হয়নিউল্লিখিত নাম অত্যাধিক লম্বা (%zu > %d)নাম অত্যাধিক ছোটনামের প্রারম্ভে হাইফেন চিহ্ন (-) উপস্থিত রয়েছেকোনো `%s' বৈশিষ্ট্য পাওয়া যায়নি%s প্রারম্ভিক কার্য `%s'-র মধ্যে উপস্থিত নেইকোনো শেডো ফাইল উপস্থিত নেই -- নিষ্ক্রিয় করা হচ্ছেLDAP ডিরেক্টরির মধ্যে এই ধরনের কোনো বস্তু উপস্থিত নেইঅপর্যাপ্ত অধিকারসুপার-ইউজারের অধিকারসহ সঞ্চালিত হচ্ছে নাঅবজেক্টের মধ্যে কোনো %s বৈশিষ্ট্য উপস্থিত নেইঅবজেক্টের মধ্যে %s বৈশিষ্ট্য উপস্থিত নেইসফল`%s' ও `%s' মডিউলগুলি একত্রিত করা যাবে নাঅজানা সমস্যাআন-লক করা হলে পাসওয়ার্ডের ক্ষেত্র ফাঁকা হয়ে যাবেপাসওয়ার্ড এনক্রিপশনের বিন্যাস সমর্থিত নয়%jd ব্যবহারকারীর নাম উল্লিখিত নেই%s নামক ব্যবহারকারীর ক্ষেত্রে UID ধার্য করা হয়নিব্যবহারকারীর নাম ও UID ধার্য করা হয়নিব্যবহারকারীর অবজেক্টে কোনো `%s' বৈশিষ্ট্য উপস্থিত নেইব্যবহারকারীর অবজেক্ট `%s' বিনা নির্মিত হয়েছেব্যবহারকারী/দলের id বর্তমানে ব্যবহৃত হচ্ছেব্যবহারকারী/দলের নাম বর্তমানে ব্যবহৃত হচ্ছেlibuser-0.60~dfsg/po/hi.gmo0000644000175000017500000007223012226342604015621 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$-----/'/l/La0010(05%18[1B11`X2P2D 3aO3]3]4Am4P4575?P5X575!6D6c!7k7k7B]8U8@8479Hl979d95R:g:~:ao;m;5?<Ju<<XB=g=;>m?>N>>R?f?<}?P?P @\\@c@XA_vA;A4BRGBB!B/B'C.CMHC&C2C;Cb,D(DD'D>D"4EWEvE$EEEEFFD;FF$GbGHVHbHMIInJJ+ K$9K6^KKK.KbL1sL.LcL8MMTNE$O`jO[O"'P1JP|PFP>P^Q[qQdQ^2RAR*RRaS|S2S$S0SiTTzTM"U5pU<UHU<,ViVSVLEWLWiWYIXrXyYVY)Y0ZBZ+Z0Z@([=i[J[K[]>\c\M]N]]5^p^|*_@_R_i;`X`O`INaLaiaOb|b9Vcc9&dI`drdIewge|e\fofNVggL%hFrh@h(h?#iBciBiMi7j Mj2nj%jWj`k\k^k_1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Hindi (http://www.transifex.com/projects/p/fedora/language/hi/) Language: hi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s के gid अंक नहीं है. %s मौजूद नहीं है %s की पहचान को बदलने के लिए %s अधिकृत नहीं है %s मान `%s': `:' नहीं अनुमति प्राप्तलेखा अंत: %s लेखा बनावट असफल: %s। लेखा तालकित है. लेखा तालकित नहीं है. %s के लिए सत्यापन असफल. -L और -U दोनों निर्दिष्ट है. /etc/passwd के लिए मूलभूत संदर्भ व्यवस्थित नहीं कर सकता %s के लिए फिंगर जानकारी बदली जा रही है. %s के लिए शब्दकूट बदला जा रहा है. %s के लिए शैल बदला जा रहा है. उपयोक्ता संरचना प्रतिलिपि कर रहा है: %s उपयोक्ता बनाने में सायरस SASL त्रुटि%s उपयोक्ता हटाने में सायरस SASL त्रुटिमूलभूत उपयोक्ता गुण नाम: मूलभूत उपयोक्ता वस्तु वर्गों: ई-डाक पताप्रविष्टि नहीं मिली. `%s' मोड बदलने में त्रुटि: %s`%s' के स्वामित्व बदलाव में त्रुटि: %s%s बनाने में त्रुटि: %s। `%s' के लिए लेखा बनाने में त्रुटि: लाइन सही तरीके से संरूपित नहीं किया गया. `%s' समूह बनाने में त्रुटि: %s. `%s' के लिए GID %jd से समूह बनाने में त्रुटि: %s %s के लिए घर निर्देशिका बनाने में त्रुटि: %s %s के लिए उपयोक्ता लेखा बनाने में त्रुटि: %s %s प्रारंभिकीकरण त्रुटि: %s %s के प्रारंभिकीकरण में त्रुटि: %s. PAM प्रारंभिकीकरण त्रुटि. %s देखने में त्रुटि: %s %s से %s को चलाने में त्रुटि: %s। `%s' खोलने में त्रुटि: %s. तर्कों को विश्लेषण करने में त्रुटि: %s। `%s' पढ़ने में त्रुटि: %sविवरणकर्ता %d से फ़ाइल पढ़ने में त्रुटि. %s के लिए प्रारंभिक शब्दकूट जमा करने में त्रुटि: %s %s समूह के लिए शब्दकूट जमावट त्रुटि: %s। %s उपयोक्ता के लिए शब्दकूट जमावट त्रुटि: %s। `%s' लिखने में त्रुटि: %sविशेषाधिकार हटाने में असफल. %s के लिए पुरानी जानकारी रूपांतरित करने में असफल: %s %s समूह के लिए शब्दकूट जमावट असफल: %s %s उपयोक्ता के लिए शब्दकूट जमावट असफल: %s। फिंगर जानकारी बदली गई. फिंगर जानकारी नहीं बदली गई: निवेश त्रुटि. फिंगर जानकारी नहीं बदली गई: %s। पूरा नाममूलभूत उपयोक्ता गुण ले रहे हैं: दिया नाम%jd समूह उपस्थित नहीं है. समूह %s को विलोपित नहीं कर सका: %s. समूह %s को विलोपित नहीं कर सका: %s. %s समूह को तालकित नहीं किया जा सकता: %s %s समूह को परिवर्तित नहीं किया जा सका: %ss %s समूह को परिवर्तित नहीं कर सका: %s। %s समूह को अतालकित नहीं किया जा सकता: %s %s समूह उपस्थित नहीं है. समूह निर्माण असफल: %s GID %jd समूह का कोई समूह नाम नहीं है. घर दूरभाषनिष्क्रिय: %ld आंतरिक PAM त्रुटि`%s'. आंतरिक त्रुटि. अमान्य ID %s %s क्षेत्र का अवैध मूलभूत मान: %sअमान्य समूह ID %s अमान्य उपयोक्ता ID %s करबरोस प्रधान प्रशासकप्रधान प्रशासक के लिए करबरोस शब्दकूटकरबरोस क्षेत्रLDAP बंधन DNLDAP बंधन शब्दकूटLDAP SASL प्राधिकरण उपयोक्ताLDAP SASL उपयोक्ताLDAP खोज आधार DNLDAP सर्वर नाम अंतिम बदलाव: %s अधिकतम: %ld न्यूनतम: %ld कभी नहींनया शैलनया शब्दकूटनया शब्दकूट (निश्चित करें)कोई समूह नाम निर्दिष्ट नहीं किया गया, gid %d के लिए कोई नाम नहीं है. %s के प्रयोग से कोई समूह नाम निर्दिष्ट नहीं किया गया. कोई समूह नाम निर्दिष्ट नहीं किया गया. GID %jd के साथ कोई जीवंत समूह मौजूद है, नहीं हटा रहे हैं. %s की कोई नई घर निर्देशिका नहीं है. %s की कोई पुरानी घर निर्देशिका नहीं है. कोई उपयोक्ता नाम निर्दिष्ट नहीं किया गया,uid %d के लिए नाम नहीं है. %s के प्रयोग से कोई उपयोक्ता नाम निर्दिष्ट नहीं किया गया. कोई उपयोक्ता नाम निर्दिष्ट नहीं किया गया. कार्यालयकार्यालय दूरभाषशब्दकूट अंत: %s शब्दकूट निष्क्रिय: %s शब्दकूट बदलाव रद्द किया गया. शब्दकूट बदला गया. शब्दकूट मिल नहीं रहे,पुन:प्रयास करें. प्रांप्ट विफल हुआ. प्रांप्ट सफल हुआ. UID 0 से लेखा बनाने के लिए इंकार कर रहा है ख़तरनाक घर निर्देशिका `%s' को तयशुदा रूप से प्रयोग के लिए अस्वीकृत कर रहा हैख़तरनाक घर निर्देशिका `%s' को %s के लिए तयशुदा रूप से प्रयोग के लिए अस्वीकृत कर रहा है %s नामित समूह के लिए खोज हो रही है. ID %jd से समूह की खोज हो रही है. %s नामित उपयोक्ता के लिए खोज हो रही है. ID %jd से उपयोक्ता के लिए खोज हो रही है. शैल बदला गया. शैल नहीं बदला गया:%s उपनामअज्ञात उपयोक्ता सत्यापित. अज्ञात उपयोक्ता संदर्भउपयोक्ता %s को विलोपित नहीं कर सका: %s। %s उपयोक्ता को तालकित नहीं कर सका: %s। %s उपयोक्ता को परिवर्तित नहीं कर सका: %s। %s उपयोक्ता को अतालकित नहीं कर सका: %s। %s उपयोक्ता जीवंत नहीं है. उपयोक्ता बेमेल. चेतावनी: %ld चेतावनी: ID %jd के साथ समूह मौजूद नहीं है. [विकल्प...][विकल्प...] [उपयोक्ता][विकल्प...] समूह[विकल्प...] उपयोक्ता`:' गोपित कूटशब्द में अनुमति प्राप्त नहींअभिगम निषेध`%s' बैकअप फाइल जीवंत है और एक नियमित फाइल नहीं हैबैकअप फाइल आकार मेल नहीं खायाबुरा उपयोक्ता/समूह idबुरा उपयोक्ता/समूह नाम`%s' विन्यास फाइल काफी बड़ा हैLDAP सर्वर से जुड नहीं सकाLDAP सर्वर से जुड नहीं सका, पहले `%s' रूप में प्रयास करें: %sLDAP सर्वर से TLS संबंधित नहीं कर सका`%s' विन्यास फाइल खोल नहीं सका: %s`%s' विन्यास फाइल पढ़ नहीं सका: %s%d संस्करण को LDAP प्रोटोकॉल सेट नहीं कर सका `%s' विन्यास फाइल स्टेट नहीं कर सका: %s`%s' का सुरक्षा संदर्भ निर्धारित नहीं कर सका: %sमूलभूत सुरक्षा संदर्भ व्यवस्थित पा नहीं सका: %s`%s' का सुरक्षा संदर्भ पा नहीं सका: %s`%s' खोल नहीं सका: %s`%s' से पढ़ नहीं सका: %s`%s' में मूलभूत सुरक्षा संदर्भ व्यवस्थित नहीं कर सका: %s`%s' stat नहीं कर सका: %s`%s' को लिख नहीं सका: %sफाइल में आंकडा नहीं मिलाएंटिटी में %s गुण नहीं हैएंटिटी में %s या %s गुण नहीं हैंएंटिटी वस्तु का %s गुण नहीं है एंटिटी संरचना में %s या %s गुण नहीं हैंएंटिटी की बनावट %s या %s गुण के बिना की गई फाइल में प्रविष्टि पहले से हैफाइल में विरोधी नाम के साथ प्रविष्टि पहले से मौजूद है`%s' सेवा के लिए `%s' क्षेत्र में kadm5 सर्वर से संबंधित करने में त्रुटि: %s`%s' बनाने में त्रुटि: %sLDAP निर्देशिका प्रविष्टि बनाने में त्रुटि: %sउपयोक्ता के लिए घर निर्देशिका बनाने में त्रुटिशब्दकूट गोपन में त्रुटि %s सायरस SASL प्रारंभिकीकरण त्रुटिकरबरोस लाइब्रेरी प्रारंभिकीकरण त्रुटिldap क्रमादेश प्रारंभिकीकरण त्रुटिमॉड्यूल भारित करने में त्रुटिफाइल तालकित करने में त्रुटि%s फाइल तालकित करने में त्रुटिटर्मिनल गुण से छेड़छाड़ करने में त्रुटिLDAP निर्देशिका प्रविष्टि रूपांतरित करने में त्रुटि: %sउपयोक्ता के लिए घर निर्देशिका चलाने में त्रुटिफाइल खुलने में त्रुटिकरबरोस के लिए `%s' उपयोक्ता नाम पद व्याख्या करने में त्रुटिफाइल पढ़ने में त्रुटिटर्मिनल से पढ़ने में त्रुटिकरबरोस से `%s' के लिए जानकारी पढ़ने में त्रुटिटर्मिनल गुण पढने में त्रुटिLDAP निर्देशिका प्रविष्टि को हटाने में त्रुटि: %sउपयोक्ता के लिए घर निर्देशिका हटाने में त्रुटिLDAP निर्देशिका प्रविष्टि के पुनर्नामकरण में त्रुटि: %sमॉड्यूल में प्रतीक वियोजन करने में त्रुटि`%s' के लिए शब्दकूट जमावट त्रुटि%s के लिए LDAP निर्देशिका में शब्दकूट जमावट त्रुटि: %s टर्मिनल गुण जमावट में त्रुटिफाइल स्थाई करने में त्रुटिफाइल को लिखने में त्रुटिजेनेरिक त्रुटिसमूह %jd का कोई नाम नहीं हैसमूह के पास %s कोई GID नहीं हैसमूह के पास न तो नाम है न GID.आंतरिक प्रारंभिकीकरण त्रुटिअमान्य IDअवैध गुण मानअवैध मॉड्यूल संयोगअमान्य संख्यालाइब्रेरी/मॉड्यूल संस्करण बेमेल`%s' मौड्यूल `%s' को परिभाषित नहीं करता हैविन्यास से मॉड्यूल असमर्थ किया गया`%s' में मॉड्यूल संस्करण मेल नहीं खातानाम में नियंत्रण संप्रतीक समाहित हैनाम में अनुचित अक्षर `%c' समाहित हैनाम में गैर-ASCII अक्षर समाहित हैंनाम में रिक्तस्थान समाहित हैनाम नहीं जमा हैनाम काफी लंबा है (%zu > %d)नाम बहुत छोटा हैनाम हाइफन से शुरू होता हैकोई `%s' गुण नहीं मिला%s फलन प्रारंभिकीकरण, '%s' में नहीं हैकोई शेडो फाइल नहीं है -- असमर्थ कर रहा हैLDAP निर्देशिका में ऐसे कुछ वस्तु नहीं हैअधिकार काफी नहीं हैंसुपरयूजर विशेषाधिकार से निष्पादन नहीं कर रहा हैवस्तु में %s गुण नहीं थावस्तु में %s गुण नहीं हैसफल`%s' और `%s' मॉड्यूल को जोड़ा नहीं जा सकता हैअज्ञात त्रुटिअतालाकित करना शब्दकूट क्षेत्र को खाली रखेगा.असमर्थित कूटशब्द गोपन योजनाउपयोक्ता %jd के पास कोई नाम नहीं हैउपयोक्ता के पास %s कोई UID नहीं है.उपयोक्ता के पास कोई नाम या UID नहीं हैउपयोक्ता वस्तु का %s गुण नहीं थाउपयोक्ता वस्तु को `%s' के बिना बनाया गया थाउपयोक्ता/समूह id प्रयोग में हैउपयोक्ता/समूह नाम प्रयोग में हैlibuser-0.60~dfsg/po/ru.po0000644000175000017500000013470712226342570015515 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Andrew Martynov , 2004, 2005, 2006, 2007 # triplepointfive , 2012 # Leonid Kanter , 2003 # Misha Shnurapet , 2011 # Miloslav Trmač , 2011 # Nikolay Sivov , 2007 # Stanislav Darchinov , 2011 # Yulia , 2008, 2009 # Yulia , 2012 # Игорь Горбунов , 2013 # Леонид Кузин , 2012 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Russian (http://www.transifex.com/projects/p/fedora/language/" "ru/)\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Ошибка сброса привилегий.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Внутренняя ошибка.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s не авторизован для изменения finger информации о %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Неизвестный пользовательский контекст" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Не могу установить контекст по умолчанию для /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Ошибка инициализации PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Ошибка аутентификации для %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Внутренняя ошибка PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Аутентификация неизвестного пользователя.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Пользователь не совпадает.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "запрашивать по всем данным" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "список параметров, которые устаревают, для пользователя" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "минимум дней между сменой пароля" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "ДНИ" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "максимум дней между сменой пароля" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "дата последнего изменения пароля в днях с 1.01.1970" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "количество дней с даты окончания срока действия пароля, которые должны " "пройти для того, чтобы учетная запись считалась неактивной" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "дата окончания срока действия пароля в днях с 1.01.1970" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" "количество дней между завершением срока действия и показом предупреждения " "пользователю" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ПАРАМЕТР...] пользователь" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Ошибка разбора аргументов: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Имя пользователя не указано.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Ошибка инициализации %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Пользователь %s не существует.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Учетная запись заблокирована.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Учетная запись не заблокирована.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Минимум:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Максимум:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Максимум:\tнет\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Предупреждение:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Неактивных:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Неактивных:\tНикогда\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Должен сменить пароль при следующем входе" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Никогда" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Последнее изменение:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Действие пароля завершается:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Пароль не активен:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Учетная запись действительна до:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Ошибка изменения информации о сроках для %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ПАРАМЕТР...] [пользователь]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Имя пользователя не указано, нет имени для uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Изменение информации finger для %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Полное имя" #: apps/lchfn.c:146 msgid "Surname" msgstr "Фамилия" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Имя" #: apps/lchfn.c:167 msgid "Office" msgstr "Офис" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Служебный телефон" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Домашний телефон" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Адрес E-Mail" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Информация finger не изменена: ошибка ввода.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Информация finger изменена.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Информация finger не изменена: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Изменение оболочки для %s\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Новая оболочка" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Оболочка не изменена: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Оболочка изменена.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid для новой группы" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "ЧИСЛО" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "создать системную группу" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ПАРАМЕТР...] группа" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Не указано имя группы.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Неверен ID группы %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Ошибка создания группы: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Группа %s не существует.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Группа %s не может быть удалена: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "установить GID для группы" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "изменить группу, задав название" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "ИМЯ" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "не зашифрованный пароль для использования в группе" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "СТРОКА" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "предварительно зашифрованный пароль для использования в группе" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "список администраторов для добавления" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "список администраторов для удаления" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "список членов группы для добавления" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "список членов группы для удаления" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "заблокировать группу" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "разблокировать группу" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L и -U указаны одновременно.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Ошибка установки пароля для группы %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Группа %s не может быть заблокирована: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Группа %s не может быть разблокирована: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Группа %s не может быть изменена: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Ошибка поиска %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "список членов по имени группы, а не членство в группе по имени пользователя" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" "список членов только по имени, без личного или группового идентификаторов" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Не указано имя группы, используется %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Не указано имя группы, нет имени для gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Имя пользователя не указано, используется %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s не существует.\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "файл с записанной информацией о пользователе" #: apps/lnewusers.c:47 msgid "PATH" msgstr "ПУТЬ" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "не создавать домашний каталог" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "не отправлять почту в каталог /var/spool" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ПАРАМЕТР...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Ошибка открытия `%s': %s\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Ошибка создания учётной записи для «%s»: неверный формат строки.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Неверен ID пользователя %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Отказ в создании учетной записи с UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Ошибка создания группы для «%s» с GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Отказ использования небезопасного домашнего каталога «%s» для %s по " "умолчанию\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Ошибка создания домашнего каталога для %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Ошибка создания почтовой очереди для %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Ошибка установки начального пароля для %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Ошибка создания учетной записи пользователя %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "задать пароль для группы вместо пароля для пользователя" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "новый простой пароль" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "новый зашифрованный пароль" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "ввести новый пароль " #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "прочесть новый шифрованный пароль, полученный от дешифровщика" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Изменение пароля пользователя %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Новый пароль" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Новый пароль (подтвердите)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Пароли не совпадают, попробуйте еще раз.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Изменение пароля отменено.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Ошибка чтения дескриптора файла %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Ошибка установки пароля для пользователя %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Ошибка установки пароля для группы %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Пароль изменен.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "создать системного пользователя" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" "вспомогательная информация для нового пользователя (номер телефона, адрес, " "полное имя и т.д.)" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "домашний каталог для нового пользователя" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "каталог файлов для нового пользователя" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "командная оболочка для нового пользователя" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "идентификатор нового пользователя" #: apps/luseradd.c:69 msgid "group for new user" msgstr "группа для нового пользователя" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "не создавать домашний каталог для пользователя" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "не создавать группу с именем пользователя" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "обычное имя пользователя" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "имя, задающееся для нового пользователя" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "фамилия пользователя" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "номер кабинета для нового пользователя" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "номер телефона пользователя" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "домашний номер телефона пользователя" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Группа %jd не существует\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Ошибка создания группы `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Ошибка создания учетной записи: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Ошибка создания %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Ошибка создания почтовой очереди: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "не удалять собственные группы пользователей, если они имеются" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "удалить домашний каталог пользователя" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Пользователь %s не может быть удален: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s не имеет уровня gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Не существует группы с GID %jd, не удаляется.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Группа c GID %jd не имела имени.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Группа %s не может быть удалена: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ошибка удаления домашнего каталога для пользователя" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Ошибка при удалении почтовой очереди: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "дополнительная информация GECOS" #: apps/lusermod.c:60 msgid "home directory" msgstr "домашний каталог" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "переместить содержимое домашнего каталога" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "назначить командную оболочку для пользователя" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "назначить идентификатор пользователя" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "назначить пользователю основную группу " #: apps/lusermod.c:70 msgid "change login name for user" msgstr "изменить имя пользователя" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "открытый пароль для пользователя" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "предварительно зашифрованный пароль для пользователя" #: apps/lusermod.c:75 msgid "lock account" msgstr "заблокировать учётную запись" #: apps/lusermod.c:78 msgid "unlock account" msgstr "разблокировать учётную запись" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "установить общее имя пользователя" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "установить полученное имя пользователя" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "установить фамилию пользователя" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "установить номер кабинета пользователя" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "установить номер телефона пользователя" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "установить номер домашнего телефона пользователя" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Ошибка установки пароля для пользователя %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Пользователь %s не может быть заблокирован: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Пользователь %s не может быть разблокирован: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Предупреждение: Группа с номером %jd не существует.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Пользователь %s не может быть изменен: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Группа %s не может быть изменена: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Нет старого домашнего каталога для %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Нет нового домашнего каталога для %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Ошибка перемещения %s в %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "невозможно открыть файл конфигурации `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "невозможно получить информацию о файле конфигурации `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "файл конфигурации `%s' слишком велик" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "невозможно прочитать файл конфигурации `%s': %s" #: lib/error.c:62 msgid "success" msgstr "выполнено" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "модуль запрещен в настройках" #: lib/error.c:66 msgid "generic error" msgstr "общая ошибка" #: lib/error.c:68 msgid "not enough privileges" msgstr "недостаточно привилегий" #: lib/error.c:70 msgid "access denied" msgstr "доступ запрещен" #: lib/error.c:72 msgid "bad user/group name" msgstr "неверное имя пользователя/группы" #: lib/error.c:74 msgid "bad user/group id" msgstr "неверный ID пользователя/группы" #: lib/error.c:76 msgid "user/group name in use" msgstr "имя пользователя/группы используется" #: lib/error.c:78 msgid "user/group id in use" msgstr "ID пользователя/группы используется" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "ошибка изменения атрибутов терминала" #: lib/error.c:82 msgid "error opening file" msgstr "ошибка открытия файла" #: lib/error.c:84 msgid "error locking file" msgstr "ошибка блокировки файла" #: lib/error.c:86 msgid "error statting file" msgstr "ошибка получения параметров файла" #: lib/error.c:88 msgid "error reading file" msgstr "ошибка чтения файла" #: lib/error.c:90 msgid "error writing to file" msgstr "ошибка записи в файл" #: lib/error.c:92 msgid "data not found in file" msgstr "данные не найдены в файле" #: lib/error.c:94 msgid "internal initialization error" msgstr "внутренняя ошибка инициализации" #: lib/error.c:96 msgid "error loading module" msgstr "ошибка загрузки модуля" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "ошибка определения символа в модуле" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "несоответствие версии модуля и библиотеки" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "при разблокировании поле пароля будет очищено" #: lib/error.c:105 msgid "invalid attribute value" msgstr "неверное значение аттрибута" #: lib/error.c:107 msgid "invalid module combination" msgstr "неверный состав модуля" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "домашний каталог для нового пользователя" #: lib/error.c:115 msgid "unknown error" msgstr "неизвестная ошибка" #: lib/misc.c:240 msgid "invalid number" msgstr "неверный номер" #: lib/misc.c:254 msgid "invalid ID" msgstr "неверный идентификатор" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "нет функции инициализации %s в `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "несоответствие версии модуля в `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "в модуле `%s' не определено значение `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "ошибка чтения атрибутов терминала" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "ошибка установки атрибутов терминала" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "ошибка чтения с терминала" #: lib/user.c:218 msgid "name is not set" msgstr "имя не установлено" #: lib/user.c:223 msgid "name is too short" msgstr "имя слишком коротко" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "имя слишком длинное (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "имя содержит не-ASCII символы" #: lib/user.c:242 msgid "name contains control characters" msgstr "имя содержит управляющие символы" #: lib/user.c:249 msgid "name contains whitespace" msgstr "имя содержит пробелы" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "имя начинается с дефиса" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "имя содержит неверный символ «%c»" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "пользователь %s не имеет UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "пользователь %s не найден" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "группа %s не имеет GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "группа %s не найдена" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "пользователь %jd не имеет имени" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "группа %jd не имеет имени" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "пользователь не имеет имени и кода UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "группа не имеет имени и кода UID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Отказ использования небезопасного домашнего каталога «%s» по умолчанию" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Неверное значение по умолчанию для поля %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ошибка блокировки файла: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "невозможно получить контекст безопасности по умолчанию: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "невозможно получить контекст безопасности для `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" "невозможно задать значение контекста безопасности по умолчанию `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "невозможно определить контекст безопасности для `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "невозможно открыть `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "невозможно получить сведения о `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "ошибка создания `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "резервный файл `%s' существует и не является обычным файлом" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Ошибка при смене владельца «%s»: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Ошибка при изменении режима «%s»: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Ошибка чтения `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Ошибка при записи «%s»: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "несоответствие размера файла резервной копии" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "Значение %s недопустимо `%s' `:'" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "невозможно прочитать из `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "запись уже существует в файле" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "невозможно записать в `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "объект не имеет атрибута %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "запись с конфликтующим именем уже есть в файле" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "Не допускается использование `:' в паролях" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "ошибка при шифровании пароля" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "модули `%s' и `%s' не могут быть объединены" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "выполняется без привилегий суперпользователя" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "нет файла shadow -- запрещено" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "ошибка подключения к серверу kadm5 службы `%s' в области `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "ошибка инициализации библиотеки kerberos " #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "ошибка обработки имени пользователя `%s' для kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "структура не имеет атрибутов %s или %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "объект не имеет атрибутов %s или %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "объект был создан без атрибутов %s или %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "ошибка чтения информации для `%s' из kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "объект не имеет атрибута %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "ошибка установки пароля для `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Область Kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Пароль Kerberos для Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ошибка инициализации библиотеки ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "невозможно установить протокол LDAP для версии %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "невозможно согласовать TLS с сервером LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "невозможно подключиться к серверу LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "невозможно подключиться к серверу LDAP, первая попытка - `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "объект пользователя не имеет атрибута %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "объект пользователя был создан без `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "ошибка создания записи каталога LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "ошибка изменения записи каталога LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "ошибка переименования записи каталога LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "объект не имел атрибута %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "ошибка удаления записи каталога LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "объект не имеет атрибута %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "схема шифрования паролей не поддерживается" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "нет такого объекта в каталоге LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "не найден атрибут `%s'" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "ошибка установки пароля в каталоге LDAP для %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Имя сервера LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind Password" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Пользователь LDAP SASL" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Авторизованный пользователь LDAP SASL" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "ошибка Cyrus SASL при создании пользователя: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Ошибка SASL при удалении пользователя: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "ошибка инициализации Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ошибка создания домашнего каталога для пользователя" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ошибка удаления домашнего каталога для пользователя" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ошибка перемещения домашнего каталога для пользователя" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Ошибка при инициализации %s: %s.\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Неверен идентификатор %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Поиск группы с номером %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Поиск группы с именем %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Поиск пользователя с номером %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Поиск пользователя с именем %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Запись не найдена\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Запрос выполнен удачно.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Запрос выполнен неудачно.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Стандартные классы объекта пользователя:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Имена стандартных атрибутов пользователя:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Получение стандартных атрибутов пользователя:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Копирование структуры пользователя:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s не имеет домашнего каталога.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Ошибка удаления %s: %s.\n" libuser-0.60~dfsg/po/sr@latin.po0000644000175000017500000010642012226342570016632 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Nikola Pajtic , 2008 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/fedora/" "language/sr@latin/)\n" "Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Neuspelo odbacivanje povlastica.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Unutrašnja greška.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s nije ovlašćen da menja finger podatke za %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Nepoznat korisnički kontekst" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Ne mogu da postavim podrazumevani kontekst za /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Greška pri inicijalizaciji PAM-a.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Neuspela autentifikacija za %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Unutrašnja PAM greška „%s“.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Autentifikovan nepoznat korisnik.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Neslaganje korisnika.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPCIJA...] korisnik" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Greška pri tumačenju argumenata: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Nije navedeno korisničko ime.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Greška pri inicijalizaciji %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Korisnik %s ne postoji.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Nalog je zaključan.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Nalog nije zaključan.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Najmanji:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Najveći:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Upozorenje:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Neaktivno:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nikada" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Poslednja promena:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Lozinka ističe:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Lozinka neaktivna:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Nalog ističe:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Neuspela izmena zastarelih podataka za %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPCIJA...] [korisnik]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Nije navedeno korisničko ime, nema imena za uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Menjam finger podatke za %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Puno ime" #: apps/lchfn.c:146 msgid "Surname" msgstr "Prezime" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Kršteno ime" #: apps/lchfn.c:167 msgid "Office" msgstr "Kancelarija" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Kancelarijski telefon" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Kućni telefon" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Adresa e-pošte" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger podaci nisu promenjeni: greška u unosu.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger podaci su promenjeni.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger podaci nisu promenjeni: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Menjam ljusku za %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nova ljuska" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Ljuska nije promenjena: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Ljuska je promenjena.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPCIJA...] grupa" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Nije navedeno ime grupe.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Neispravan ID grupe %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Neuspelo pravljenje grupe: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Grupa %s ne postoji.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Grupa %s ne može biti izbrisana: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "I -L i -U su navedeni.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Neuspelo postavljanje lozinke za grupu %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Grupa %s ne može biti zaključana: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Grupa %s ne može biti otključana: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Grupa %s ne može biti izmenjena: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Greška pri potrazi za %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nije navedeno ime grupe, koristim %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Nije navedeno ime grupe, nema imena za gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nije navedeno korisničko ime, koristim %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s ne postoji\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPCIJA...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Greška pri otvaranju „%s“: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Greška pri pravljenju naloga za „%s“: nepravilno oblikovana linija.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Neispravan korisnički ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Odbijam da napravim nalog sa UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Greška pri pravljenju grupe „%s“ sa GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "Odbijam da podrazumevano upotrebim opasan direktorijum „%s“ za %s\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Greška pri pravljenju ličnog direktorijuma za %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Greška pri postavljanju lozinke za %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Greška pri pravljenju korisničkog naloga za %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Menjam lozinku za %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nova lozinka" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nova lozinka (potvrda)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Lozinke se ne slažu, pokušajte ponovo.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Promena lozinke je otkazana.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Greška pri postavljanju lozinke za korisnika %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Greška pri postavljanju lozinke za grupu %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Lozinka je promenjena.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Grupa %jd ne postoji\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Greška pri pravljenju grupe „%s“: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Neuspelo pravljenje naloga: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Greška pri pravljenju %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Korisnik %s ne može da bude obrisan: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s nije imala gid broj.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Ne postoji grupa sa GID %jd, ne uklanjam.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Grupa sa GID %jd nije imala ime grupe.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Grupa %s ne može da bude obrisana: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "greška pri uklanjanju ličnog direktorijuma za korisnika" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Neuspelo postavljanje lozinke za korisnika %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Korisnik %s ne može da bude zaključan: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Korisnik %s ne može da bude otključan: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Upozorenje: Grupa sa ID-om %jd ne postoji\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Korisnik %s ne može da bude izmenjen: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Grupa %s ne može da bude izmenjena: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Nema starog ličnog direktorijuma za %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Nema novog ličnog direktorijuma za %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Greška pri premeštanju %s u %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "ne mogu da otvorim datoteku podešavanja „%s“: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "ne mogu da izvršim stat nad datotekom podešavanja „%s“: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "datoteka podešavanja „%s“ je prevelika" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "ne mogu da pročitam datoteku podešavanja „%s“: %s" #: lib/error.c:62 msgid "success" msgstr "uspeh" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modul isključen u podešavanjima" #: lib/error.c:66 msgid "generic error" msgstr "uopštena greška" #: lib/error.c:68 msgid "not enough privileges" msgstr "nema dovoljno povlastica" #: lib/error.c:70 msgid "access denied" msgstr "pristup odbijen" #: lib/error.c:72 msgid "bad user/group name" msgstr "loše ime korisnika/grupe" #: lib/error.c:74 msgid "bad user/group id" msgstr "loš id korisnika/grupe" #: lib/error.c:76 msgid "user/group name in use" msgstr "ime korisnika/grupe je u upotrebi" #: lib/error.c:78 msgid "user/group id in use" msgstr "id korisnika/grupe je u upotrebi" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "greška pri udešavanju svojstava terminala" #: lib/error.c:82 msgid "error opening file" msgstr "greška pri otvaranju datoteke" #: lib/error.c:84 msgid "error locking file" msgstr "greška pri zaključavanju datoteke" #: lib/error.c:86 msgid "error statting file" msgstr "greška pri izvršavanju stat nad datotekom" #: lib/error.c:88 msgid "error reading file" msgstr "greška pri čitanju datoteke" #: lib/error.c:90 msgid "error writing to file" msgstr "greška pri upisu u datoteku" #: lib/error.c:92 msgid "data not found in file" msgstr "podaci nisu nađeni u datoteci" #: lib/error.c:94 msgid "internal initialization error" msgstr "unutrašnja greška inicijalizacije" #: lib/error.c:96 msgid "error loading module" msgstr "greška pri učitavanju modula" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "greška pri razrešavanju simbola u modulu" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "neslaganje verzije biblioteke/modula" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "otključavanje bi učinilo polje lozinke praznim" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "nepoznata greška" #: lib/misc.c:240 msgid "invalid number" msgstr "neispravan broj" #: lib/misc.c:254 msgid "invalid ID" msgstr "neispravan ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "nema funkcije inicijalizacije %s u „%s“" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "neslaganje verzije modula u „%s“" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modul „%s“ ne definiše „%s“" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "greška pri čitanju svojstava terminala" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "greška pri postavljanju svojstava terminala" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "greška pri čitanju sa terminala" #: lib/user.c:218 msgid "name is not set" msgstr "ime nije postavljeno" #: lib/user.c:223 msgid "name is too short" msgstr "ime je prekratko" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "ime je predugačko (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "ime sadrži ne-ASCII znakove" #: lib/user.c:242 msgid "name contains control characters" msgstr "ime sadrži kontrolne znakove" #: lib/user.c:249 msgid "name contains whitespace" msgstr "ime sadrži razmak" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "ime počinje crticom" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "ime sadrži neispravan znak „%c“" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "korisnik %s nema UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "grupa %s nema GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "korisnik %jd nema ime" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "grupa %jd nema ime" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "korisnik nema ni ime niti UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "grupa nema ni ime niti GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Odbijam da podrazumevano upotrebim opasan direktorijum „%s“" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Neispravna podrazumevana vrednost za polje %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "greška pri zaključavanju datoteke: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "ne mogu da dobavim podrazumevani bezbednosni kontekst: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "ne mogu da dobavim bezbednosni kontekst za „%s“: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "ne mogu da postavim podrazumevani bezbednosni kontekst na „%s“: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "ne mogu da utvrdim bezbednosni kontekst za „%s“: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "ne mogu da otvorim „%s“: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "ne mogu da izvršim stat nad „%s“: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "greška pri pravljenju „%s“: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "rezervna datoteka „%s“ postoji i nije redovna datoteka" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Greška pri promeni vlasnika „%s“: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Greška pri čitanju „%s“: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Greška pri pisanju „%s“: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "neslaganje veličine rezervne datoteke" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s vrednost „%s“: „:“ nije dozvoljena" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "ne mogu da čitam iz „%s“: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "stavka je već prisutna u datoteci" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "ne mogu da upišem u „%s“: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "objekat entiteta nema %s svojstvo" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "stavka sa sukobljenim imenom je već prisutna u datoteci" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "„:“ nije dozvoljena u šifrovanoj lozinci" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "greška pri šifrovanju lozinke" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "ne izvršavam sa administratorskim povlasticama" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "nema prisutne shadow datoteke -- isključujem" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "greška pri povezivanju na kadm5 server za servis „%s“ u području „%s“: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "greška pri inicijalizaciji kerberos biblioteke" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "greška pri tumačenju korisničkog imena „%s“ za kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "struktura entiteta nema %s ili %s svojstva" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entitet nema %s ili %s svojstva" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entitet je napravljen bez %s ili %s svojstava" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "greška pri čitanju podataka za „%s“ iz kerberosa" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entitet nema %s svojstva" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "greška pri postavljanju lozinke za „%s“" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos područje" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos glavni admin" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos lozinka za glavnog admina" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "greška pri inicijalizaciji ldap biblioteke" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "ne mogu da postavim LDAP protokol na verziju %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "nisam mogao da pregovaram TLS sa LDAP serverom" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "ne mogu da se vežem za LDAP server" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "ne mogu da se vežem za LDAP server, prvo pokušajte kao „%s“: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "korisnički objekat nema %s svojstvo" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "korisnički objekat je napravljen bez „%s“" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "greška pri pravljenju stavke LDAP kataloga: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "greška pri izmeni stavke LDAP kataloga: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "greška pri preimenovanju stavke LDAP kataloga: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "objekat nije imao %s svojstvo" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "greška pri uklanjanju stavke LDAP kataloga: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "objekat nema %s svojstvo" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "nepodržana šema šifrovanja lozinke" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "nema takvog objekta u LDAP katalogu" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "nije pronađeno „%s“ svojstvo" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "greška pri postavljanju lozinke u LDAP katalogu za %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Ime LDAP servera" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Osnovni DN LDAP pretrage" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "DN LDAP uvezivanja" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Lozinka LDAP uvezivanja" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL korisnik" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL ovlašćujući korisnik" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL greška pri pravljenju korisnika: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL greška pri uklanjanju korisnika: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "greška pri inicijalizaciji Cyrus SASL-a: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "greška pri pravljenju ličnog direktorijuma za korisnika" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "greška pri uklanjanju ličnog direktorijuma za korisnika" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "greška pri premeštanju ličnog direktorijuma za korisnika" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Greška pri inicijalizaciji %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Neispravan ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Pretražujem za grupom sa ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Pretražujem za grupom sa imenom %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Pretražujem za korisnikom sa ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Pretražujem za korisnikom sa imenom %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Stavka nije pronađena.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Odzivi su uspeli.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Odzivi nisu uspeli.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Podrazumevane klase korisničkih objekata:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Podrazumevana imena korisničkih svojstava:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Dobavljam podrazumevana korisnička svojstva:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Umnožavam korisničku strukturu:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s nije imao lični direktorijum.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Greška pri uklanjanju %s: %s.\n" libuser-0.60~dfsg/po/mk.gmo0000644000175000017500000005726212226342604015640 0ustar tzafrirtzafrir\ 53Qe}*$":"S"v <0m/)')E^w*) (6_v.((.0$_ ! "#!#>$b#. )CT%c%   =L`q    -#$,>k," &<Sn#'!3 Qr"!##<`y   13E$Y~8(**) )T *~ )   1!8!O!j!!!!!!+!. ";"GY"")"&" #!$##F#j####&#(#$$>$)Q${$$0$!$'$&%%'L% t%%3%!% && 5&C&Y&"m&&& & &' 0'Q'"q''''''(%(#C( g(('(((( )-)@)U)"h))$))))+\+&R,@y,(,-,>-#P-ft-D-0 ..Q.A.I.Q /L^/G//+0T?0200FK1Y1\1XI2:2@2=38\3B383H42Z4K4[4a5555C5f6Sx6Y6>&7_e7G7 8P#8t8&8F8F8F=9F9F9F:%Y:=:E:;;34;!h;;Q;);/ <,P<@}<< <<8<5=/P==$=====>&,>SS>K>6>H*??s?A?T?LJ@6@@ @(A-/A@]A*ATA,B0KB<|B,B#B2 C)=C$gC,CC?C6DJ?DJDJDJ E+kE#E"EE$EF"2F"UFjxFLF*0G.[GPG?GuHFHjHfCI_Ig JfrJ0J7 KwBK0K5KG!L-iL9L+L=LM;M>MwM6@NBwNiN<$OFaOYOUP6XP@PLP`Qe~QyQ:^RgR<S:>ShySTSN7TuTPTJMUPUtUX^V>V>V5W"UWxW,WEWD X6OXLX=X5Y8GY@Y/Y%Y)Z+AZ+mZ.ZNZS[Jk[,[P[-4\+b\ \\V\(]$9]2^]@]M]E ^Kf^] "V%.=u{q,>yt&IDhrg5xlae$ J4z3^Ln#<oR\:A7HMkN+ BU@dc~_)|F}pXY'CTP/wj9-WO;f im[GKb1QS(E2 6s0Z! ?v8*`%s did not have a gid number. %s is not authorized to change the finger info of %s Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] useraccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Macedonian (http://www.transifex.com/projects/p/fedora/language/mk/) Language: mk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1; %s нема gid број. %s не е авторизиран за промена на информациите на %s Сметката истекува: %s Креирањето на сметката не успеа: %s. Сметката е заклучена. Сметката не е заклучена. Автентикацијата е неуспешна за %s. И -L и -U се одредени. Не можам да го поставам стандардниот контекст за /etc/passwd Ја менувам информацијата од finger за %s. Ја менувам лозинката за %s. Ја менувам школката за %s. Ја копирам корисничката структура: Cyrus SASL грешка при креирање на корисник: %sCyrus SASL грешка при отстранување на корисник: %sСтандардни кориснички имиња на атрибути: Стандардни кориснички објектни класи: Адреса за е-поштаЗаписот не е пронајден. Грешка при менување на сопственикот на „%s“: %sГрешка при креирање на %s: %s. Грешка при креирање на сметка за „%s“: линијата е форматирана погрешно. Грешка при креирање на групата „%s“: %s Грешка при креирањето на група за „%s“ со GID %jd: %s. Грешка при креирање на домашен директориум за %s: %s Грешка при креирање на корисничка сметка за %s: %s Грешка при иницијализирање %s: %s Грешка при иницијализирање на %s: %s. Грешка при иницијализација на PAM. Грешка при заклучување на %s: %s. Грешка при преместување на %s до %s: %s. Грешка при отворање на „%s“: %s. Грешка при парсирање на аргументите: %s. Грешка при читање на „%s“: %sГрешка при поставување на лозинка за %s: %s Грешка при поставување на лозинка за групата %s: %s. Грешка при поставување на лозинка за корисникот %s: %s. Грешка при запишување „%s“: %sНе успеав да ги симнам привилегиите. Не успеав да ги променам информциите за стареење за %s: %s Не успеав да поставам лозинка за групата %s: %s. Не успеав да поставам лозинка за корисникот %s: %s. Информацијата од finger е променета. Информацијата од finger не е променета: влезна грешка. Информацијата за finger не е променета: %s. Целосно имеГи земам стандардните кориснички атрибути: Дадено имеГрупата %jd не постои. Групата %s не може да биде избришана: %s. Групата %s не може да биде избришана: %s. Групата %s не може да биде заклучена: %s. Групата %s не може да биде променета: %s. Групата %s не може да биде променета: %s. Групата %s не може да биде отклучена: %s. Групата %s не постои. Креирањето на групата не успеа: %s Групата со GID %jd немаше име на групата. Телефон домаНеактивно: %ld Внатрешна грешка во PAM „%s“. Внатрешна грешка. Невалиден ID %s Невалидна стандардна вредност за полето %s: %sНевалидно ID на група %s Невалиден ID на корисник %s Принцип на админ за kerberosЛозинка за принцип на админ за kerberosKerberos просторLDAP Bind DNLDAP Bind лозинкаLDAP SASL авторизација за корисникLDAP SASL корисникБаза за пребарување на LDAP Име на LDAP серверПоследна промена: %s Максимум: %ld Минимум: %ld НикогашНова школкаНова лозинкаНов лозинка (потврда)Нема одредено име за групата. Нема име за gid %d. Нема одредено име за групата, користам %s. Нема одредено име за групата. Не постои група со GID %jd. Не отстранувам. Нема нов домашен директориум за %s. Нема стар домашен директориум за %s. Нема одредено корисничко име. Нема име за uid %d. Нема одредено корисничко име, користам %s. Не е одредено корисничко име. КанцеларијаТелефон на работаЛозинката истекува: %s Лозинката е неактивна: %s Промената на лозинката е откажана. Лозинката е променета. Лозинките не се совпаѓаат, пробајте повторно. Појавувањата не успеаа. Појавувањата беа успешни. Одбивам да креирам сметка со UID 0. Барам група под името %s. Барам група со ID %jd. Барам корисник под името %s. Барам корисник со ID %jd. Школката е сменета. Школката не е сменета: %s ПрезимеАвтентициран е непознат корисник. Непознат кориснички контекстКорисникот %s не може да биде избришан: %s. Корисникот %s не може да биде заклучен: %s. Корисникот %s не може да биде променет: %s. Корисникот %s не може да биде отклучен: %s. Корисникот %s не постои. Погрешен корисник. Предупредување: %ld [ОПЦИЈА...][ОПЦИЈА...] [корисник][ОПЦИЈА...] група[ОПЦИЈА...] корисникпристапот е одбиенрезервната датотека „%s“ постои и не е регуларна датотекапогрешна големина на резервната датотекалош корисник/id на групалош корисник/име на групаКонфигурациската датотека „%s“ е преголемане можам да се врзам за LDAP серверотне можам да се врзам за LDAP серверот, првиот обид беше како „%s“: %sне можам да договорам TLS со LDAP серверотне можам да ја отворам датотеката со конфигурација „%s“: %sне можам да ја отворам конфигурациската датотека„%s“: %sне можам да го поставам LDAP протоколот на верзијата %dне можам да ја отворам конфигурациската датотека „%s“: %sне можам да го добијам безбедносниот контекст на „%s“: %sне можам да отворам „%s“: %sне можам да прочитам од „%s“: %sне можам да го поставам основниот безбедносен контекст на „%s“: %sне можам да одредам „%s“: %sне можам да запишам во „%s“: %sподатоците не се најдени во датотекатаентитетот нема %s атрибутентитетот нема %s или %s атрибутиобјектот нема %s атрибутструктурата нема %s или %s атрибутиентитетот бил креиран без %s или %s атрибутизаписот веќе постои во датотекатагрешка при врзување со kadm5 серверот за сервисот „%s“ во realm „%s“: %sгрешка при креирање на „%s“: %sгрешка при креирање на запис за LDAP: %sгрешка при креирање на домашен директориум за корисникотгрешка при кодирање на лозинкатагрешка при иницијализација на Cyrus SASL: %sгрешка при иницијализирање на kerberos библиотекатагрешка при иницијализирање на ldap библиотекатагрешка при вчитување на модулгрешка при заклучување на датотекагрешка при заклучувањето на датотеката: %sгрешка при манипулирање со атрибутите во терминалотгрешка при менување на записот водиректориумот на LDAP: %sгрешка при преместувањето на домашниот директориум за корисникотгрешка при отворање на датотекагрешка при парсирањето на корисничкото име „%s“ за kerberos.грешка при вчитување на датотекагрешка при читање од терминалотгрешка при читање на информации за „%s“ од страна на kerberosгрешка при читање на атрибутите во терминалотгрешка при отстранување на записот за LDAP: %sгрешка при отстранување на домашниот директориум за корисникотгрешка при реименувањето на записот за LDAP: %sгрешка при пронаоѓање на симбол во модулгрешка при поставување на лозинката за „%s“грешка при поставување на лозинка во директориумот на LDAP за %s: %sгрешка при подесување на атрибути за терминалотгрешка при изјавување на датотекагрешка при запишување во датотекагенеричка грешкагрупата %jd нема имегрупата %s нема GIDгрупата нема ни име ни GIDвнатрешна грешка при иницијализацијабиблиотека/погрешна верзија на модулмодулот „%s“ не дефинира „%s“модулот е оневозможен од конфигурацијатапогрешна верзија на модул во „%s“името содржи контролни знациимето содржи валиден знак „%c“името содржи знаци кои што не се ASCIIимето содржи празни местаимето не е поставеноимето е предолго (%zu > %d)името е премногу краткоимето започнува со тирене пронајдов атрибут„%s“нема функција за иницијализација %s во „%s“нема присутна сенка датотека -- оневозможувамнема таков објект во директориумот на LDAPнема доволно привилегиине извршувам со суперкориснички привилегииобјектот нема %s атрибутиобјектот нема %s атрибутуспехнепозната грешкаотклучувањето ќе го испразни полето со лозинкакорисникот %jd нема имекорисникот %s нема UIDкорисникот нема ни име ни UIDкорисничкиот објект нема %s атрибуткорисничкиот објект беше креиран без „%s“корисник/id на група кое што се користикорисник/име на група која што се користиlibuser-0.60~dfsg/po/ar.gmo0000644000175000017500000005517612226342604015635 0ustar tzafrirtzafrir43L85K*9$d"":Xg y</)>'h.L'c*)(  .<(k(.$  .!8 Ze"#!#$ #1Uo. % 3H\%u   , :H N Xe-|#,4,S" #+O`'t8@!5W u"! #< #`   +  !!%)! O!1]!!!!$!!8"(K"*t"*")"*"0#)P#)z###1# $ $;$R$!m$!$+$.$ %3*%G^%%)%&%&!)&#K&o&&&&&&(&$'C')V'''0'!''(&*('Q( y((3(!()$) :)H)^)"r)) ))))* * A*b* **"***+++=+W+%o+#+ ++'+,3,N, V,-d,&,,,",-$$-I-^-u-3//B/20/F0)v0000$0>1?S13181+2<,2<i2=2A2,&30S313 3_3174Vi4>484 85&Y55$5%5 5/ 6<6+\6G6=6B7Q7+q7P7:7>)8)h8D8,89S9p9)9&9+9* :+8:/d:5:):':Y;v;;!;;);,<21<+d<0<@<=0 =Q=%m==?===>5> R>]>u>1>o>I4?0~?M?(?(&@lO@M@/ A :AGA4]A)A4A'ANBhB|BCBRB]'C7C?C7C?5D%uD(DD#D"D*!E4LE/E?E$E$F;F;MF FFFF;FGG2G8zG4G+G*H,?HUlH.H2H4$I;YIBI5IKJBZJJ*JAJ-&K,TK@K0K8K*,L;WL?L6LQ Mv\M M5M;*N,fN'N6N(N#O?O!]O7O3O?O+PIIP!P5PLP78Q/pQCQ>Q(#R2LRBR3R,R%#S IS)WS3S>S'ST!7T%YTTCT$T4T74U0lU9U4U) V6V#TVxVV.V2V7W6PW$W<W5W%XEXNXO`X7X'X1Y:BYB}Y2YJY?>Z=0lK5sHw!JT6 V4)7\"M g(mP@$ ,eLo8 WhjC-n'i/F#ba|]Q{9[<1Iq%?kSRZ f ^:OvG_ucBDY>xzU;+NAEr.dy~`}*32Xpt&%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Arabic (http://www.transifex.com/projects/p/fedora/language/ar/) Language: ar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5; %sلم يكن له رقم تعريف مجموعة. %s غير موجود. %s ليس مخوّلا بتغيير معلومات finger لـ %s %s القيمة `%s': `:' غير مسموح بهاتنتهي صلاحية الحساب في: %s فشل في إنشاء الحساب: %s. الحساب مقفل. الحساب غير مقفل. فشل توثيق %s. تم تحديد كل من -L و -B لا يمكن ضبط سياق افتراضي لـ /etc/passwd جاري تغيير معلومات finger للمستخدم %s. جاري تغيير كلمة المرور لـ%s. جاري تغيير الصّدفة للمستخدم %s. جاري نسخ بنية المستخدم: خطأ Cyrus SASL أثناء إنشاء المستخدم: %sخطأ Cyrus SASL أثناء إزالة المستخدم: %sأسماء خصائص المستخدم الافتراضية: أصناف كائنات المستخدم الافتراضيّة: عنوان البريد الإلكترونيلم يتم العثور على المُدخل. خطأ في تغيير المالك لـ `%s': %sخطأ في إنشاء %s: %s. خطأ في إنشاء حساب للمستخدم %s، السطر منسّق بشكل خاطئ. خطأ في انشاء المجموعة `%s': %s خطأ في إنشاء مجموعة لـ`%s' برقم تعريف مجموعة %jd: %s خطأ في إنشاء الدّليل الموطن لـ%s. %s خطأ في إنشاء حساب مستخدم لـ%s. %s خطأ في ابتداء %s: %s خطأ في ابتداء ´%s´. %s. خطأ في ابتداء PAM. خطأ في البحث عن %s. %s. خطأ في نقل %s إلى %s: %s. خطأ في فتح ´%s´، %s. خطأ في إعراب المُعطيات: %s. خطأ في قراءة `%s': %sخطأ في قراءة file descriptor %d. خطأ في وضع كلمة السّر الابتدئيّة لـ%s. %s خطأ في وضع كلمة مرور للمجموعة %s. %s خطأ في وضع كلمة المرور للمستخدم %s. %s. خطأ في كتابة `%s': %sفشل في إسقاط الصلاحيات. فشل في تعديل معلومات الفترة الزمنيّة لـ %s: %s فشل وضع كلمة المرور لمجموعة %s: %s فشل وضع كلمة المرور للمستخدم %s؛ %s. تمّ تغيير معلومات finger. لم يتمّ تغيير معلومات finger: خطأ إدخال. معلومات finger لم تتغيّر: %s الاسم الكاملجاري الاستعلام عن خصائص المستخدم الافتراضية: الاسم الشَّـخصيّالمجموعة %jd غير موجودة تعذّر حذف مجموعة %s: %s تعذّر حذف المجموعة %s: %s. تعذّر تأمين مجموعة %s: %s تعذّر تعديل مجموعة %s: %s. تعذّر تعديل المجموعة %s: %s. تعذّر إلغاء تأمين مجموعة %s: %s المجموعة %s غير موجودة. فشل إنشاء المجموعة: %s المجموعة ذات رقمّ التّعريف %jd لم تحمل اسم مجموعة. هاتف المنزلغير فعّال: %ld خطأ داخلي في PAM `%s'. خطأ داخلي. رقم التعريف %s غير صالح قيمة غير صالحة للحقل %s: %sرقم تعريف مجموعة غير صالح %s رقم المستخدم %s غير صالح المدير الرئيسي لكِرْبِروسكلمة مرور كِرْبِروس للمدير الرئيسيمملكة كِرْبِروسالاسم المُميِّز (DN) لـLDAP Bindكلمة مرور LDAP Bindمُستخدِم تخويل LDAP SASLمستخدم LDAP SASLالاسم المُميِّز (DN) الأساسي لبحث LDAPاسم خادم LDAPآخر تغيير: %s الحد الأقصى: %ld الحد الأدنى: %ld أبداًصَدَفة جديدةكلمة مرور جديدةكلمة المرور الجديدة (تأكيد)لم يتم تحديد اسم للمجموعة، لا يوجد اسم لرقم هويّة المجموعة %d. لم يتم تحديد اسم مجموعة، جاري استخدام %s. لم يتم تحديد اسم للمجموعة. لا توجد مجموعة برقم تعريف %jd، لن يتم الحذف. لا دليل موطن جديد لـ%s. لا دليل موطن سابق لـ%s. لم يتم تحديد اسم مستخدم، لا يوجد اسم لرقم هويّة المستخدم %d. لم يتم تحديد اسم المستخدم، جاري استخدام %s. لم يُحَدَّد اسم للمستخدم. المكتبهاتف المكتبتنتهي صلاحية كلمة السر في: %s كلمة السر غير فعالة: %s لَم يتِمّ تغيير كلمة المرور. تم تغيير كلمة المرور. كلمات المرور غير متطابقة، حاول مُجدّداًً. فشل الحثّ. نجح الحثّ. رَفْض إنشاء حساب برقم هويّة مستخدم 0. رَفْض استخدام مجلّد موطن خَطِر '%s' افتراضيّاًرَفْض استخدام مجلّد موطن خَطِر '%s' افتراضيّاً لـ'%s' جاري البحث عن مجموعة بالاسم %s. جاري البحث عن مجموعة برقم تعريف %jd. جاري البحث عن مستخدم بالاسم %s. جاري البحث عن مستخدم برقم تعريف %jd. تم تغيير الصَّدَفة. لم يتم تغيير الـ shell: %s اسم العائلةتصديق مستخدم مجهول سياق مستخدِم مجهولتعذّر حذف المستخدم %s: %s تعذّر قفل حساب المستخدم %s: %s. تعذّر تعديل المستخدم %s: %s. تعذّر إلغاء قفل حساب المستخدم %s: %s. لا وجود للمستخدم %s. عدم تطابق المستخدم. تحذير: %ld المجموعة ذات الرقم %jd غير موجودة [OPTION...][OPTION...] [user][OPTION...] مجموعة[OPTION...] مُستخدِمغير مسموح بـ':' في كلمة مرور مشفرةممنوع الوصولالملف الاحتياطي ´%s' موجود و ليس عاديَاًحجم الملف الاحتياطي غير متطابقرقم هويّة مستخدم/مجموعة سيّئاسم مستخدم/مجموعة سَيّئملف التهيئة '%s' كبير جدالم يُمكن الرّبط بخادم LDAPتعذّر الرّبط بخادم LDAP، المحاولة الأولى كـ `%s': %sتعذّر مفاوضة TLS مع خادم LDAPتعذّر فتح ملف التّهيئة '%s': %sتعذّر قراءة ملف الإعداد '%s': %sتعذّر وضع بروتوكول LDAP للإصدارة %dتعذّر استعلام حالة ملف الإعداد '%s': %ssتعذّر تحديد سياق أمان لـ `%s': %sتعذّر الحصول على سياق الأمان الافتراضي: %sتعذّر الحصول على سياق الأمان لـ `%s': %sتعذّر فتح ´%s': %sتعذّرت القراءة من ´%s': %sتعذّر ضبط سياق أمان افتراضي لـ `%s': %s تعذّر استعلام وَضْع `%s': %sتعذّرت الكتابة إلى ´%s': %sلم يتم العثور على البيانات في الملفالكينونة ليس لها خاصّيّة %sالكينونة ليس لها %s أو خاصّيّة %sالكائن ليس له خاصّيّة %sبناء الكينونة ليس له %s أو خصائص %sتم إنشاء الكينونة بدون %s أو خصائص %sالمُدخل موجود مسبقاً في الملفهناك مُدخل باسم متعارض موجود مسبقاً في الملفخطأ في الاتصال بخادم إدارة كِرْبِروس 5 للخدمة ´%s' في المملكة ´%s': %sخطأ في إنشاء ´%s': %sخطأ في إنشاء مُدخل لدليل LDAP: %sخطأ في انشاء مجلد رئيسي للمستخدمخطأ في تشفير كلمة المرورخطأ في ابتداء Cyrus SASL: %sخطأ في ابتداء مكتبة كِرْبِروسخطأ في ابتداء مكتبة ldapخطأ في تحميل الوحدةخطأ في قفل الملفخطأ في قفل الملف: %sخطأ في تعديل خصائص سطر الأوامرخطأ في تعديل مُدخل دليل LDAP: %sخطأ في نقل المجلد الرئيسي للمستخدمخطأ في فتح الملفخطأ في إعراب اسم المستخدم ´%s' لكِرْبِروسخطأ في قراءة الملفخطأ في القراءة من سطر الأوامرخطأ في قراءة المعلومات لـ ´%s' من كِرْبِروسخطأ في قراءة خصائص سطر الأوامرخطأ في حذف مُدخل دليل LDAP: %sخطأ في ازالة المجلد الرئيسي للمستخدمخطأ في إعادة تسمية مُدخل دليل LDAP: %sخطأ في فك ترميز الوحدةخطأ في وضع كلمة المرور لـ´%s'خطأ في وضع كلمة مرور في دليل LDAP لـ%s: %sخطأ في وضع خصائص سطر الأوامرخطأ في استعلام حالة ملفّخطأ في الكتابة للملفخطأ عامالمجموعة %jd ليس لها اسمالمجموعة %s ليس لها رقم تعريفالمجموعة ليست لها اسم أو رقم تعريفخطأ داخلي في الابتداءهوية غير صالحةقيمة سمة غير صالحةوحدة نمطية غير صالحةرقم غير صالحعدم التوافق في إصدارة المكتبة/الوحدةالوحدة '%s' لا تحدد '%s'الوحدة معطّلة في ملف الإعدادعدم توافق إصدارة الوحدة في ´%s´يحتوي الاسم على أحرف تحكّمالاسم يحتوي على حرف غير صالح ´%c'الاسم يحتوي على حروف ليست ASCIIالاسم يحتوي على مسافاتلم يتم تحديد اسمالاسم طويل جدا (%zu>%d)الاسم قصير جدّاًاسم يبدأ بشَـرطةلم يعثر على الخاصّيّة ´%s´لا توجد وظيفة ابتداء %s في '%s'لا يوجد ملف shadow -- جاري التعطيللا وجود لهذا الكائن في دليل LDAPالصلاحيات غير كافيةلم يتمّ التّنفيذ بصلاحيات المديرلم يحتوي الكائن على خاصّيّة %sليس للكائن خاصّيّة %sنجاحخطأ مجهولألغاء القفل سوف يترك حقل كلمة المرور فارغاًنظام تشفير كلمة مرور غير مدعومالمستخدم %jd ليس له اسمالمستخدم %s ليس له رقم تعريفالمستخدم ليس له اسم أو رقم تعريفلم يحتوي كائن المستخدم على خاصّيّة %sأُنشِء كائن المستخدم دون `%s'رقم هويّة المستخدِم/المجموعة المُستخدَماسم المستخدِم/المجموعة المُستخدَمlibuser-0.60~dfsg/po/de.gmo0000644000175000017500000006705512226342604015622 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<>>A>'%?M?9j??"?&?! @;-@/i@ @@#@2@20AcA)hA)AAA*A3B%IBSoB,B=B<.C<kC4C6C&D';D$cD%D*D$D,D +E*LE3wE4E8E:F$TF,yF@F8F? G `G5G*GGG%H8.HgHoH-H-H+H,I-@I,nII0I,IJ'J9JKJhJzJJJJJ&K.K =KJK ]K~KKKK KK K3L5L:L>L BLML\L3yL-L%L9M);M)eM4M.M&MN N1N6NNNhNN:N&N#N5#OTYO]O P'P*;P)fP,PPPP&PQ/5Q.eQ/Q1QQ R 5R1CR uRRRR8RR> S"KS#nS!S)S S(S'(T8PTWT5T<U:TU=UHU:V;QV;V(V&VBW/\W/WWW(W8!XKZX%X:X!Y0)YZYLuY!Y)Y(Z37Z0kZ&Z?ZM[#Q[8u[=[([-\6C\2z\\\!\, ]97]?q]]:] ^&^<E^'^6^=^7_*W_0_E_,_,&`"S`.v`````"a$a=a0Xaa$a)a'ab$b=bYb.kb/bnb%9c$_c cc cc9c9dUd)ud6d.de(#e!Leneeee"eef)f+Gf1sf8f"f,gW.gggKg;hLh,lh6hFh"iA:i9|i+iijj.6j ej0j-j$j# k.k!Lk%nkkkk!kHk=lUlhlyl/l5ll% m1m3Lm%m)m/m,n0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: German (http://www.transifex.com/projects/p/fedora/language/de/) Language: de MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s hatte keine GID-Nummer. %s existiert nicht %s ist nicht autorisiert, Finger-Einstellungen von %s zu ändern %s-Wert »%s«: »:« ist nicht erlaubtBenutzerkonto läuft ab: %s Die Erzeugung des Benutzerkontos ist fehlgeschlagen: %s. Benutzerkonto ist gesperrt. Benutzerkonto ist nicht gesperrt. Authentifizierung fehlgeschlagen: %s. Sowohl -L als auch -U angegeben. Vorgangskontext für /etc/passwd kann nicht gesetzt werden Finger-Einstellungen für %s werden geändert. Passwort für »%s« geändert. Shell für %s wird geändert. Benutzerstrukturen werden kopiert: Cyrus SASL-Fehler beim Erstellen des Benutzers: %sCyrus SASL-Fehler beim Entfernen des Benutzers: %sTAGEStandardmäßige Benutzerattribut-Namen: Standardmäßige Benutzerobjekt-Klassen: E-Mail-AdresseEintrag wurde nicht gefunden. Fehler beim Ändern des Modus von `%s': %sFehler beim Ändern des Eigentümers von »%s«: %sFehler bei der Erzeugung von %s: %s. Fehler beim Erstellen des Benutzerkontos für `»%s«: Zeile inkorrekt formatiert. Fehler beim Erstellen der Gruppe »%s«: %s Fehler beim Erstellen der Gruppe für »%s« mit GID %jd: %s Fehler beim Erstellen des persönlichen Ordners für %s: %s Fehler beim Erstellen von Mail-Zwischenspeicher für %s: %s Fehler beim Erstellen von Mail-Zwischenspeicher: %s Fehler beim Erstellen des Benutzerkontos für %s: %s. Fehler beim Initialisieren von %s: %s Fehler beim Initialisieren von %s: %s. Fehler beim Initialisieren von PAM. Fehler beim Nachschlagen von %s: %s. Fehler beim Verschieben von %s zu %s: %s. Fehler beim Öffnen von »%s«: %s. Fehler beim Verarbeiten von Argumenten: %s. Fehler beim Lesen von »%s«: %sFehler beim Lesen von Dateideskriptor %d. Fehler beim Entfernen von Mail-Zwischenspeicher: %sFehler beim Setzen des Initialpassworts für %s: %s Fehler beim Erstellen des Passworts für Gruppe %s: %s. Fehler beim Erstellen des Passworts für Benutzer %s: %s. Fehler beim Schreiben von »%s«: %sPrivilegien können nicht abgegeben werden. Ablauf-Einstellungen konnten nicht geändert werden für %s: %s Passwort konnte nicht gesetzt werden für Gruppe %s: %s Passwort konnte für Benutzer %s nicht eingestellt werden: %s. Finger-Informationen geändert. Finger-Informationen nicht geändert: Eingabefehler. Finger-Informationen nicht geändert: %s. Vollständiger NameGECOS-InformationGECOS-Information für neuen BenutzerNach standardmäßigen Benutzerattributen wird gesucht: VornameGruppe %jd existiert nicht Gruppe %s konnte nicht gelöscht werden: %s. Gruppe %s konnte nicht gelöscht werden: %s. Gruppe %s konnte nicht gesperrt werden: %s Gruppe %s konnte nicht geändert werden: %s Gruppe %s konnte nicht geändert werden: %s. Gruppe %s konnte nicht entsperrt werden: %s Gruppe %s existiert nicht. Die Erzeugung der Gruppe ist fehlgeschlagen: %s Gruppe mit GID %jd hat keinen Gruppennamen. Telefon (Zuhause)Nicht aktiv: %ld Inaktiv: Niemals Interner PAM-Fehler »%s«. Interner Fehler. Ungültige Kennung %s Ungültiger Wert in Feld %s: %sUngültige Gruppenkennung %s Ungültige Benutzerkennung %s Kerberos Admin PrincipalKerberos-Passwort für Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind-PasswortLDAP SASL-AutorisierungsbenutzerLDAP SASL-BenutzerLDAP Basissuche-DNLDAP-ServernameLetzte Änderung: %s Maximum: %ld Maximum: Nicht festgelegt Minimum: %ld Passwort muss beim nächsten Login geändert werdenNAMENUMNieNeue ShellNeues PasswortNeues Passwort (Bestätigen)Kein Gruppenname angegeben, kein Name für gid %d. Kein Gruppenname angegeben, %s wird benutzt. Es wurde kein Gruppenname angegeben. Gruppe mit GID %jd existiert nicht, wird nicht entfernt. Kein neuer persönlicher Ordner für %s. Kein alter persönlicher Ordner für %s. Kein Benutzername angegeben, kein Name für uid %d. Kein Benutzername angegeben, %s wird benutzt. Es wurde kein Benutzername angegeben. BüroTelefon (Arbeit)PFADPasswort läuft ab: %s Passwort nicht aktiv: %s Passwortänderung abgebrochen. Passwort geändert. Passwörter stimmen nicht überein. Noch einmal eingeben. Eingabeaufforderungen fehlgeschlagen. Eingabeaufforderungen erfolgreich. Erstellen eines Benutzerkontos mit UID 0 verweigert. Verwendung des unsachgemäßen Benutzerordners »%s« wird standardmäßig abgelehntVerwendung des unsachgemäßen Benutzerordners »%s« für %s wird standardmäßig abgelehnt STRINGNach Gruppe mit Namen %s wird gesucht. Nach Gruppe mit Kennung %jd wird gesucht. Nach Benutzer mit Namen %s wird gesucht. Nach Benutzer mit Kennung %jd wird gesucht. Shell geändert. Shell nicht geändert: %s NachnameUnbekannter Benutzer authentifiziert. Unbekannter BenutzerinhaltBenutzer %s konnte nicht gelöscht werden: %s. Benutzer %s konnte nicht gesperrt werden: %s. Benutzer %s konnte nicht geändert werden: %s. Benutzer %s konnte nicht freigegeben werden: %s. Benutzer %s existiert nicht. Benutzer stimmt nicht überein. Warnung: %ld Warnung: Gruppe mit Kennung %jd existiert nicht. [OPTION...][OPTION...] [Benutzer][OPTION...] Gruppe[OPTION...] Benutzer»:« ist nicht erlaubt in verschlüsselten PasswörternZugriff verweigertSicherungsdatei »%s« ist vorhanden und keine reguläre DateiSicherungsdateigröße passt nichtUngültige Benutzer-/GruppenkennungUngültiger Benutzer-/GruppennameGruppe auf den vorgegebenen Namen ändernÄndere Login-Name des BenutzersGebräuchlicher Name für neuen BenutzerKonfigurationsdatei »%s« ist zu großVerbindung zum LDAP-Server konnte nicht aufgebaut werdenVerbindung zum LDAP-Server konnte nicht aufgebaut werden, erster Versuch als »%s«: %sTLS-Serververbindung konnte nicht ausgehandelt werdenKonfigurationsdatei »%s« konnte nicht geöffnet werden: %sKonfigurationsdatei »%s« konnte nicht gelesen werden: %sLDAP-Protokoll konnte nicht auf Version %d eingestellt werdenstat konnte nicht ausgeführt werden für Konfigurationsdatei »%s«: %sSicherheitskontext »%s« konnte nicht bestimmt werden: %sStandard-Sicherheitskontext konnte nicht gesetzt werden: %sSicherheitskontext »%s« konnte nicht ermittelt werden: %s»%s« konnte nicht geöffnet werden: %s»%s« konnte nicht gelesen werden: %sSicherheitskontext konnte nicht nach »%s« geschrieben werden: %sstat »%s« konnte nicht ausgeführt werden: %sNach »%s« konnte nicht geschrieben werden: %sEine System-Gruppe erstellenErstelle einen System-BenutzerDaten wurden in der Datei nicht gefundenDatum der letzten Passwortänderung in Tagen seit 1/1/70Benachrichtung des Benutzers eine bestimmte Anzahl Tage vor dem AblaufdatumDaten-Verzeichnis für neuen BenutzerErstelle keine Gruppe mit dem gleichen Namen des BenutzersErstelle keine Home-VerzeichnisseErstelle kein Home-Verzeichnis für den BenutzerErstelle keine Mail-SpoolsEntferne die private Gruppe des Benutzers nicht, falls der Benutzer eine hatEntität besitzt kein Attribut %sEntität besitzt kein Attribut %s oder %sEntitätsobjekt besitzt kein %s-AttributEntitätenstruktur besitzt kein Attribut %s oder %sEntität wurde ohne Attribut %s oder %s erstelltEintrag bereits in der Datei vorhandenEintrag mit kollidierendem Namen bereits in der Datei vorhandenFehler bei der Verbindung zum kadm5-Server für Dienst »%s« in Realm %s: %sFehler beim Erzeugen von »%s«: %sFehler beim Erstellen eines LDAP-Verzeichniseintrags: %sFehler beim Erstellen des persönlichen Ordners für BenutzerFehler beim Verschlüsseln des PasswortsFehler beim Initialisieren von Cyrus SASL: %sFehler bei der Initialisierung der Kerberos-BibliothekFehler bei der Initialisierung der LDAP-BibliothekFehler beim Laden des ModulsFehler beim Sperren der DateiFehler beim Sperren der Datei: %sFehler beim Bearbeiten der TerminalattributeFehler bei der Änderung des LDAP-Verzeichniseintrags: %sFehler beim Verschieben des persönlichen Ordners für BenutzerFehler beim Öffnen der DateiFehler beim Parsen des Benutzernamens »%s« für KerberosFehler beim Lesen der DateiFehler beim Lesen vom TerminalFehler beim Lesen der Informationen für »%s« von KerberosFehler beim Lesen der TerminalattributeFehler beim Entfernen des LDAP-Verzeichniseintrags: %sFehler beim Entfernen des persönlichen Ordners für BenutzerFehler beim Umbenennen des LDAP-Verzeichniseintrags: %sFehler beim Auflösen des Symbols im ModulFehler beim Einstellen des Passworts für »%s«Fehler beim Einrichten des Passworts im LDAP-Verzeichnis für %s: %s.Fehler beim Einstellen der TerminalattributeFehler beim Ermitteln der DateiinformationenFehler beim Schreiben in die DateiDatei mit Einträgen der BenutzerinformationenAllgemeiner Fehlergid für neue GruppeVorname des neuen BenutzersGruppe %jd ist namenlosGruppe %s hat keine GruppenkennungGruppe %s nicht gefundenGruppe für neuen BenutzerGruppe ist namenlos und hat keine GruppenkennungHome-VerzeichnisHome-Verzeichnis für neuen BenutzerPrivate Telefonnummer für neuen BenutzerInterner Fehler bei der InitialisierungUngültige KennungUngültiger AttributwertUngültige ModulkombinationUngültige NummerBibliothek-/Modulversion stimmt nicht übereinAlterungs-Parameter für den Benutzer auflistenAuflistung von Mitgliedern einer benannten Gruppe anstelle der Gruppen-Mitgliedschaften des benannten BenutzerHinzuzufügende Administratoren-ListeZu entfernende Administratoren-ListeHinzuzufügende Mitglieder-ListeZu entfernende MitgliederlisteKonto sperrenGruppe sperrenMaximale Zeitspanne in Tagen zwischen PasswortänderungenMinimale Zeitspanne in Tagen zwischen PasswortänderungenModul %s definiert »%s« nichtModul durch die Konfiguration deaktiviertFehlende Übereinstimmung von Modulversionen in »%s«Verschiebe die Inhalte des Home-VerzeichnissesName enthält KontrollzeichenName enthält ungültiges Zeichen »%c«Name enthält Nicht-ASCII-ZeichenName enthält LeerzeichenName ist nicht definiertName ist zu lang (%zu > %d)Name ist zu kurzName beginnt mit einem BindestrichNeues verschlüsseltes PasswortNeues Klartext-PasswortKein »%s«-Attribut gefundenKeine Initialisierungsfunktion %s in »%s«Keine Shadow-Datei vorhanden -- wird deaktiviert.Kein entsprechendes Objekt im LDAP-Verzeichnis vorhandenKeine ausreichenden BerechtigungenKeine Ausführung mit Administrator-Rechten.Anzahl Tage nach Ablaufdatum des Passworts, an dem das Konto als inaktiv angesehen wirdObjekt hatte kein Attribut %sObjekt besitzt kein Attribut %sAuflistung der Mitgliedschafts-Information nach Name und nicht nach UID/GIDZeitraum seit dem Passwort-Ablaufdatum in Tagen seit 1/1/70Klartext-Passwort des BenutzersKlartext-Passwort für die Gruppen-BenutzungVor-verschlüsseltes Passwort (pre-hash) des BenutzersVor-verschlüsseltes Passwort (pre-hash) für die Benutzung der GruppeBei allen Informationen nachfragenLese neues verschlüsseltes Passwort aus dem gegebenen DeskriptorLese neues Klartext-Passwort aus dem gegebenen DeskriptorEntferne das Home-Verzeichnis des BenutzersRaum-Name für neuen BenutzerGID für Gruppe festlegenUID für Benutzer festlegenGebräuchlicher Name für den Benutzer wählenVornamen des Benutzers festlegenSetze Gruppen-Passwort anstelle BenutzerpasswortPrivate Telefonnummer des Benutzers festlegenPrimäre GID für Benutzer festlegenRaum-Nummer des Benutzers festlegenShell für Benutzer festlegenNachname des Benutzers festlegen Telefonnummer des Benutzers festlegenShell für neuen BenutzerErfolgNachname des neuen BenutzersTelefonnummer für neuen BenutzerDie Module »%s« und »%s« können nicht miteinander kombiniert werdenUID für neuen BenutzerUnbekannter FehlerKonto entsperrenGruppe entsperrenEntsperrung würde das Passwortfeld leer machenNicht unterstütztes Passwort-VerschlüsselungsschemaBenutzer %jd ist namenlosBenutzer %s hat keine BenutzerkennungBenutzer %s nicht gefundenBenutzer ist namenlos und hat keine BenutzerkennungBenutzerobjekt hatte kein Attribut %sBenutzerobjekt wurde ohne »%s« erstelltBenutzer-/Gruppenkennung wird bereits verwendetBenutzer-/Gruppenname wird bereits verwendetlibuser-0.60~dfsg/po/quot.sed0000644000175000017500000000023112226342570016174 0ustar tzafrirtzafrirs/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g libuser-0.60~dfsg/po/da.po0000644000175000017500000011323212226342567015447 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Keld Simonsen , 2001, 2005 # Keld Simonsen , 2005, 2006, 2007 # Kris Thomsen , 2009-2013 # Martin Willemoes Hansen , 2004 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Danish (http://www.transifex.com/projects/p/fedora/language/" "da/)\n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Kunne ikke fjerne rettigheder.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Intern fejl.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s er ikke godkendt til at ændre finger-info for %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Ukendte brugeromgivelser" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Kan ikke sætte standardomgivelser for /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Fejl ved initiering af PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Godkendelse mislykkedes for %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Intern PAM-fejl \"%s\".\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Ukendt bruger godkendt.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Manglende bruger-overensstemmelse.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "bed om alle informationer" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "oplist brugerens forældelses-parametre" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "minimum antal dage mellem adgangskode-ændringer" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "DAGE" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "maksimum antal dage mellem skift af adgangskode" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "dato siden sidste adgangskode-ændring i dage siden 1/1/70" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "antal af dage efter adgangskode-udløbsdato'en, før konto'en anses som inaktiv" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "adgangskode-udløbsdato i dage siden 1/1/70" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "dage før udløb begynder at advare bruger" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[TILVALG...] bruger" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Fejl ved tolkning af argumenter: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Brugernavn ikke specificeret.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Fejl ved initialisering af %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Bruger %s eksisterer ikke.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Konto er låst.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Konto er ikke låst.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maksimum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Maksimum:\tIngen\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Advarsel:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inaktiv:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Inaktiv:\tAldrig\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Adgangskode skal ændres ved næste indlogning" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Aldrig" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Sidste ændring:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Adgangskode udløber:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Adgangskode inaktiv:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Konto udløber:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Fejl ved ændring af aldringsinformation for %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[TILVALG...] [bruger]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Intet brugernavn specificeret, intet navn for uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Skifter fingerinformation for %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Fulde navn" #: apps/lchfn.c:146 msgid "Surname" msgstr "Efternavn" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Givet navn" #: apps/lchfn.c:167 msgid "Office" msgstr "Kontor" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Kontortelefon" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Hjemmetelefon" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-postadresse" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger-information ikke ændret: fejl i inddata.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger-information ændret.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger-information ikke ændret: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Ændrer skal for %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Ny skal" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Skal ikke ændret: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Skal ændret.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid for ny gruppe" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "NUMMER" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "opret en systemgruppe" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[TILVALG...] gruppe" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Intet gruppenavn specificeret.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Ugyldig gruppe-ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Oprettelse af gruppe mislykkedes: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Gruppe %s eksisterer ikke.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Gruppe %s kunne ikke slettes: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "indstil GID for gruppe" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "ændr gruppe til at have givet navn" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NAVN" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "klartekst-adgangskode til brug med gruppe" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "STRENG" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "præ-hashet adgangskode til brug med gruppe" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "liste over administratorer som skal tilføjes" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "liste over administratorer som skal fjernes" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "liste over gruppe-medlemmer som skal tilføjes" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "liste over gruppe-medlemmer som skal fjernes" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "lås gruppe" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "lås gruppe op" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Både -L og -U specificeret.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Fejl ved indstilling af adgangskode for gruppe %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Gruppe %s kunne ikke låses: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Gruppe %s kunne ikke låses op: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Gruppe %s kunne ikke ændres: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Fejl ved opslag af %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "medlemmer af en navngivet gruppe istedet for den navngivne brugers gruppe-" "medlemsskaber" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "oplist kun medlemsskab-information efter navn, og ikke UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Intet gruppenavn specificeret, bruger %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Intet gruppenavn specificeret, intet navn for gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Brugernavn ikke specificeret, bruger %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s eksisterer ikke\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "fil med optegnelser over bruger-information" #: apps/lnewusers.c:47 msgid "PATH" msgstr "STI" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "opret ikke hjemme-mapper" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "opret ikke mail-køer" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[TILVALG...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Fejl ved åbning af \"%s\": %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Fejl under opretelse af konto for \"%s\": linjen er formatteret forkert.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Ugyldig bruger-ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Nægter at oprette konto med UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Fejl ved oprettelse af gruppe for \"%s\" med GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "Nægter at bruge farlig hjemmemappe \"%s\" til %s som standard\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Fejl ved oprettelse af hjemmekatalog for %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Fejl under oprettelse af mailspool for %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Fejl ved indstilling af første adgangskode for %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Fejl ved oprettelse af brugerkonto for %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "indstil gruppe-adgangskode istedet for bruger-adgangskode" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "ny almindelig adgangskode" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "nyt krypteret adgangskode" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "læs ny almindelig adgangskode fra given beskriver" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "læs ny krypteret adgangskode fra given beskriver" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Ændrer adgangskode for %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Ny adgangskode" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Ny adgangskode (bekræft)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Adgangskoder er ikke ens, prøv igen.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Ændring af adgangskode annulleret.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Fejl under læsning fra fil-deskriptor %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Fejl ved indstilling af adgangskode for bruger %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Fejl ved indstilling af adgangskode for gruppe %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Adgangskode ændret.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "opret en systembruger" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "ny brugers GECOS-information" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "hjemme-mappe til ny bruger" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "mappe med filer til den nye bruger" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "shell til ny bruger" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "uid til ny bruger" #: apps/luseradd.c:69 msgid "group for new user" msgstr "gruppe til ny bruger" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "opret ikke en hjemme-mappe til brugeren" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "opret ikke en gruppe med samme navn som brugeren" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "ny brugers almindelige navn" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "ny brugers fornavn" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "ny brugers efternavn" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "ny brugers værelsesnummer" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "ny brugers telefonnummer" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "ny brugers hjemme-telefonnummer" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Gruppe %jd eksisterer ikke\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Fejl ved oprettelse af gruppe \"%s\": %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Fejl ved oprettelse af konto: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Fejl ved oprettelse af %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Fejl under oprettelse af mailspool: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "fjern ikke brugerens private gruppe, hvis brugeren har en" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "fjern brugerens hjemme-mappe" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Bruger %s kunne ikke slettes: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s havde ikke gid-nummer.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Ingen gruppe med GID %jd eksisterer, fjerner ikke.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Gruppe med GID %jd havde ikke et gruppenavn.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Gruppe %s kunne ikke slettes: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "fejl ved fjernelse af hjemmemappe for bruger" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Fejl under fjernelse af mailspool: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS-information" #: apps/lusermod.c:60 msgid "home directory" msgstr "hjemme-mappe" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "flyt hjemme-mappe-indhold" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "indstil shell for bruger" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "indstil UID for bruger" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "indstil primær GID for bruger" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "skift logind-navn for bruger" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "brugerens klartekst-adgangskode" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "brugerens præ-hashede adgangskode" #: apps/lusermod.c:75 msgid "lock account" msgstr "lås konto" #: apps/lusermod.c:78 msgid "unlock account" msgstr "lås konto op" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "indstil brugerens almindelige navn" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "indstil brugerens fornavn" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "indstil brugerens efternavn" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "indstil brugerens værelsesnummer" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "indstil brugerens telefonnummer" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "indstil brugerens hjemme-telefonnummer" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Fejl ved indstilling af adgangskode for bruger %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Bruger %s kunne ikke låses: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Bruger %s kunne ikke låses op: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Advarsel: Gruppe med ID %jd eksisterer ikke.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Bruger %s kunne ikke ændres: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Gruppe %s kunne ikke ændres: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Ingen gammel hjemmemappe for %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Ingen ny hjemmemappe for %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Fejl ved flytning af %s til %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "kunne ikke åbne konfigurationsfil \"%s\": %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "kunne ikke få stat()-oplysninger på konfigurationsfil \"%s\": %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "konfigurationsfil \"%s\" er for stor" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "kunne ikke læse konfigurationsfil \"%s\": %s" #: lib/error.c:62 msgid "success" msgstr "problemfrit" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modul deaktiveret i konfigurationen" #: lib/error.c:66 msgid "generic error" msgstr "generisk fejl" #: lib/error.c:68 msgid "not enough privileges" msgstr "ikke tilstrækkelige privilegier" #: lib/error.c:70 msgid "access denied" msgstr "adgang nægtet" #: lib/error.c:72 msgid "bad user/group name" msgstr "forkert bruger- eller gruppenavn" #: lib/error.c:74 msgid "bad user/group id" msgstr "forkert bruger- eller gruppe-id" #: lib/error.c:76 msgid "user/group name in use" msgstr "bruger- eller gruppenavn i brug" #: lib/error.c:78 msgid "user/group id in use" msgstr "bruger- eller gruppe-id i brug" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "fejl ved behandling af terminalegenskaber" #: lib/error.c:82 msgid "error opening file" msgstr "fejl ved åbning af fil" #: lib/error.c:84 msgid "error locking file" msgstr "fejl ved låsning af fil" #: lib/error.c:86 msgid "error statting file" msgstr "fejl ved oplysning på fil" #: lib/error.c:88 msgid "error reading file" msgstr "fejl ved læsning af fil" #: lib/error.c:90 msgid "error writing to file" msgstr "fejl ved skrivning af fil" #: lib/error.c:92 msgid "data not found in file" msgstr "data ikke fundet i fil" #: lib/error.c:94 msgid "internal initialization error" msgstr "intern fejl ved initialisering" #: lib/error.c:96 msgid "error loading module" msgstr "fejl ved indlæsning af modul" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "fejl ved løsning af symbol i modul" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "uoverensstemmelse med version i bibliotek eller modul" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "oplåsning ville gøre adgangskodefeltet tomt" #: lib/error.c:105 msgid "invalid attribute value" msgstr "ugyldig attributværdi" #: lib/error.c:107 msgid "invalid module combination" msgstr "ugyldig modulkombination" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "hjemme-mappe til ny bruger" #: lib/error.c:115 msgid "unknown error" msgstr "ukendt fejl" #: lib/misc.c:240 msgid "invalid number" msgstr "ugyldigt nummer" #: lib/misc.c:254 msgid "invalid ID" msgstr "ugyldig ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "ingen initialiseringsfunktion %s i \"%s\"" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "uoverensstemmelse med modulversion i \"%s\"" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modul \"%s\" definerer ikke \"%s\"" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "fejl ved læsning af terminal-egenskaber" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "fejl ved indstilling af terminal-egenskaber" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "fejl ved læsning fra terminal" #: lib/user.c:218 msgid "name is not set" msgstr "navn er ikke sat" #: lib/user.c:223 msgid "name is too short" msgstr "navn er for kort" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "navn er for langt (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "navn indeholder tegn udenfor ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "navn indeholder kontroltegn" #: lib/user.c:249 msgid "name contains whitespace" msgstr "navn indeholder blanktegn" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "navn starter med en bindestreg" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "navn indeholder ugyldigt tegn \"%c\"" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "bruger %s har ingen UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "bruger %s ikke fundet" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "gruppe %s har ingen GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "gruppe %s ikke fundet" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "bruger %jd har ikke noget navn" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "gruppe %jd har ikke noget navn" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "bruger har hverken et navn eller en UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "gruppe har hverken et navn eller en GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Nægter at bruge farlig hjemmemappe \"%s\" som standard" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Ugyldig standardværdi af felt %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "fejl ved låsning af fil: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "kunne ikke få fat på standard sikkerhedsomgivelser: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "kunne ikke få fat på sikkerhedsomgivelser til \"%s\": %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "kunne ikke sætte standard sikkerhedsomgivelser til \"%s\": %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "kunne ikke bestemme sikkerhedsomgivelser til \"%s\": %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "kunne ikke åbne \"%s\": %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "kunne ikke køre stat på \"%s\": %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "fejl ved oprettelse af \"%s\": %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "sikkerhedskopifilen \"%s\" eksisterer og er ikke en almindelig fil" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Fejl ved ændring af ejer for \"%s\": %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Fejl under tilstandsskift for \"%s\": %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Fejl ved læsning af \"%s\": %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Fejl ved skrivning \"%s\": %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "uoverensstemmelse med filstørrelse for sikkerhedskopiering" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s værdi \"%s\": \":\" ikke tilladt" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "kunne ikke læse fra \"%s\": %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "opføringen findes allerede i filen" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "kunne ikke skrive til \"%s\": %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "entitetsobjekt har ingen %s-attribut" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "element med konfliktende navn findes allerede i filen" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "\":\" ikke tilladt i krypteret adgangskode" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "fejl ved kryptering af adgangskode" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "modulerne \"%s\" og \"%s\" kan ikke kombineres" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "kører ikke med superbruger-privilegier" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "der findes ingen skyggefil -- deaktiverer" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "kunne ikke forbinde til kadm5-serveren for tjeneste \"%s\" i område \"%s\": " "%s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "fejl ved initialisering af kerberos-biblioteket" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "fejl ved læsning af brugernavn \"%s\" for kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "entitetsstruktur har ingen %s eller %s-attributter" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entitet har ingen %s eller %s-attributter" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entiteten blev oprettet uden %s- eller %s-attributter" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "fejl ved læsning af information for \"%s\" fra kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entiteten har ingen %s-attribut" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "fejl ved indstilling af adgangskode for \"%s\"" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos-område" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos-adgangskode for Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "fejl ved initialisering af ldap-bibliotek" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "kunne ikke sætte LDAP-protokol til version %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "kunne ikke omsætte TLS med LDAP-server" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "kunne ikke binde til LDAP-server" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "kunne ikke binde til LDAP-server, første forsøg som \"%s\": %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "bruger-objektet havde ingen %s-attribut" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "brugerobjektet blev oprettet uden \"%s\"" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "fejl ved oprettelse af LDAP-mappeindgang: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "fejl ved ændring af LDAP-mappeopføring: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "fejl ved ændring af navn på LDAP-mappeindgang %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "objektet havde ingen %s-attribut" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "fejl ved fjernelse af LDAP-mappeopføring: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "objektet har ikke attribut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "ikke understøttet krypteringsskema for adgangskode" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "ingen sådanne objekter i LDAP-mappen" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "ingen \"%s\"-attribut fundet" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "fejl ved indstilling af adgangskode i LDAP-mappen for %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Navn på LDAP-server" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP søgebase DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind-adgangskode" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL-bruger" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL-godkendelsesbruger" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus-SASL fejl ved oprettelse af bruger: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus-SASL fejl ved fjernelse af bruger: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "fejl ved initialisering af Cyrus-SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "fejl ved oprettelse af hjemmemappe for bruger" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "fejl ved fjernelse af hjemmemappe for bruger" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "fejl ved flytning af hjemmemappe for bruger" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Fejl ved initialisering af %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Ugyldig ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Søger efter gruppe med ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Søger efter gruppe med navn %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Søger efter bruger med ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Søger efter bruger ved navn %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Opføring ikke fundet.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Forespørgsler lykkedes.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Forespørgsler mislykkedes.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Standardklasser for brugerobjekter:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Standardnavn for brugerattributter:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Henter standard brugerattributter:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kopierer brugerstruktur:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s havde intet hjemmemappe.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Fejl ved fjernelse af %s: %s.\n" libuser-0.60~dfsg/po/eu.po0000644000175000017500000006732112226342567015503 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Asier Iturralde Sarasola , 2012 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Basque (http://www.transifex.com/projects/p/fedora/language/" "eu/)\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Barne-errorea.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Kontua blokeatuta dago.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Abisua:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Inoiz ez" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Izen osoa" #: apps/lchfn.c:146 msgid "Surname" msgstr "Abizena" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Izena" #: apps/lchfn.c:167 msgid "Office" msgstr "Bulegoa" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Bulegoko telefonoa" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Etxeko telefonoa" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-posta helbidea" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Shell berria" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[AUKERA...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "" #: apps/lpasswd.c:111 msgid "New password" msgstr "Pasahitz berria" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Pasahitz berria (berretsi)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Pasahitzak ez datoz bat, saiatu berriro.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Pasahitza aldatuta.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd taldea ez da existitzen.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:139 #, c-format msgid "Error removing home directory: %s.\n" msgstr "" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "" #: lib/error.c:62 msgid "success" msgstr "" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "" #: lib/error.c:66 msgid "generic error" msgstr "" #: lib/error.c:68 msgid "not enough privileges" msgstr "" #: lib/error.c:70 msgid "access denied" msgstr "" #: lib/error.c:72 msgid "bad user/group name" msgstr "" #: lib/error.c:74 msgid "bad user/group id" msgstr "" #: lib/error.c:76 msgid "user/group name in use" msgstr "" #: lib/error.c:78 msgid "user/group id in use" msgstr "" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "" #: lib/error.c:82 msgid "error opening file" msgstr "" #: lib/error.c:84 msgid "error locking file" msgstr "" #: lib/error.c:86 msgid "error statting file" msgstr "" #: lib/error.c:88 msgid "error reading file" msgstr "errorea fitxategia irakurtzean" #: lib/error.c:90 msgid "error writing to file" msgstr "errorea fitxategian idaztean" #: lib/error.c:92 msgid "data not found in file" msgstr "" #: lib/error.c:94 msgid "internal initialization error" msgstr "" #: lib/error.c:96 msgid "error loading module" msgstr "" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "errore ezezaguna" #: lib/misc.c:240 msgid "invalid number" msgstr "zenbaki baliogabea" #: lib/misc.c:254 msgid "invalid ID" msgstr "ID baliogabea" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "" #: lib/user.c:218 msgid "name is not set" msgstr "" #: lib/user.c:223 msgid "name is too short" msgstr "izena laburregia da" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "" #: lib/user.c:242 msgid "name contains control characters" msgstr "" #: lib/user.c:249 msgid "name contains whitespace" msgstr "" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "" #: modules/files.c:797 msgid "entry already present in file" msgstr "" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "" libuser-0.60~dfsg/po/uk.po0000644000175000017500000013433412226342570015502 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Maxim Dziumanenko , 2003 # Miloslav Trmač , 2011 # Yuri Chornoivan , 2011-2013 # Yuri Chornoivan , 2013 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora/" "language/uk/)\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Не вдалося позбутися привілеїв.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Внутрішня помилка.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s не авторизований для зміни інформації finger про %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Невідомий контекст користувача" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Не вдається встановити типовий контекст /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Помилка ініціалізації PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Помилка аутентифікації для %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Внутрішня помилка PAM «%s».\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Автентифікація невідомого користувача.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Користувач не збігається.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "надсилати запит щодо всіх даних" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "список параметрів, які застарівають, для користувача" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "мінімальна кількість днів між змінами паролів" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "ДНІ" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "максимальна кількість днів між змінами паролів" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "дата останньої зміни пароля у днях з 1.01.1970" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "кількість днів з дати завершення строку дії пароля, які мають пройти для " "того, щоб обліковий запис вважався неактивним" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "дата завершення строку дії пароля у днях з 1.01.1970" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" "кількість днів між завершенням строку дії і показом першого попередження " "щодо нього" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ПАРАМЕТР...] користувач" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Помилка аналізу аргументів: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Не вказано ім'я користувача.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Помилка ініціалізації %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Користувач %s не існує.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Обліковий запис заблоковано.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Обліковий запис не заблоковано.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Мінімум:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Максимум:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Максимум:\tнемає\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Попередження:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Неактивний:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Неактивний:\tніколи\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Під час наступного входу до системи слід змінити пароль" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Ніколи" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Остання зміна:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Термін дії паролю закінчується:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Пароль неактивний:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Обліковий запис дійсний до:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Помилка зміни інформації про термін для %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ПАРАМЕТР...] [користувач]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Не вказано ім'я користувача, немає імені для uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Зміна інформації finger про %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Повне ім'я" #: apps/lchfn.c:146 msgid "Surname" msgstr "По-батькові" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Ім'я" #: apps/lchfn.c:167 msgid "Office" msgstr "Офіс" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Службовий телефон" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Домашній телефон" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Адреса ел. пошти" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Інформацію finger не змінено: помилка вводу.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Інформацію finger змінено.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Інформацію finger не змінено: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Зміна оболонки для %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Нова оболонка" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Оболонку змінено: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Оболонку змінено.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid нової групи" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "ЧИСЛО" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "створити загальносистемну групу" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ПАРАМЕТР...] група" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Не вказано назву групи.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Неправильний ID групи %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Помилка створення групи: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Група %s не існує.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Групу %s не можна вилучати: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "встановити GID для групи" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "змінити групу так, щоб вона мала вказану назву" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "НАЗВА" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "пароль для групи у форматі звичайного тексту" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "РЯДОК" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "попередньо хешований пароль для групи" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "список адміністраторів, яких слід додати" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "список адміністраторів, яких слід вилучити" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "список учасників групи, яких слід додати" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "список учасників групи, яких слід вилучити" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "заблокувати групу" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "розблокувати групу" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L та -U вказані одночасно.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Помилка встановлення пароля для групи %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Групу %s не вдається заблокувати: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Групу %s не вдається розблокувати: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Групу %s не вдається змінити: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Помилка блокування %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "показати список учасників вказаної групи замість списку участі вказаного " "користувача" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "показувати у списку участі лише дані щодо назв, без UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Не вказана назва групи, використовується %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Не вказана назва групи, немає назви для gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Не вказано ім'я користувача, використовується %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s не існує.\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "файл з записами щодо даних користувачів" #: apps/lnewusers.c:47 msgid "PATH" msgstr "ШЛЯХ" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "не створювати домашніх каталогів" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "не створювати буферів зберігання пошти" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ПАРАМЕТР...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Помилка відкривання «%s»: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Помилка створення облікового запису для «%s»: неправильний формат рядка.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Неправильний ідентифікатор користувача %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Відмова у створенні облікового запису з UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Помилка створення групи для «%s» з GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Відмова від використання небезпечного типового домашнього каталогу «%s» для " "%s\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Помилка створення домашнього каталогу для %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Помилка під час спроби створення буфера пошти для %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Помилка встановлення початкового паролю для %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Помилка створення облікового запису для %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "встановити пароль групи замість пароля користувача" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "новий пароль у форматі звичайного тексту" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "новий зашифрований пароль" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" "прочитати новий пароль у форматі звичайного тексту з вказаного дескриптора" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "прочитати новий зашифрований пароль з вказаного дескриптора" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Зміна паролю користувача %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Новий пароль" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Новий пароль (підтвердження)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Паролі не збігаються, спробуйте ще раз.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Зміну паролю скасовано.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Помилка читання з дескриптора файла %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Помилка встановлення паролю користувача %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Помилка встановлення паролю для групи %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Пароль змінено.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "створити загальносистемного користувача" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "дані GECOS для нового користувача" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "домашній каталог нового користувача" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "каталог з файлами для нового користувача" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "командна оболонка для нового користувача" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "uid нового користувача" #: apps/luseradd.c:69 msgid "group for new user" msgstr "група нового користувача" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "не створювати домашнього каталогу користувача" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "не створювати групи з назвою, що збігається з іменем користувача" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "загальне ім’я нового користувача" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "паспортне ім’я нового користувача" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "прізвище нового користувача" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "номер кімнати нового користувача" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "номер робочого телефону нового користувача" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "номер домашнього телефону нового користувача" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Група %jd не існує.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Помилка створення групи «%s»: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Помилка створення облікового запису: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Помилка створення %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Помилка під час спроби створення буфера пошти: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "не вилучати окремої групи користувача, якщо таку було створено" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "вилучити домашній каталог користувача" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Не вдалося вилучити запис користувача %s: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s не має числа gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Група з GID %jd не існує, її не буде вилучено.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Група з GID %jd не мала назви.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Групу %s вилучити не вдається: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "помилка вилучення домашнього каталогу користувача" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Помилка під час спроби вилучення буфера пошти: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "дані GECOS" #: apps/lusermod.c:60 msgid "home directory" msgstr "домашній каталог" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "пересунути дані домашнього каталогу" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "встановити командну оболонку користувача" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "встановити UID користувача" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "встановити основний GID користувача" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "змінити назву облікового запису користувача" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "пароль користувача у форматі звичайного тексту" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "попередньо хешований пароль користувача" #: apps/lusermod.c:75 msgid "lock account" msgstr "заблокувати обліковий запис" #: apps/lusermod.c:78 msgid "unlock account" msgstr "розблокувати обліковий запис" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "встановити загальне ім’я користувача" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "встановити паспортне ім’я користувача" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "встановити прізвище користувача" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "встановити номер кімнати користувача" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "встановити номер робочого телефону користувача" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "встановити номер домашнього телефону користувача" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Помилка встановлення пароля користувача %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Користувача %s не вдається заблокувати: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Користувача %s не вдається розблокувати: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Попередження: Група з номером %jd не існує.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Користувача %s не вдається змінити: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Групу %s не вдається змінити: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Немає попереднього домашнього каталогу для %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Немає нового домашнього каталогу для %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Помилка переміщення %s у %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "не вдається відкрити файл налаштувань «%s»: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "не вдається отримати інформацію про файл налаштувань «%s»: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "файл налаштувань «%s» надто довгий" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "не вдається прочитати файл налаштувань «%s»: %s" #: lib/error.c:62 msgid "success" msgstr "виконано" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "модуль вимкнено у налаштуваннях" #: lib/error.c:66 msgid "generic error" msgstr "загальна помилка" #: lib/error.c:68 msgid "not enough privileges" msgstr "недостатньо привілей" #: lib/error.c:70 msgid "access denied" msgstr "доступ заборонений" #: lib/error.c:72 msgid "bad user/group name" msgstr "неправильне ім'я користувача/групи" #: lib/error.c:74 msgid "bad user/group id" msgstr "неправильний ID користувача/групи" #: lib/error.c:76 msgid "user/group name in use" msgstr "ім'я користувача/група вже використовується" #: lib/error.c:78 msgid "user/group id in use" msgstr "ID користувача/група вже використовується" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "помилка зміни атрибутів" #: lib/error.c:82 msgid "error opening file" msgstr "помилка відкривання файлу" #: lib/error.c:84 msgid "error locking file" msgstr "помилка блокування файлу" #: lib/error.c:86 msgid "error statting file" msgstr "помилка отримання параметрів файлу" #: lib/error.c:88 msgid "error reading file" msgstr "помилка читання файлу" #: lib/error.c:90 msgid "error writing to file" msgstr "помилка запису у файл" #: lib/error.c:92 msgid "data not found in file" msgstr "дані не знайдено у файлі" #: lib/error.c:94 msgid "internal initialization error" msgstr "внутрішня помилка ініціалізації" #: lib/error.c:96 msgid "error loading module" msgstr "помилка завантаження модуля" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "помилка визначення символу у модулі" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "невідповідність версії модуля та бібліотеки" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "при розблокуванні поле пароля буде очищене" #: lib/error.c:105 msgid "invalid attribute value" msgstr "некоректне значення атрибута" #: lib/error.c:107 msgid "invalid module combination" msgstr "некоректне поєднання модулів" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "домашній каталог нового користувача" #: lib/error.c:115 msgid "unknown error" msgstr "невідома помилка" #: lib/misc.c:240 msgid "invalid number" msgstr "неправильний номер" #: lib/misc.c:254 msgid "invalid ID" msgstr "неправильний ідентифікатор" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "немає функції ініціалізації %s у «%s»" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "невідповідність версії модуля «%s»" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "в модулі «%s» не визначено «%s»" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "помилка зчитування атрибутів термінала" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "помилка встановлення атрибутів термінала" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "помилка читання з термінала" #: lib/user.c:218 msgid "name is not set" msgstr "ім'я не встановлено" #: lib/user.c:223 msgid "name is too short" msgstr "ім'я надто коротке" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "ім'я надто довге (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "ім'я містить не-ASCII символи" #: lib/user.c:242 msgid "name contains control characters" msgstr "ім'я містить керівні послідовності" #: lib/user.c:249 msgid "name contains whitespace" msgstr "ім'я містить пропуски" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "ім'я починається з риски" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "ім'я містить неправильний символ `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "користувач %s не має UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "користувача %s не знайдено" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "група %s не має GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "групи %s не знайдено" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "користувач %jd не має імені" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "Група %jd не має назви" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "користувач не має ані назви, ані UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "групи не має ані назви, ані GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" "Відмова від використання небезпечного типового домашнього каталогу «%s»" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Неправильне типове значення для поля %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "помилка блокування файлу: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "не вдається отримати типовий контекст безпеки: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "не вдається отримати контекст безпеки для «%s»: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "не вдається задати значення типового контексту безпеки «%s»: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "не вдається визначити контекст безпеки для «%s»: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "не вдається відкрити «%s»: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "не вдається отримати відомості про «%s»: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "помилка створення «%s»: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "резервний файл «%s» існує та не є звичайним файлом" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Помилка зміни власника «%s»: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Помилка під час спроби зміни режиму для «%s»: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Помилка зчитування «%s»: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Помилка запису «%s»: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "невідповідність розміру файлу резервної копії" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "Значення %s неприпустиме «%s», використано «:»" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "не вдається прочитати з «%s»: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "запис вже існує у файлі" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "не вдається записати «%s»: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "об'єкт не має атрибута %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "вже є запис з назвою, що конфліктує" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "Не допускається використання `:' у паролях" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "помилка шифрування пароля" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "не можна поєднувати модуль «%s» з модулем «%s»" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "виконується без привілей адміністратора" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "немає файлу shadow — вимикаємо" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "помилка з'єднання з kadm5 сервером для служби «%s» у області «%s»: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "помилка ініціалізації бібліотеки kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "помилка аналізу імені користувача «%s» для kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "структура не має атрибутів %s або %s " #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "предикат не має атрибутів %s або %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "предикат було створено без атрибутів %s або %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "помилка читання інформації для «%s» з kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "предикат не має атрибута %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "помилка встановлення паролю для «%s»" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Пароль Kerberos для Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "помилка ініціалізації бібліотеки ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "не вдається встановити LDAP протокол для версії %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "не вдається узгодити TLS с сервером LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "не вдається під'єднатись до сервера LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "не вдається під'єднатись до сервера LDAP, перша спроба - «%s»: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "об'єкт користувача не має атрибута %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "об'єкт користувача створений без «%s»" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "помилка створення запису каталогу LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "помилка зміни запису каталогу LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "помилка перейменування запису каталогу LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "об'єкт не мав атрибут %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "помилка вилучення запису каталогу LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "об'єкт не має атрибута %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "схема шифрування паролів не підтримується" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "немає такого об'єкта у каталозі LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "не знайдено атрибут `%s" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "помилка встановлення паролю в каталозі LDAP для %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Назва сервера LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind пароль" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Користувач LDAP SASL" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Авторизований користувач LDAP SASL" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "помилка Cyrus SASL при створенні користувача: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "помилка Cyrus SASL під час вилучення користувача: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "помилка ініціалізації Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "помилка створення домашнього каталогу користувача" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "помилка вилучення домашнього каталогу користувача" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "помилка переміщення домашнього каталогу користувача" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Помилка ініціалізації %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Неправильний ідентифікатор ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Пошук групи з номером ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Пошук групи з назвою %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Пошук користувача з номером %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Пошук користувача з іменем %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Запис не знайдено.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Запит успішно виконаний.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Запит виконаний невдало.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Стандартні класи об'єкта користувача:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Імена стандартних атрибутів користувача:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Отримання стандартних атрибутів користувача:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Копіювання структури користувача:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s не має домашнього каталогу.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Помилка вилучення %s: %s.\n" libuser-0.60~dfsg/po/te.po0000644000175000017500000013272412226342570015474 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Krishnababu Krothapalli , 2007, 2008, 2009 # Krishnababu Krothapalli , 2011, 2012 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/fedora/language/" "te/)\n" "Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "అనుమతినిరాకరణ లో విఫలమైంది.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "లోపలి దోషం.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s యొక్క ఫింగర్ సమాచారాన్ని మార్చుటకు %s అధికారంలేదు\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "తెలియని వినియోగదారుని సందర్భం" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd కు సిద్ద సందర్భాన్ని అమర్చలేము \n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM సంస్థాపనలో దోషం.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s కు దృవీకరణ విఫలమైనది.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "లోపలి PAM దోషం `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "తెలియని వినియోగదారుడు దృవీకరించబడ్డాడు.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "వినియోగదారుని అసమానత.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] వినియోగదారుడు" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "మూలకాల పార్సింగ్ లో దోషం: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "వినియోగదారుని పేరు తెలుపబడలేదు.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s సంస్థాపించుటలో దోషం: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s వినియోగదారుడు లేడు.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "ఖాతా స్థంభించినది.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "ఖాతా స్థంభించబడలేదు. \n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "కనిష్ఠము:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "గరిష్ఠము:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "హెచ్చరిక:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "అచేతనం:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "ఎప్పటికి కాదు" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "చివరి మార్పు:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "అనుమతుపదం గతించినది:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "అనుమతిపదం అచేతనం:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "ఖాతా గతించినది:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s యొక్క వయోసమాచారాన్ని మార్చుటలో విఫలం: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [వినియోగదారి]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "వినియోగదారి పేరు తెలుపలేదు,uid %d కు పేరు లేదు.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s కొరకు ఫింగర్ సమాచారం మార్చబడుతోంది.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "పుర్తి పేరు" #: apps/lchfn.c:146 msgid "Surname" msgstr "ఉపనామము" #: apps/lchfn.c:157 msgid "Given Name" msgstr "ఇచ్చిన పేరు" #: apps/lchfn.c:167 msgid "Office" msgstr "కార్యాలయము" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "కార్యాలయ దూర్వాణి" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "నివాస దూర్వాణి" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ఇ-టపా చిరునామా" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "ఫింగర్ సమాచారం మార్చబడలేదు: ప్రవేశ దోషం.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "ఫింగర్ సమాచారం మార్చబడినది.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "ఫింగర్ సమాచారం మార్చబడలేదు:%s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s కొరకు షెల్ ను మారుస్తోంది.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "క్రొత్త షెల్" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "షెల్ మార్చబడలేదు:%s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "షెల్ మార్చబడినది.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] సమూహం" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "సముహం పేరు తెలుపబడలేదు.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "సరిగాని సమూహ ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "సమూహ సృష్టీకరణ విఫలం:%s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "సమూహం%s లేదు.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "%s సముహం తొలగింపలేము: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L మరియు -U తెలుపబడినవి.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "సమూహం %s కు అనుమతిపదం అమర్చుటలో విఫలం: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "సమూహం %s లాక్ చేయలేము:%s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "సమూహం %s లాక్ తీయలేము:%s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "సమూహం %s మార్పుచేయలేము:%s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s లో దోషాన్ని చూస్తోంది:%s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "సమూహం పేరు తెలుపబడలేదు, %s ఉపయోగించి.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "సమూహం పేరు తెలుపబడలేదు,gid%d కి పేరు లేదు.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "వినియోగదారుని పేరు తెలుపబడలేదు,%s ఉపయోగించి.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s లేదు\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' తెరువుటలో దోషం:%s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "`%s' కు ఖాతా సృష్టించుటలో దోషం:పంక్తి సరిగా కూర్చబడలేదు.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "వినియోగదారుని ID %s సరిగా లేదు\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 తో ఖాతా సృష్టించుటకు తిరస్కరిస్తోంది.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' కు GID %jd తో సమూహం సృష్టించుటలో దోషం: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "ప్రమాదకరమైన డైరెక్టరీ `%s'ను %s కొరకు అప్రమేయంగా వుపయోగించుట తిరస్కరించుతోంది\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s కు నివాస సంచయం సృష్టించుటలో దోషం: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s కు తోలి అనుమతిపదం అమర్చుటలో దోషం: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s కు వినియోగదారుని ఖాతా సృష్టించుటలో దోషం: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s అనుమతిపదం మారుస్తుంది.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "క్రొత్త అనుమతిపదం" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "క్రొత్త అనుమతిపదం (నిశ్చయం)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "అనుమతిపదం సరితూగలేదు,మరలా ప్రయత్నించండి.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "అనుమతిపదం మార్పు రద్దుచేయబడింది.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "ఫైల్ డిస్క్రిప్టార్ %d నుండి చదువుటలో దోషం.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s కు అనుమతిపదం అమరికలో దోషం: %s\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s సమూహం కు అనుమతిపదం అమరికలో దోషం: %s\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "అనుమతిపదం మార్చబడినది.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "సమూహం %jd లేదు\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "సమూహం %s సృష్టించుటలో దోషం: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "ఖాతా సృష్టీకరణ విఫలం: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s సృష్టించుటలో దోషం: %s\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "%s వినియోగదారుడు తొలగింపబడడు: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s gid సంఖ్యను కలిగిలేదు.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd తో ఏ సమూహం లేదు,తొలగించవద్దు.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd తో ఉన్న సమూహం పేరుకలిగిలేదు.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s సమూహం తొలగింపబడడు: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "వినియోగదారుని కొరకు నివాస సంచయం తొలగించుటలో దోషం" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s వినియోగదారునికి అనుమతిపదం అమర్చుటలో విఫలం: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "వినియోగదారుడు %s లాక్ చేయబడలేడు: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "వినియోగదారుడు %s లాక్ చేయబడలేడు: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "హెచ్చరిక: ID %jd తొ సమూహం లేదు.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "వినియోగదారుడు %s మార్పు చేయబడలేడు: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "సమూహం %s మార్పు చేయబడలేదు: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s కు పురాతన నివాస సంచయము లేదు.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s కు క్రొత్త నివాస సంచయము లేదు.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s నుండి %s కు కదులుటలో దోషం: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "`%s' ఆకృతీకరణ దస్త్రం ను తెరువలేదు: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "`%s' ఆకృతీకరణ దస్త్రం ను ప్రారంభింపలేదు: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "ఆకృతీకరణ దస్త్రం `%s' చాలా పెద్దది" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "ఆకృతీకరణ ఫైలు `%s' ను చదవలేదు: %s" #: lib/error.c:62 msgid "success" msgstr "సమర్ధంవంతంగా" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "ఆకృతీకరణ చేత గుణకం అచేతనంచేయబడింది" #: lib/error.c:66 msgid "generic error" msgstr "సాధారణ దోషం" #: lib/error.c:68 msgid "not enough privileges" msgstr "సరిపోయిన అధికారాలు లేవు" #: lib/error.c:70 msgid "access denied" msgstr "అనుమతి నిరాకరించబడింది" #: lib/error.c:72 msgid "bad user/group name" msgstr "చెడ్డ వినియోగదారుని/సమూహం పేరు" #: lib/error.c:74 msgid "bad user/group id" msgstr "చెడ్డ వినియోగదారుని/సమూహం ఇడి" #: lib/error.c:76 msgid "user/group name in use" msgstr "వినియోగదారుని/సమూహం పేరు ఉపయోగంలోఉంది" #: lib/error.c:78 msgid "user/group id in use" msgstr "వినియోగదారుని/సమూహం ఐడి ఉపయోగంలోఉంది" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "టెర్మినల్ యాట్రిబ్యూట్సు నిర్దేశంలో దోషం" #: lib/error.c:82 msgid "error opening file" msgstr "దస్త్రం తెరుచుటలో దోషం" #: lib/error.c:84 msgid "error locking file" msgstr "దస్త్రం లాకింగ్ లో దోషం" #: lib/error.c:86 msgid "error statting file" msgstr "దస్త్రం ప్రారంభించుటలో దోషం" #: lib/error.c:88 msgid "error reading file" msgstr "దస్త్రం చదువుటలో దోషం" #: lib/error.c:90 msgid "error writing to file" msgstr "దస్త్రం వ్రాయుటలో దోషం" #: lib/error.c:92 msgid "data not found in file" msgstr "దస్త్రంలో సమాచారం కనబడుటలేదు" #: lib/error.c:94 msgid "internal initialization error" msgstr "అంతర్గత సిద్దీకరణ దోషం" #: lib/error.c:96 msgid "error loading module" msgstr "గుణకం లోడింగ్ లో దోషం" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "గుణకం లో గర్తును పరిష్కరించుటలో దోషం" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "లైబ్రరి/గుణకం విడుదలలో అసమానత" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "అన్ లాకింగ్ అనుమతిపదం స్థలాన్ని ఖాళీచేస్తుంది" #: lib/error.c:105 msgid "invalid attribute value" msgstr "చెల్లని యాట్రిబ్యూట్ విలువ" #: lib/error.c:107 msgid "invalid module combination" msgstr "చెల్లని మాడ్యూల్ యుగళం" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "తెలియని దోషం" #: lib/misc.c:240 msgid "invalid number" msgstr "సరికాని సంఖ్య" #: lib/misc.c:254 msgid "invalid ID" msgstr "సరికాని ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "`%s' లో క్రియాశీల %s సిద్దీకరణ లేదు" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' లో గుణక విడుదల అసమానత" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' గుణకం `%s'న్ని నిర్ధారించదు" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "టెర్మినల్ యాట్రిబ్యూట్సు చదువుటలో దోషం" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "టెర్మినల్ యట్రిబ్యూట్సు అమరికలో దోషం" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "టెర్మినల్ నుండి చదువుటలో దోషం" #: lib/user.c:218 msgid "name is not set" msgstr "పేరు పెట్టబడలేదు" #: lib/user.c:223 msgid "name is too short" msgstr "పేరు చిన్నదిగా ఉంది" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "పేరు పెద్దదిగా ఉంది(%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "పేరు ASCII అక్షరాలు కానివాటిని కలిగి ఉంది" #: lib/user.c:242 msgid "name contains control characters" msgstr "పేరు కంట్రోల్ అక్షరాలను కలిగి ఉంది" #: lib/user.c:249 msgid "name contains whitespace" msgstr "పేరు తెల్ల ఖాళీలను కలిగి ఉంది" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "పేరు హైఫన్ తో ప్రారంభింపబడుతుంది" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "పేరు సరిగాని అక్షరం `%c' కలిగి ఉంది" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "వినియోగదారుడు %s UID ని కలిగి లేడు" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "సమూహం %s GID ని కలిగి లేదు" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "వినియోగదారుడు %jd పేరు కలిగి లేడు" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "సమూహం %jd పేరు ని కలిగి లేదు" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "వినియోగదారుడు పేరుకాని UID ని కలిగి లేడు" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "సమూహం పేరును కాని GID ని కాని కలిగి లేదు" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "ప్రమాదకరమైన నివాస సంచయం `%s' అప్రమేయంగా వుపయోగించుటకు తిరస్కరించుతోంది" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s కు సరికాని సిద్దవిలువ : %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "దస్త్రం లాకింగ్ లో దోషం: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "సిద్ద రక్షణ సందర్బంను వ్యవస్థింపలేము: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' యొక్క రక్షణ సందర్బంను పొందలేము: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "`%s' కు సిద్ద రక్షణ వ్యవస్థను అమర్చలేము: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' యొక్క రక్షణ సందర్బంను పొందలేము: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' ను తెరువలేము: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' ను ప్రారంభింపలేము: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' ను సృష్టించలేము: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "`%s' బ్యాకప్ దస్త్రం ఉంది అది నిత్యదస్త్రంకాదు" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' యొక్క యజమానిని మార్చుటలో దోషం: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s' యొక్క దోష మార్పు రీతి: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' చదువుటలో దోషం: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' వ్రాయుటలో దోషం: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "బ్యాకప్ దస్త్ర పరిమాణ అసమానత" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s విలువ `%s': `:' అనుమతించబడలేదు" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' నుండి చదవలేము : %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "ప్రవేశం దస్త్రంలో ఉంచబడింది" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr " `%s' కు వ్రాయలేము : %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "ప్రవేశపెట్టిన ఆబ్జక్టు యాట్రిబ్యూట్ %s ని కలిగి లేదు" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "విభేదిస్తున్న పేరుతో ప్రవేశం యిప్పటికే ఫైలునందు వుంది" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "ఎన్క్రిప్టెడ్ సంకేతపదమునందు `:' అనుమతించబడలేదు" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "అనుమతిపదం ను ఎన్క్రిప్టు చేయడం లో దోషం" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' మరియు `%s' మాడ్యూళ్ళను సమ్మేళనం చేయలేము" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "సూపర్ యూజర్ అదికారాలతో నిష్పాదనము జరుగుటలేదు" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "షాడో ఫైల్ లేదు -- అచేతనం చేయబడింది" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "`%s' రియల్ము లో `%s' సేవ కొరకు kadm5 అనుసంధానంలో దోషం: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "కేర్బ్రోస్ లైబ్రరి సిద్దికరణలో దోషం" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "కేర్బ్రోస్ కోరకు వినియోగదారుని పేరు `%s' పార్శింగ్ లో దోషం" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "ఎంటిటి ఆకృతి %s లేక %s యాట్రిబ్యూట్సు కలిగి లేదు" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "ఎంటిటి %s లేక %s యాట్రిబ్యూట్సు కలిగి లేదు" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "ఎంటిటి %s లేక %s యాట్రిబ్యూట్సు లేకుండానే సృష్టించబడింది" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "కేర్బ్రోస్ నుండి `%s' కొరకు సమాచారాన్ని చదువుటలో దోషం" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "ఎంటిటి యాట్రిబ్యూట్ %s ను కలిగి లేదు" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' కు అనుమతిపదం అమర్చుటలో దోషం" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "కేర్బ్రోస్ రియాల్ము" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "కెర్బ్రోస్ ఎడ్మిన్ ప్రిన్సిపల్" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "ఎడ్మిన్ ప్రిన్సిపల్ కొరకు కెర్బ్రోస్ అనుమతిపదం" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ఎల్ డాప్ లైబ్రరి సంస్థాపనలో దోషం" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "విడుదల %d కు LDAP నియమంను వ్యవస్థాపించలేము" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP సేవిక తో TLS ను నెగొషియేట్ చేయలేము" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP సేవికకు కట్టుబడి ఉండలేము" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP సేవిక కు కట్టుబడి ఉండలేము,మొదటి ప్రయత్నంగా `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "వినియోగదారుని ఆబ్జక్టు %sని కలిగి లేదు" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "వినియోగదారుని ఆబ్జక్టు `%s' లేకనే సృష్టించబడింది" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP పదకోశ ప్రవేశం సృష్టీకరణలో దోషం: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP పదకోశ ప్రవేశం మార్చుటలో దోషం: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP పదకోశ ప్రవేశం తిరిగి నామకరణం చేయుటలో దోషం: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "ఆబ్జక్టు %s యాట్రిబ్యూట్ కలిగిలేదు" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP పదకోశ ప్రవేశం తొలగించుటలో దోషం: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "ఆబ్జక్టు %s యాట్రిబ్యూట్ కలిగిలేదు" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "మద్దతీయని సంకేతపదపు ఎన్క్రిప్షన్ పథకము" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP లో అటువంటి ఆబ్జక్టు లేదు" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "`%s' యాట్రిబ్యూట్ కనబడలేదు" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s కోరకు LDAP పదకోశం లో అనుమతిపదం వ్యవస్థాపించుటలో దోషం: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP సేవిక పేరు" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP సెర్చు ఆధారం DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP బైండ్ DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP బైండ్ అనుమతిపదం" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL వినియోగదారి" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL దృవీకరించు వినియోగదారి" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "వినియోగదారుని సృష్టించుటలో సైరస్ SASL దోషం: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "వినియోగదారుని తోలగించుటలో సైరస్ SASL దోషం: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "సైరస్ SASL సిద్దీకరించుటలో దోషం: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "వినియోగదారుని కొరకు నివాస సంచయం సృష్టించుటలో దోషం" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "వినియోగదారుని కొరకు నివాస సంచయం తొలగించుటలో దోషం" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "వినియోగదారుని కొరకు నివాస సంచయం కదుల్చుటలో దోషం" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s ను సిద్దీకరించుటలో దోషం: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "సరిగాని ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID %jd తో సమూహం కొరకు వెతుకులాట.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s పేరుగల సమూహం కొరకు వెతుకులాట.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID %jd తో వినియోగదారుని కోరకు వెతుకులాట.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s పేరుగల వినియోగదారుని కొరకు వెతుకులాట.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "ప్రవేశం కనిపించలేదు.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "ప్రాంమ్ట్సు సఫలం.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "ప్రాంమ్ట్సు విఫలం.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "సిద్ద వినియోగదారుని ఆబ్జక్టు క్లాసులు:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "సిద్ద వినియోగదారుని యాట్రిబ్యూట్సు పేరులు:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "సిద్ద వినియోగదారుని యాట్రిబ్యూట్సు పొందుట:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "వినియోగదారుని ఆకృతిని నకలుతీయుట:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s నివాస సంచయమును కలిగి లేదు.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s ని దోషం తొలగిస్తోంది: %s.\n" libuser-0.60~dfsg/po/stamp-po0000644000175000017500000000001212226342605016166 0ustar tzafrirtzafrirtimestamp libuser-0.60~dfsg/po/el.gmo0000644000175000017500000010535612226342604015627 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<%>>p>6a?)?D?=@DE@4@6@k@NbA1A3A,BDDB@B BKBS#CwC&CCC>C1FVF/F>#G-bG#GBG,GD$H/iH^HQHRJIUIUI&IJBpJUJR Ka\K3KWK>JLLL?LGLGM(]MIMMMINOhNQNM O(XO8ODOOP4P*PP!{PPSP% Q%0QVQ6oQQ Q Q5Q"R;R&OR$vRRRRZR @S LSVS_SuS0S_SVT8uT[TL UPWU^UVV8^VV!VV!V&V8!W*ZWaW0W:XGSXdXrY sY9Y2Y;Y4(Z*]Z4ZZ<Z* [O4[Q[W[U.\,\*\ \M\K]$_]]"]_]&^~F^K^%_-7_Xe_M_8 `HE`L`z`\Va`aNbZcbVbccjycYc.>d3mdYdd/e9Je;e<e[e[Yf\fVgXigXgHhtdh7hAiSSiLiQiAFjAj}j1HkPzkRkBl6al\lXl2Nm3m5mQmR=nRn1nPo5fo9oRo`)pfpNpR@qKqSqg3r\r'r8 sKYsss7s,t$Bt'gt-t5tStSGuSu:u*v9@v-zv"vMvhww5'x<]x:x;x(y):yrdyVy1.zY`z@zXzDT{J{U{::|.u|9|2|3}.E}&t})}N}V~Xk~.~Q~E??$td_ـH9kDg3;gׂg?I<>./m.<̄H FR56υ:.AFp5,D+Up?Ƈ*""M[pb̈0/(`+9HS8,40L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-08-06 08:52+0000 Last-Translator: ioza1964 Language-Team: Greek (http://www.transifex.com/projects/p/fedora/language/el/) Language: el MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s δεν έχει αριθμό gid. %s δεν υπάρχει O %s δεν επιτρέπεται να τροποποιήσει τις πληροφορίες finger του %s η %s τιμή `%s': `:' δεν επιτρέπεταιΟ λογαριασμός λήγει: %s Αποτυχία δημιουργίας λογαριασμού: %s. Ο λογαριασμός είναι κλειδωμένος. Ο λογαριασμός δεν είναι κλειδωμένος. Η πιστοποίηση απέτυχε για %s. Καθορίστηκε και το -L και το -U. Αδυναμία ορισμού προεπιλεγμένου περιβάλλοντος για /etc/passwd Τροποποίηση προσωπικών πληροφοριών για %s. Αλλαγή συνθηματικού για %s. Τροποποίηση κελύφους για %s. Αντιγραφή δομής χρήστη: Σφάλμα Cyrus SASL στη δημιουργία χρήστη: %sΣφάλμα Cyrus SASL στη διαγραφή χρήστη: %sΗΜΕΡΕΣΠροεπιλεγμένα ονόματα ιδιοτήτων χρήστη: Προεπιλεγμένες κλάσεις αντικειμένων χρήστη: Διεύθυνση E-Mail Η είσοδος δε βρέθηκε Σφάλμα αλλαγής την κατάσταση του `%s:%sΣφάλμα αλλαγής ιδιοκτήτη του `%s': %sΣφάλμα στη δημιουργία %s: %s. Σφάλμα δημιουργία λογαριασμού για `%s': μη επιτρεπτή μορφοποίηση γραμμής. Σφάλμα στη δημιουργία ομάδας `%s': %s Σφάλμα στη δημιουργία ομάδας για `%s' με GID %jd: %s Σφάλμα ορισμού αρχικού καταλόγου για %s: %s Σφάλμα στη δημιουργία του ταχυδρομικού νήματος για %s: %s Σφάλμα στη δημιουργία του ταχυδρομικού νήματος: %s Σφάλμα δημιουργίας λογαριασμού χρήστη για %s: %s Σφάλμα αρχικοποίησης %s: %s Σφάλμα κατά την αρχικοποίηση %s: %s. Σφάλμα αρχικοποίησης PAM. Σφάλμα εύρεσης %s: %s Σφάλμα στη μετακίνηση του %s στο %s: %s. Σφάλμα ανοίγματος `%s': %s. Σφάλμα κατά την ανάλυση ορισμάτων: %s. Σφάλμα στην ανάγνωση `%s': %sΣφάλμα κατά την ανάγνωση από το αρχείο Περιγραφή %d. Σφάλμα απομάκρυνσης ταχυδρομικού νήματος: %sΣφάλμα ορισμού αρχικού συνθηματικού για %s: %s Σφάλμα ορισμού συνθηματικού για την ομάδα %s: %s Σφάλμα ορισμού συνθηματικού για το χρήστη %s: %s Σφάλμα εγγραφής `%s': %sΑποτυχία εγκατάλειψης δικαιωμάτων. Αδυναμία τροποποίησης πληροφοριών aging για %s: %s Αποτυχία ορισμού συνθηματικού για ομάδα %s: %s Αποτυχία στον ορισμό συνθηματικού για το χρήστη %s: %s. Οι πληροφορίες Finger άλλαξαν. Οι πληροφορίες Finger δεν άλλαξαν: σφάλμα εισόδου. Οι πληροφορίες Finger δεν άλλαξαν: %s. Πλήρες όνομαπληροφορίες GECOS Πληροφορίες GEGOS για τον νέο χρήστη Λήψη προεπιλεγμένων ιδιοτήτων χρήστη: Δοθέν όνομαΔεν υπάρχει η ομάδα %jd Δε μπόρεσε να γίνει διαγραφή ομάδας %s: %s Δεν ήταν δυνατή η διαγραφή της ομάδας %s: %s. Δε μπόρεσε να γίνει κλείδωμα ομάδας %s: %s Δε μπόρεσε να γίνει τροποποίηση ομάδας %s: %s Δε μπόρεσε να γίνει κλείδωμα της ομάδας %s: %s. Δε μπόρεσε να γίνει ξεκλείδωμα ομάδας %s: %s Η ομάδα %s δεν υπάρχει. Η δημιουργία ομάδας απέτυχε: %s Η ομάδα με GID %jd δεν έχει όνομα ομάδας. Τηλέφωνο οικίαςΑνενεργό: %ld Ανενεργό: Ποτέ Εσωτερικό σφάλμα PAM `%s'. Εσωτερικό σφάλμα. Μη έγκυρο ID %s Μη έγκυρη προεπιλεγμένη τιμή για το πεδίο %s: %sΜη έγκυρο ID ομάδας %s Μη έγκυρο ID χρήστη %s Kerberos Admin PrincipalΣυνθηματικό για Kerberos Admin PrincipalΠεριοχή KerberosLDAP Bind DNΣυνθηματικό LDAP BindΧρήστης εξουσιοδότησης LDAP SASLΧρήστης LDAP SASLLDAP Search Base DNΌνομα εξυπηρετητή LDAPΤελευταία αλλαγή: %s Μέγιστο: %ld Μέγιστο: Τίποτα Ελάχιστο: %ld Πρέπει να αλλάξει ο κωδικός στην επόμενη σύνδεση ΟΝΟΜΑ ΑΡΙΘ.ΠοτέΝέο κέλυφοςΝέος κωδικόςΝέος κωδικός (επιβεβαίωση)Δεν έχει οριστεί όνομα ομάδας, κανένα όνομα για gid %d. Δεν έχει οριστεί όνομα ομάδας, γίνεται χρήση %s. Δεν έχει οριστεί όνομα ομάδας. Με υπάρχει ομάδα με GID %jd, δεν γίνεται απομάκρυνση. Δεν υπάρχει νέος αρχικός κατάλογος για %s. Δεν υπάρχει παλιός αρχικός κατάλογος για %s. Δεν καθορίστηκε όνομα χρήστη, κανένα όνομα για uid %d. Δεν έχει οριστεί όνομα χρήστη, γίνεται χρήση %s. Δεν έχει οριστεί όνομα χρήστη. ΓραφείοΤηλέφωνο γραφείουΕΙΣΟΔΟΣ Ο κωδικός λήγει: %s Ανενεργός κωδικός: %s Ακύρωση αλλαγής συνθηματικού. Το συνθηματικό άλλαξε. Οι κωδικοί δε συμπίπτουν, παρακαλώ προσπαθήστε ξανά. Οι ειδοποιήσεις απέτυχαν. Οι ειδοποιήσεις ολοκληρώθηκαν. Άρνηση δημιουργίας λογαριασμού με UID 0. Άρνησή χρίσης επικίνδυνου κατάλογου `%s 'από προεπιλογήΑπαγόρευσή χρήσης πρόσβασις κατάλογου `%s 'για%s από προεπιλογή ΣΕΙΡΑ Αναζήτηση για ομάδα με όνομα %s. Αναζήτηση για ομάδα με ID %jd. Αναζήτηση για χρήστη με όνομα %s. Αναζήτηση για χρήστη με ID %jd. Έγινε αλλαγή κελύφους. Δεν έγινε αλλαγή κελύφους: %s ΕπώνυμοΠιστοποιήθηκε άγνωστος χρήστης. Άγνωστο πλαίσιο χρήστηΔεν είναι δυνατή η διαγραφή του χρήστη %s: %s. Δε μπόρεσε να γίνει κλείδωμα του χρήστη %s: %s. Δε μπόρεσε να γίνει τροποποίηση του χρήστη %s: %s. Δε μπόρεσε να γίνει ξεκλείδωμα του χρήστη %s: %s. Ο χρήστης %s δεν υπάρχει. Κακό ταίριασμα χρήστη. Προειδοποίηση: %ld Προειδοποίηση: Η ομάδα με ID %jd δεν υπάρχει. [ΕΠΙΛΟΓΗ...][ΕΠΙΛΟΓΗ...] [χρήστης][ΕΠΙΛΟΓΗ...] ομάδα[ΕΠΙΛΟΓΗ...] χρήστηςη `:' δεν επιτρέπεται σε κρυπτογραφημένο συνθηματικόΆρνηση πρόσβασηςτο αντίγραφο ασφάλειας`%s' υπάρχει αλλά δεν είναι ένα κανονικό αρχείο.αταίριαστο μέγεθος αντιγράφου ασφαλείαςκακό id χρήστη/ομάδαςκακό όνομα χρήστη/ομάδαςαλλαγή της ομάδς για να έχει συγκεκριμένο όνομα αλλάξτε τον κωδικό εισόδπυ για τον χρήστη κοινό όνομα για τον νέο χρήστη το αρχείο ρύθμισης `%s' είναι πολύ μεγάλοαδυναμία δέσμευσης με τον εξυπηρετητή LDAP,αδυναμία δέσμευσης με τον εξυπηρετητή LDAP, πρώτη προσπάθεια ως `%s': %sδεν ήταν δυνατή η πιστοποίηση TLS στο διακομιστή LDAP.δεν ήταν δυνατό το άνοιγμα του αρχείου ρύθμισης `%s': %sαδυναμία ανάγνωσης αρχείου ρυθμίσεων `%s': %sδε μπόρεσε να οριστεί πρωτόκολλο LDAP στην έκδοση %dδεν ήταν δυνατό το stat του αρχείου ρύθμισης `%s': %sαδυναμία καθορισμού περιβάλλοντος ασφάλειας του `%s': %sαδυναμία λήψης προεπιλεγμένου περιβάλλοντος ασφάλειας: %sαδυναμία λήψης περιβάλλοντος ασφάλειας του `%s': %sαδυναμία ανοίγματος `%s': %sαδυναμία ανάγνωσης από `%s': %sαδυναμία λήψης περιβάλλοντος ασφάλειας του `%s': %sαδυναμία stat `%s': %sαδυναμία εγγραφής σε `%s': %sδημιουργείστε συστημική ομάδα δημιουργήστε χρήστη συστήματος δεν βρέθηκαν δεδομένα στο αρχείοημερομηνία τελευταίας αλλαγής κωδκού από τις 1/1/70.μέρες πριν την ειδοποίηση του χρήστη για την λήξη.λίστα διευθύνσεων με φακέλλους για τον νέο χρήστη μην δημιουργείτε ομάδα με το ίδιο όνομα χρήστη μην δημιουργήσετε λίστα διευθύνσεων για χρήστη μην δημιουργήσετε λίστα διευθύνσεων για χρήστη μην δημιουργείτε συνωστισμό μηνυμάτων μην αφαιρείτε την προσωπική ομάδα χρήστη, αν ο χρήστης έχει μία η οντότητα δεν έχει %s γνώρισμαη οντότητα δεν έχει %s ή %s γνωρίσματατο αντικείμενο οντότητας δεν έχει γνώρισμα %sη δομή οντότητας δεν έχει %s ή %s γνωρίσματαη οντότητα δημιουργήθηκε με %s ή %s γνωρίσματαη καταχώριση υπάρχει ήδη στο αρχείοκαταχώρηση με όνομα που υπάρχει ήδησφάλμα σύνδεσης στον εξυπηρετητή kadm5 για την υπηρεσία `%s' στο realm `%s': %sσφάλμα στη δημιουργία `%s': %sΣφάλμα δημιουργίας εγγραφής καταλόγου LDAP: %sσφάλμα δημιουργίας αρχικού καταλόγου χρήστησφάλμα κρυπτογράφησης συνθηματικούσφάλμα αρχικοποίησης Cyrus SASL: %sσφάλμα κατά την ενεργοποίηση της βιβλιοθήκης kerberosσφάλμα κατά την ενεργοποίηση της βιβλιοθήκης ldapσφάλμα φόρτωσης αρθρώματοςΣφάλμα στο κλείδωμα αρχείουσφάλμα κλειδώματος αρχείου %sσφάλμα χειραγώγησης γνωρισμάτων τερματικούΣφάλμα επεξεργασίας εγγραφής καταλόγου LDAP: %sσφάλμα μετακίνησης αρχικού καταλόγου χρήστησφάλμα στο άνοιγμα αρχείουσφάλμα ανάλυσης ονόματος χρήστη `%s' για kerberosΣφάλμα στην ανάγνωση αρχείουσφάλμα ανάγνωσης από τερματικόσφάλμα ανάγνωσης πληροφοριών για `%s' από kerberosσφάλμα κατά την ανάγνωση των γνωρισμάτων τερματικούσφάλμα κατά την απομάκρυνση καταχώρισης καταλόγου LDAP: %sσφάλμα διαγραφής αρχικού καταλόγου χρήστηΣφάλμα μετονομασίας εγγραφής καταλόγου LDAP: %sσφάλμα στην επίλυση συμβόλου στο άρθρωμασφάλμα ορισμού συνθηματικού πρόσβασης για `%s'σφάλμα καθορισμού συνθηματικού στον κατάλογο LDAP για %s: %sσφάλμα κατά τον ορισμό των γνωρισμάτων τερματικούΣφάλμα στο stat αρχείουΣφάλμα στην εγγραφή στο αρχείοφάκελλος με εγγραφές πληροφοριών χρήστη γενικό σφάλμαgid για νέα ομάδα δεδομένο όνομα για νέο χρήστη η ομάδα %jd δεν έχει όνομαη ομάδα %s δεν έχει GIDη ομάδα %s δεν βρέθηκε ομάδα για τον νέο χρήστη η ομάδα δεν έχει όνομα ούτε UIDαρχική λίστα διευθύνσεων για τον νέο χρήστη αρχική λίστα διευθύνσεων για τον νέο χρήστη αρχική λίστα διευθύνσεων για τον νέο χρήστη εσωτερικό σφάλμα αρχικοποίησηςμη έγκυρο ID μη έγκυρη τιμή χαρακτηριστικούμη έγκυρος συνδυασμό moduleμη έγκυρος αριθμόςαταίριαστη έκδοση αρθρώματος/βιβλιοθήκηςπροβάλετε χρονικές παραμέτρους για τον χρήστη στη λίστα λίστα μελών μιας συγκεκριμένης ομάδας αντί των εγγραφών μελών για τον ονομασμένο χρήστη. πρόσθση λίστας διαχειριστών λίστα διαχειριστών για αφαίρεση λίστα μελών ομάδας για πρόσθεσηλίστα μελών ομάδας για αφαίρεση κλείδωμα λογαριασμού ξεκλειδώστε την ομάδα μέγιστος αριθμός ημερών μεταξύ των αλλαγών κωδικών πρόσβασης ελάχιστος αριθμός ημερών ανάμεσα στις αλλαγές το άρθρωμα `%s' δεν ορίζει `%s'το άρθρωμα είναι απενεργοποιημένο μέσω ρύθμισηςαταίριαστη έκδοση αρθρώματος σε `%s'μετακινείστε τα περιεχόμενα της λίστας σπιτιών το όνομα περιέχει χαρακτήρες ελέγχουτο όνομα περιέχει μη έγκυρο χαρακτήρα `%c'Το όνομα περιέχει χαρακτήρες εκτός συνόλου ASCIIτο όνομα περιέχει κενό διάστηματο όνομα δεν έχει οριστείτο όνομα είναι πολύ μακρύ (%zu > %d)το όνομα είναι πολύ σύντομοτο όνομα ξεκινά με μια παύλανέος κωδικός με απόκρυψη νέος κωδικός πεδίου δε βρέθηκε ιδιότητα `%s'δεν υπάρχει συνάρτηση αρχικοποίησης %s in `%s'δεν υπάρχει αρχείο shadow -- γίνεται πενεργοποίησηδεν υπάρχει τέτοιο αντικείμενο στον κατάλογο LDAPανεπαρκή προνόμια χρήστηδεν γίνεται εκτέλεση με προνόμια υπερχρήστηαριθμός ημερών μετά την λήξη του κωδικού πρόσβασης όταν ο λογαρισμός είναι ανενεργός το αντικείμενο δεν έχει ιδιότητα %sτο αντικείμενο δεν έχει ιδιότητα %sπληροφοριες μόνο για την λίστα συνδρομής με όνομα, και όχι UID/GID. ημερομηνία λήξης κωδικού πρόσβασης σε μέρες από 1/1/70κωδικός κυρίως κειμένου για τον χρήστη κωδικός πρόσβασης βασικού κειμένου για χρήση με την ομάδα προ-κλείδωσμα κωδικού για τον χρήστη προ-θεώρημένος κωδικός πρόσβασης για χρήση με την ομάδα έτοιμο για όλες τις πληροφορίες διαβάστε τον νέο κωδικό πεδίο από την δοσμένη περιγραφή διαβάστε τον νέο κωδικό πεδίο από την δοσμένη περιγραφή αφαιρέστε την λίστα διευθύνσεων χρήστη αριθμός χώρου για τον νέο χρήστη εγκατασττήστε το GID για την ομάδα. θέστε το UID για τον χρήστη βάλτε κοινό όνομα χρήστη βάλτε συγκεκριμένο όνομα χρήστη βάλτε κωδικό ομάδας αντί κωδικό χρήστη βάλτε αριθμό τηλεφώνου για τον χρήστη θέστε το βασικό GID του χρήστη βάλτε αριθμό δωματίου χρήστη θέστε το πλαίσιο για τον χρήστη βάλτε κύριο όνομα χρήστη βάλτε αριθμό τηλεφώνου για τον χρήστη περίβλημα για τον νέο χρήστη επιτυχίαεπίθετο του νέου χρήστη αριθμός τηλεφώνου για τον νέο χρήστη το `%s 'και`%s' μονάδες δεν μπορούν να συνδυαστούνΠληροφορίες GEGOS για τον νέο χρήστη άγνωστο σφάλμαξεκλείδωμα λογαρισμού ξεκλειδώστε ομάδα το ξεκλείδωμα θα καταστήσει το πεδίο κωδικού κενόμη υποστηριζόμενο σχήμα κρυπτογράφησης συνθηματικούο χρήστης %jd δεν έχει όνομαο χρήστης %s δεν έχει UIDο χρήστης %s δεν βρέθηκε ο χρήστης δεν έχει όνομα ούτε UIDτο αντικείμενο χρήστη δεν είχε όρισμα %sτο αντικείμενο χρήστη δημιουργήθηκε χωρίς `%s'id χρήστη/ομάδας σε χρήσηόνομα χρήστη/ομάδας σε χρήσηlibuser-0.60~dfsg/po/mk.po0000644000175000017500000012062412226342567015475 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Arangel Angov , 2004 # Jovan Naumovski , 2007 # Miloslav Trmač , 2011 # Tomislav Markovski , 2004, 2005 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/fedora/" "language/mk/)\n" "Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Не успеав да ги симнам привилегиите.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Внатрешна грешка.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s не е авторизиран за промена на информациите на %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Непознат кориснички контекст" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Не можам да го поставам стандардниот контекст за /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Грешка при иницијализација на PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Автентикацијата е неуспешна за %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Внатрешна грешка во PAM „%s“.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Автентициран е непознат корисник.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Погрешен корисник.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ОПЦИЈА...] корисник" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Грешка при парсирање на аргументите: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Не е одредено корисничко име.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Грешка при иницијализирање на %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Корисникот %s не постои.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Сметката е заклучена.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Сметката не е заклучена.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Минимум:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Максимум:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Предупредување:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Неактивно:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Никогаш" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Последна промена:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Лозинката истекува:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Лозинката е неактивна:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Сметката истекува:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Не успеав да ги променам информциите за стареење за %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ОПЦИЈА...] [корисник]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Нема одредено корисничко име. Нема име за uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Ја менувам информацијата од finger за %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Целосно име" #: apps/lchfn.c:146 msgid "Surname" msgstr "Презиме" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Дадено име" #: apps/lchfn.c:167 msgid "Office" msgstr "Канцеларија" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Телефон на работа" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Телефон дома" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Адреса за е-пошта" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Информацијата од finger не е променета: влезна грешка.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Информацијата од finger е променета.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Информацијата за finger не е променета: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Ја менувам школката за %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Нова школка" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Школката не е сменета: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Школката е сменета.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ОПЦИЈА...] група" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Нема одредено име за групата.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Невалидно ID на група %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Креирањето на групата не успеа: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Групата %s не постои.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Групата %s не може да биде избришана: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "И -L и -U се одредени.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Не успеав да поставам лозинка за групата %s: %s.\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Групата %s не може да биде заклучена: %s.\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Групата %s не може да биде отклучена: %s.\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Групата %s не може да биде променета: %s.\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Грешка при заклучување на %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Нема одредено име за групата, користам %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Нема одредено име за групата. Нема име за gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Нема одредено корисничко име, користам %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ОПЦИЈА...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Грешка при отворање на „%s“: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Грешка при креирање на сметка за „%s“: линијата е форматирана погрешно.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Невалиден ID на корисник %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Одбивам да креирам сметка со UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Грешка при креирањето на група за „%s“ со GID %jd: %s.\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Грешка при креирање на домашен директориум за %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Грешка при поставување на лозинка за %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Грешка при креирање на корисничка сметка за %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Ја менувам лозинката за %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Нова лозинка" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Нов лозинка (потврда)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Лозинките не се совпаѓаат, пробајте повторно.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Промената на лозинката е откажана.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Грешка при поставување на лозинка за корисникот %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Грешка при поставување на лозинка за групата %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Лозинката е променета.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Групата %jd не постои.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Грешка при креирање на групата „%s“: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Креирањето на сметката не успеа: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Грешка при креирање на %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Корисникот %s не може да биде избришан: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s нема gid број.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Не постои група со GID %jd. Не отстранувам.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Групата со GID %jd немаше име на групата.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Групата %s не може да биде избришана: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "грешка при отстранување на домашниот директориум за корисникот" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Не успеав да поставам лозинка за корисникот %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Корисникот %s не може да биде заклучен: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Корисникот %s не може да биде отклучен: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Корисникот %s не може да биде променет: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Групата %s не може да биде променета: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Нема стар домашен директориум за %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Нема нов домашен директориум за %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Грешка при преместување на %s до %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "не можам да ја отворам датотеката со конфигурација „%s“: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "не можам да ја отворам конфигурациската датотека „%s“: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "Конфигурациската датотека „%s“ е преголема" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "не можам да ја отворам конфигурациската датотека„%s“: %s" #: lib/error.c:62 msgid "success" msgstr "успех" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "модулот е оневозможен од конфигурацијата" #: lib/error.c:66 msgid "generic error" msgstr "генеричка грешка" #: lib/error.c:68 msgid "not enough privileges" msgstr "нема доволно привилегии" #: lib/error.c:70 msgid "access denied" msgstr "пристапот е одбиен" #: lib/error.c:72 msgid "bad user/group name" msgstr "лош корисник/име на група" #: lib/error.c:74 msgid "bad user/group id" msgstr "лош корисник/id на група" #: lib/error.c:76 msgid "user/group name in use" msgstr "корисник/име на група која што се користи" #: lib/error.c:78 msgid "user/group id in use" msgstr "корисник/id на група кое што се користи" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "грешка при манипулирање со атрибутите во терминалот" #: lib/error.c:82 msgid "error opening file" msgstr "грешка при отворање на датотека" #: lib/error.c:84 msgid "error locking file" msgstr "грешка при заклучување на датотека" #: lib/error.c:86 msgid "error statting file" msgstr "грешка при изјавување на датотека" #: lib/error.c:88 msgid "error reading file" msgstr "грешка при вчитување на датотека" #: lib/error.c:90 msgid "error writing to file" msgstr "грешка при запишување во датотека" #: lib/error.c:92 msgid "data not found in file" msgstr "податоците не се најдени во датотеката" #: lib/error.c:94 msgid "internal initialization error" msgstr "внатрешна грешка при иницијализација" #: lib/error.c:96 msgid "error loading module" msgstr "грешка при вчитување на модул" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "грешка при пронаоѓање на симбол во модул" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "библиотека/погрешна верзија на модул" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "отклучувањето ќе го испразни полето со лозинка" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "непозната грешка" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "нема функција за иницијализација %s во „%s“" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "погрешна верзија на модул во „%s“" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "модулот „%s“ не дефинира „%s“" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "грешка при читање на атрибутите во терминалот" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "грешка при подесување на атрибути за терминалот" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "грешка при читање од терминалот" #: lib/user.c:218 msgid "name is not set" msgstr "името не е поставено" #: lib/user.c:223 msgid "name is too short" msgstr "името е премногу кратко" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "името е предолго (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "името содржи знаци кои што не се ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "името содржи контролни знаци" #: lib/user.c:249 msgid "name contains whitespace" msgstr "името содржи празни места" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "името започнува со тире" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "името содржи валиден знак „%c“" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "корисникот %s нема UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "групата %s нема GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "корисникот %jd нема име" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "групата %jd нема име" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "корисникот нема ни име ни UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "групата нема ни име ни GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Невалидна стандардна вредност за полето %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "грешка при заклучувањето на датотеката: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "не можам да го добијам безбедносниот контекст на „%s“: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "не можам да го поставам основниот безбедносен контекст на „%s“: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "не можам да отворам „%s“: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "не можам да одредам „%s“: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "грешка при креирање на „%s“: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "резервната датотека „%s“ постои и не е регуларна датотека" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Грешка при менување на сопственикот на „%s“: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Грешка при читање на „%s“: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Грешка при запишување „%s“: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "погрешна големина на резервната датотека" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "не можам да прочитам од „%s“: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "записот веќе постои во датотеката" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "не можам да запишам во „%s“: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "објектот нема %s атрибут" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "грешка при кодирање на лозинката" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "не извршувам со суперкориснички привилегии" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "нема присутна сенка датотека -- оневозможувам" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "грешка при врзување со kadm5 серверот за сервисот „%s“ во realm „%s“: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "грешка при иницијализирање на kerberos библиотеката" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "грешка при парсирањето на корисничкото име „%s“ за kerberos." #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "структурата нема %s или %s атрибути" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "ентитетот нема %s или %s атрибути" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "ентитетот бил креиран без %s или %s атрибути" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "грешка при читање на информации за „%s“ од страна на kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "ентитетот нема %s атрибут" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "грешка при поставување на лозинката за „%s“" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos простор" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Принцип на админ за kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Лозинка за принцип на админ за kerberos" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "грешка при иницијализирање на ldap библиотеката" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "не можам да го поставам LDAP протоколот на верзијата %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "не можам да договорам TLS со LDAP серверот" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "не можам да се врзам за LDAP серверот" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "не можам да се врзам за LDAP серверот, првиот обид беше како „%s“: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "корисничкиот објект нема %s атрибут" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "корисничкиот објект беше креиран без „%s“" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "грешка при креирање на запис за LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "грешка при менување на записот водиректориумот на LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "грешка при реименувањето на записот за LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "објектот нема %s атрибути" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "грешка при отстранување на записот за LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "објектот нема %s атрибут" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "нема таков објект во директориумот на LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "не пронајдов атрибут„%s“" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "грешка при поставување на лозинка во директориумот на LDAP за %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Име на LDAP сервер" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "База за пребарување на LDAP " #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind лозинка" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL корисник" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL авторизација за корисник" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL грешка при креирање на корисник: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL грешка при отстранување на корисник: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "грешка при иницијализација на Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "грешка при креирање на домашен директориум за корисникот" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "грешка при отстранување на домашниот директориум за корисникот" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "грешка при преместувањето на домашниот директориум за корисникот" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Грешка при иницијализирање %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Невалиден ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Барам група со ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Барам група под името %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Барам корисник со ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Барам корисник под името %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Записот не е пронајден.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Појавувањата беа успешни.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Појавувањата не успеаа.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Стандардни кориснички објектни класи:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Стандардни кориснички имиња на атрибути:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Ги земам стандардните кориснички атрибути:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Ја копирам корисничката структура:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s нема домашен директориум.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Грешка при отстранување на %s: %s.\n" libuser-0.60~dfsg/po/Rules-quot0000644000175000017500000000340612226342570016521 0ustar tzafrirtzafrir# Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-create: $(MAKE) en@quot.po-update en@boldquot.po-create: $(MAKE) en@boldquot.po-update en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header libuser-0.60~dfsg/po/POTFILES.in0000644000175000017500000000071412226342567016300 0ustar tzafrirtzafrirapps/apputil.c apps/lchage.c apps/lchfn.c apps/lchsh.c apps/lgroupadd.c apps/lgroupdel.c apps/lgroupmod.c apps/lid.c apps/lnewusers.c apps/lpasswd.c apps/luseradd.c apps/luserdel.c apps/lusermod.c lib/common.c lib/config.c lib/error.c lib/misc.c lib/modules.c lib/prompt.c lib/user.c lib/user_private.h lib/util.c modules/files.c modules/krb5.c modules/ldap.c modules/sasldb.c python/admin.c samples/enum.c samples/lookup.c samples/prompt.c samples/testuser.c libuser-0.60~dfsg/po/mai.po0000644000175000017500000013013212226342567015627 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Sangeeta Kumari , 2009 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Maithili (http://www.transifex.com/projects/p/fedora/language/" "mai/)\n" "Language: mai\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "विशेषाधिकार हटाबै मे असफल.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "आंतरिक त्रुटि.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s क' पहचान केँ बदलब क' लेल %s प्राधिकृत नहि अछि\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "अज्ञात प्रयोक्ता संदर्भ" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd क' लेल पूर्वनिर्धारित संदर्भ व्यवस्थित नहि कए सकैत\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM प्रारंभिकीकरण त्रुटि.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s क' लेल सत्यापन असफल.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "आंतरिक PAM त्रुटि`%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "अज्ञात प्रयोक्ता सत्यापित.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "प्रयोक्ता बेमेल.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[विकल्प...] प्रयोक्ता" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "तर्ककेँ विश्लेषण करब मे त्रुटि: %s।\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "कोनो प्रयोक्ता नाम निर्दिष्ट नहि कएल गेल.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr " %s क' प्रारंभिकीकरण मे त्रुटि: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s प्रयोक्ता जीवंत नहि अछि.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "लेखा तालकित अछि.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "लेखा तालकित नहि अछि.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "न्यूनतम:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr " अधिकतम:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "चेतावनी:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "निष्क्रिय:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "कहियो नहि" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "अंतिम बदलाव:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "गुड़किल्ली अंत:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "गुड़किल्ली निष्क्रिय:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "लेखा अंत:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s क' लेल पुरान जानकारी रूपांतरित करब मे असफल: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[विकल्प...] [प्रयोक्ता]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "कोनो प्रयोक्ता नाम निर्दिष्ट नहि कएल गेल,uid %d क' लेल नाम नहि अछि.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s क' लेल फिंगर जानकारी बदलल जाए रहल अछि.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "पूरा नाम" #: apps/lchfn.c:146 msgid "Surname" msgstr "उपनाम" #: apps/lchfn.c:157 msgid "Given Name" msgstr "देल नाम" #: apps/lchfn.c:167 msgid "Office" msgstr "कार्यालय" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "कार्यालय दूरभाष" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "घर दूरभाष" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ई-डाक पता" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "फिंगर जानकारी नहि बदलि गेल: निवेश त्रुटि.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "फिंगर जानकारी बदलि गेल.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "फिंगर जानकारी नहि बदलि गेल: %s।\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s क' लेल शैल बदलि जाए रहल अछि.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "नव शैल" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "शैल नहि बदलि गेल:%s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "शैल बदलि गेल.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[विकल्प...] समूह" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "कोनो समूह नाम निर्दिष्ट नहि कएल गेल.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "अमान्य समूह ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "समूह निर्माण असफल: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "%s समूह उपस्थित नहि अछि.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "समूह %s केँ विलोपित नहि कए सकल: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L आओर -U दुनू निर्दिष्ट अछि. \n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s समूह क' लेल गुड़किल्ली जमावट असफल: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s समूह केँ तालकित नहि कएल जाए सकैत: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s समूह केँ अतालकित नहि कएल जाए सकैत: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s समूह केँ परिवर्तित नहि कएल जाए सकल: %ss\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s देखब मे त्रुटि: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "%s क' प्रयोग सँ कोनो समूह नाम निर्दिष्ट नहि कएल गेल.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "कोनो समूह नाम निर्दिष्ट नहि कएल गेल, gid %d क' लेल कोनो नाम नहि अछि.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "%s क' प्रयोग सँ कोनो प्रयोक्ता नाम निर्दिष्ट नहि कएल गेल.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[विकल्प...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' खोलब मे त्रुटि: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "`%s' क' लेल लेखा बनाबै मे त्रुटि: लाइन सही तरीका सँ संरूपित नहि कएल गेल.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "अमान्य प्रयोक्ता ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 सँ लेखा बनाबै क' लेल इंकार कए रहल अछि\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' क' लेल GID %jd सँ समूह बनाबै मे त्रुटि: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s क' लेल घर निर्देशिका बनाबै मे त्रुटि: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s क' लेल प्रारंभिक गुड़किल्ली जमा करब मे त्रुटि: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s क' लेल प्रयोक्ता लेखा बनाबै मे त्रुटि: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s क' लेल गुड़किल्ली बदलि जाए रहल अछि.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "नव गुड़किल्ली" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "नव गुड़किल्ली (निश्चित करू )" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "गुड़किल्ली भेट नहि रहल,पुन:प्रयास करू .\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "गुड़किल्ली बदलाव रद कएल गेल.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s प्रयोक्ता क' लेल गुड़किल्ली जमावट त्रुटि: %s।\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s समूह क' लेल गुड़किल्ली जमावट त्रुटि: %s।\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "गुड़किल्ली बदलि गेल.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd समूह उपस्थित नहि अछि.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "`%s' समूह बनाबै मे त्रुटि: %s.\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "लेखा बनावट असफल: %s।\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s बनाबै मे त्रुटि: %s।\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "प्रयोक्ता %s केँ विलोपित नहि कए सकल: %s।\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s क' gid अंक नहि अछि.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd क' सँग कोनो जीवंत समूह मोजुद अछि. नहि हटाए रहल अछि.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd समूह क' कोनो समूह नाम नहि अछि.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "समूह %s केँ विलोपित नहि कए सकल: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "प्रयोक्ता क' लेल घर निर्देशिका हटाबै मे त्रुटि" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s प्रयोक्ता क' लेल गुड़किल्ली जमावट असफल: %s।\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%s प्रयोक्ता केँ तालकित नहि कए सकल: %s।\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%s प्रयोक्ता केँ अतालकित नहि कए सकल: %s।\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "चेतावनी: ID %jd क' सँग समूह मोजुद नहि अछि.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s प्रयोक्ता केँ परिवर्तित नहि कए सकल: %s।\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%s समूह केँ परिवर्तित नहि कए सकल: %s।\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s क' कोनो पुरान घर निर्देशिका नहि अछि.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s क' कोनो नई घर निर्देशिका नहि अछि.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s सँ %s केँ चलाबै मे त्रुटि: %s।\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "`%s' विन्यास फाइल खोलि नहि सकल: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "`%s' विन्यास फाइल स्टेट नहि कए सकल: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "`%s' विन्यास फाइल काफी पैघ अछि" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "`%s' विन्यास फाइल पढ़ि नहि सकल: %s" #: lib/error.c:62 msgid "success" msgstr "सफल" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "विन्यास सँ माड्यूल असमर्थ कएल गेल" #: lib/error.c:66 msgid "generic error" msgstr "जेनेरिक त्रुटि" #: lib/error.c:68 msgid "not enough privileges" msgstr " अधिकार काफी नहि अछि" #: lib/error.c:70 msgid "access denied" msgstr "पहुँच निषेध" #: lib/error.c:72 msgid "bad user/group name" msgstr "बुरा प्रयोक्ता/समूह नाम" #: lib/error.c:74 msgid "bad user/group id" msgstr "बुरा प्रयोक्ता/समूह id" #: lib/error.c:76 msgid "user/group name in use" msgstr "प्रयोक्ता/समूह नाम प्रयोग मे अछि" #: lib/error.c:78 msgid "user/group id in use" msgstr "प्रयोक्ता/समूह id प्रयोग मे अछि" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "टर्मिनल गुण सँ छेड़छाड़ करब मे त्रुटि" #: lib/error.c:82 msgid "error opening file" msgstr "फाइल खुलने मे त्रुटि" #: lib/error.c:84 msgid "error locking file" msgstr "फाइल तालकित करब मे त्रुटि" #: lib/error.c:86 msgid "error statting file" msgstr "फाइल स्थाई करब मे त्रुटि" #: lib/error.c:88 msgid "error reading file" msgstr "फाइल पढ़बा मे त्रुटि" #: lib/error.c:90 msgid "error writing to file" msgstr "फाइल केँ लिखबा मे त्रुटि" #: lib/error.c:92 msgid "data not found in file" msgstr "फाइल मे आंकडा नहि भेटल" #: lib/error.c:94 msgid "internal initialization error" msgstr "आंतरिक प्रारंभिकीकरण त्रुटि" #: lib/error.c:96 msgid "error loading module" msgstr "माड्यूल भारित करब मे त्रुटि" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "माड्यूल मे प्रतीक वियोजन करब मे त्रुटि" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "लाइब्रेरी/माड्यूल संस्करण बेमेल" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "अतालाकित कएनाइ गुड़किल्ली क्षेत्र केँ खाली रखताह." #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "अज्ञात त्रुटि" #: lib/misc.c:240 msgid "invalid number" msgstr "अमान्य संख्या" #: lib/misc.c:254 msgid "invalid ID" msgstr "अमान्य ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "%s फलन प्रारंभिकीकरण, '%s' मे नहि अछि" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' मे माड्यूल संस्करण मेल नहि खाता" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' मौड्यूल `%s' केँ परिभाषित नहि करैत अछि" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "टर्मिनल गुण पढने मे त्रुटि" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "टर्मिनल गुण जमावट मे त्रुटि" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "टर्मिनल सँ पढ़बा मे त्रुटि" #: lib/user.c:218 msgid "name is not set" msgstr "नाम नहि जमा अछि" #: lib/user.c:223 msgid "name is too short" msgstr "नाम बहुत छोट अछि" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "नाम काफी नमहर अछि (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "नाम मे गैर-ASCII अक्षर समाहित अछि" #: lib/user.c:242 msgid "name contains control characters" msgstr "नाम मे नियंत्रण संप्रतीक समाहित अछि" #: lib/user.c:249 msgid "name contains whitespace" msgstr "नाम मे रिक्तस्थान समाहित अछि" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "नाम हाइफन सँ शुरू हाएत अछि" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "नाम मे अनुचित अक्षर `%c' समाहित अछि" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "प्रयोक्ता क' पास %s कोनो UID नहि अछि." #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "समूह क' पास %s कोनो GID नहि अछि" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "प्रयोक्ता %jd क' पास कोनो नाम नहि अछि" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "समूह %jd क' कोनो नाम नहि अछि" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "प्रयोक्ता क' पास कोनो नाम अथवा UID नहि अछि" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "समूह क' पास नहि तँ नाम अछि नहि GID." #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s क्षेत्र क' अवैध पूर्वनिर्धारित मान: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "%s फाइल तालकित करब मे त्रुटि" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "पूर्वनिर्धारित सुरक्षा संदर्भ व्यवस्थित पाबि नहि सकल: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' क' सुरक्षा संदर्भ पाबि नहि सकल: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "`%s' मे पूर्वनिर्धारित सुरक्षा संदर्भ व्यवस्थित नहि कए सकल: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' क' सुरक्षा संदर्भ निर्धारित नहि कए सकल: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' खोलि नहि सकल: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' stat नहि कए सकल: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' बनाबै मे त्रुटि: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "`%s' बैकअप फाइल जीवंत अछि आओर एकटा नियमित फाइल नहि अछि" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' क' स्वामित्व बदलाव मे त्रुटि: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' पढ़बा मे त्रुटि: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' लिखबा मे त्रुटि: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "बैकअप फाइल आकार मेल नहि खएलक" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s मान `%s': `:' नहि अनुमति भेटल" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' सँ पढ़ि नहि सकल: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "फाइल मे प्रविष्टि पहिने सँ अछि" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s' केँ लिखि नहि सकल: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "एंटिटी वस्तु क' %s गुण नहि अछि " #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' गोपित गुड़किल्ली मे नहि अनुमति भेटल" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "गुड़किल्ली गोपन मे त्रुटि " #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "सुपरयूजर विशेषाधिकार सँ निष्पादन नहि कए रहल अछि" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "कोनो शेडो फाइल नहि अछि -- असमर्थ कए रहल अछि" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "`%s' सेवा क' लेल `%s' क्षेत्र मे kadm5 सर्वर सँ संबंधित करब मे त्रुटि: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "करबरोस लाइब्रेरी प्रारंभिकीकरण त्रुटि" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "करबरोस क' लेल `%s' प्रयोक्ता नाम पद व्याख्या करब मे त्रुटि" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "एंटिटी संरचना मे %s अथवा %s गुण नहि अछि" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "एंटिटी मे %s अथवा %s गुण नहि अछि" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "एंटिटी क' बनावट %s अथवा %s गुण क' बिनु क' गई " #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "करबरोस सँ `%s' क' लेल जानकारी पढ़बा मे त्रुटि" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "एंटिटी मे %s गुण नहि अछि" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' क' लेल गुड़किल्ली जमावट त्रुटि" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "करबरोस क्षेत्र" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "करबरोस प्रधान प्रशासक" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "प्रधान प्रशासक क' लेल करबरोस गुड़किल्ली" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap क्रमादेश प्रारंभिकीकरण त्रुटि" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "%d संस्करण केँ LDAP प्रोटोकाल सेट नहि कए सकल " #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP सर्वर सँ TLS संबंधित नहि कए सकल" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP सर्वर सँ जुड नहि सकल" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP सर्वर सँ जुड नहि सकल, पहिने `%s' रूपेँ प्रयास करू : %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "प्रयोक्ता वस्तु क' %s गुण नहि छल" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "प्रयोक्ता वस्तु केँ `%s' क' बिनु बनाएल गेल छल" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP निर्देशिका प्रविष्टि बनाबै मे त्रुटि: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP निर्देशिका प्रविष्टि रूपांतरित करब मे त्रुटि: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP निर्देशिका प्रविष्टि क' पुनर्नामकरण मे त्रुटि: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "वस्तु मे %s गुण नहि छल" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP निर्देशिका प्रविष्टि केँ हटाबै मे त्रुटि: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "वस्तु मे %s गुण नहि अछि" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "असमर्थित गुड़किल्ली गोपनक योजना" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP निर्देशिका मे एहन किछु वस्तु नहि अछि" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "कोनो `%s' गुण नहि भेटल" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s क' लेल LDAP निर्देशिका मे गुड़किल्ली जमावट त्रुटि: %s " #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP सर्वर नाम " #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP खोज आधार DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP बंधन DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP बंधन गुड़किल्ली" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL प्रयोक्ता" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL प्राधिकरण प्रयोक्ता" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "%s प्रयोक्ता बनाबै मे सायरस SASL त्रुटि" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "%s प्रयोक्ता हटाबै मे सायरस SASL त्रुटि" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "%s सायरस SASL प्रारंभिकीकरण त्रुटि" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "प्रयोक्ता क' लेल घर निर्देशिका बनाबै मे त्रुटि" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "प्रयोक्ता क' लेल घर निर्देशिका हटाबै मे त्रुटि" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "प्रयोक्ता क' लेल घर निर्देशिका चलाबै मे त्रुटि" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s प्रारंभिकीकरण त्रुटि: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "अमान्य ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID %jd सँ समूह क' खोज भए रहल अछि.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s नामित समूह क' लेल खोज भए रहल अछि.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID %jd सँ प्रयोक्ता क' लेल खोज भए रहल अछि.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s नामित प्रयोक्ता क' लेल खोज भए रहल अछि.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "प्रविष्टि नहि भेटल.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "प्रांप्ट सफल भेल.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "प्रांप्ट बिफल भेल.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "पूर्वनिर्धारित प्रयोक्ता वस्तु वर्ग:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "पूर्वनिर्धारित प्रयोक्ता गुण नाम:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "पूर्वनिर्धारित प्रयोक्ता गुण ले रहल अछि:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "प्रयोक्ता संरचना प्रतिलिपि कए रहल अछि:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s क' कोनो घर निर्देशिका नहि अछि.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s हटाबै मे त्रुटि: %s।\n" libuser-0.60~dfsg/po/boldquot.sed0000644000175000017500000000033112226342570017036 0ustar tzafrirtzafrirs/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g s/“/“/g s/”/”/g s/‘/‘/g s/’/’/g libuser-0.60~dfsg/po/or.gmo0000644000175000017500000010124212226342604015635 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----N/)/0B0e0jN1W1]2Go2R2 3[3j4Q4I4 55e66j6'75/7ke7`7O288W:99-::SZ;a;o<N<k<@;=|=<>h=>>:???:@gz@p@uSAvAO@BsB\CaCsxC)C?DUVDVDIEaMEhEPF>iFrFGG!GHG,+H!XHXzH1H1IS7II.J>KJRJ\JF:KQK4K'L0L!OLqLL2L]L9MMXjNNv`OiOAPP[rQQ(QnRWRhR[FSS::T7uTT_UtXQXYWY/qYVYMYhFZTZA[1F[x[f[[#\!4\!V\hx\W\9]Z]61^0h^I^i^M__b`_aaaxa{kbbl{c?c<(dede?eCe@fVXfJfzfsugDg}.hhO\ii3joj6k}k{7lSlGmQOmemnn<Goo7pLKpqpi q}tqqrpsnssct\u=_uu;uIucCvVvv,w,Hwuw_w\wrRxUxryiypySiz4zNz:A{y|{A{o8|\|u}E{}}@^~@~ ~m~Xra>^IcMK\XRO>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Oriya (http://www.transifex.com/projects/p/fedora/language/or/) Language: or MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s ର ଗୋଟିଏ ଜି.ଆଇ.ଡି. ନମ୍ବର ନାହିଁ %s ସ୍ଥିତବାନ ନୁହଁ %s ଟି ବୈଧିକ୍ରୁତ ନୁହେଁ %s finger ସୂଚନା କୁ ପରିବର୍ତନ କରିବା ପାଇଁ %s ମୂଲ୍ୟ `%s': `:' ଅନୁମୋଦିତ ନୁହଁହିସାବ ଖାତା ଟି ଅକ୍ରୁତ କାର୍ଯ୍ଯ ହୋଇ ଯାଏ: %s ହିସାବ ଖାତା ର ସୃଷ୍ଟି କରିବା ବିଫଳ ହୋଇ ଗଲା: %s ହିସାବ ଖାତା ଟି ଅପରିବର୍ତ୍ତନୀୟ ଅଛି ହିସାବ ଖାତା ଟି ଅପରିବର୍ତ୍ତନୀୟ ନାହିଁ %s ପାଇଁ ବୈଧିକରଣ ବିଫଳ ହୋଇଗଲା ଉଭୟ -L ଏବଂ -U କୁ ଉଲ୍ଲଖିତ କରା ଯାଇଛି /etc/passwd ପ୍ରସଙ୍ଗ ପାଇଁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ପ୍ରସଙ୍ଗ କୁ ସେଟ କରି ପାରିବ ନାହିଁ %s ପାଇଁ finger ସୂଚନା କୁ ପରିବର୍ତନ କରୁଅଛି %s ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ କୁ ପରିବର୍ତନ କରୁଅଛି %s ପାଇଁ ଆବରଣ କୁ ପରିବର୍ତନ କରୁଅଛି ଚାଳକ ର ସଂରଚନା କୁ ନକଲ କରୁଅଛି: ଚାଳକ କୁ ସୃଷ୍ଟି କରିବା ସମୟରେ ସାଇରସ୍ ଏସ୍.ଏ.ଏସ୍.ଏଲ. ତୃଟି: %sଚାଳକ କୁ ଅପସାରଣ କରିବା ସମୟରେ ସାଇରସ୍ ଏସ୍.ଏ.ଏସ୍.ଏଲ. ତୃଟି: %sପୂର୍ବନିର୍ଦ୍ଧାରିତ ଚାଳକ ର ଗୁଣ ର ନାମ ମାନ: ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଚାଳକ ର ବସ୍ତୁ ର ଶ୍ରେଣୀ: ଇ-ଡାକ ଠିକଣା ମାନଭରଣ ଟି ମିଳିଲା ନାହିଁ `%s' ର ଧାରା ପରିବର୍ତ୍ତନ କରିବା ସମୟରେ ତ୍ରୁଟି: %s`%s' ର ମାଲିକ କୁ ପରିବର୍ତନ କରିବା ରେ ତୃଟି: %s%s କୁ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s. `%s' ପାଇଁ ହିସାବ ଖାତା ଖୋଲିବା ସମୟରେ ତୃଟି: ଲାଇନ ଟି ସଠିକ ଭାବ ରେ ସଜା ଯାଇ ନାହିଁ `%s' ସମୂହ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s `%s' ପାଇଁ %jd ଜି.ଆଇ.ଡି. ସହିତ ଗୋଟିଏ ସମୂହ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s %s ପାଇଁ ଗୋଟିଏ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s %s ପାଇଁ ଗୋଟିଏ ଚାଳକ ହିସାବ ଖାତା ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s %s ର ପ୍ରାରମ୍ଭିକୀକରଣ ସମୟରେ ତୃଟି: %s %s କୁ ପ୍ରାରମ୍ଭିକରଣ କରିବା ସମୟରେ ତୃଟି: %s ପି.ଏ.ଏମ୍. କୁ ପ୍ରାରମ୍ଭିକରଣ କରିବା ସମୟରେ ତୃଟି %s କୁ ଅବଲୋକନ କରିବା ସମୟରେ ତୃଟି: %s %s ରୁ %s କୁ ସ୍ଥାନାସ୍ତରିତ କରିବା ସମୟରେ ତୃଟି: %s `%s' କୁ ଖୋଲିବା ସମୟରେ ତୃଟି: %s ସ୍ବତନ୍ତ୍ରଚର ମାନଙ୍କୁ ବିଶ୍ଳେଷଣ କରିବା ସମୟରେ ତୃଟି: %s `%s' କୁ ପଢିବା ସମୟରେ ତୃଟି: %sଫାଇଲ ବର୍ଣ୍ଣନାକାରୀ %d ରୁ ପଢିବାରେ ତ୍ରୁଟି। %s ପାଇଁ ପ୍ରାରମ୍ଭିକ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ୍ କରିବା ସମୟରେ ତୃଟି: %s %s ସମୂହ ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ସମୟରେ ତୃଟି: %s %s ଚାଳକ ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ସମୟରେ ତୃଟି: %s `%s' କୁ ଲେଖିବା ସମୟରେ ତୃଟି: %sବିଶେଷ ଆକର୍ଷଣ କୁ ତ୍ଯାଗ କରିବା ସମୟରେ ତୃଟି %s ପାଇଁ aging ସୂଚନା କୁ ରୂପାନ୍ତରଣ କରିବାକୁ ଅସଫଳ: %s %s ସମୂହ ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ରେ ଅସଫଳ: %s %s ଚାଳକ ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ରେ ବିଫଳ: %s Finger ସୂଚନା ଟି ପରିବର୍ତିତ ହୋଇ ଗଲା Finger ସୂଚନା ଟି ପରିବର୍ତିତ ହୋଇ ନାହିଁ: ନିବେଶ ତୃଟି Finger ସୂଚନା ଟି ପରିବର୍ତିତ ହେଲା ନାହିଁ: %s ପୂରା ନାମପୂର୍ବନିର୍ଦ୍ଧାରିତ ଚାଳକ ର ଗୁଣ ମାନଙ୍କୁ ପାଉଛି: ଦିଆ ଯାଇଥିବା ନାମ%jd ସମୂହ ଟି ଅବସ୍ଥିତ ନୁହେଁ %s ସମୂହ କୁ ଅପସାରଣ କରି ହେଲା ନାହିଁ: %s %s ସମୂହ କୁ ଅପସାରଣ କରି ହେଲା ନାହିଁ: %s. %s ସମୂହ ଟି ଲକ କରି ହେଲା ନାହିଁ: %s %s ସମୂହ ଟି ରୂପାନ୍ତରିତ କରି ହେଲା ନାହିଁ: %s %s ସମୂହ ଟି ରୂପାନ୍ତରିତ ହୋଇ ପାରିଲା ନାହିଁ: %s %s ସମୂହ ଟି ଅନ-ଲକ କରି ହେଲା ନାହିଁ: %s %s ସମୂହ ଟି ଅବସ୍ଥିତ ନାହିଁ ସମୂହ କୁ ସୃଷ୍ଟି କରିବା କାର୍ଯ୍ଯ ବିଫଳ ହୋଇ ଗଲା: %s %jd ଜି.ଆଇ.ଡି. ଥିବା କୌଣସି ସମୂହ ମାନଙ୍କ ର କୌଣସି ସମୂହ ନାମ ନାହିଁ ଘର ଫୋନନିଷ୍କ୍ରିୟ: %ld ଆଭ୍ଯନ୍ତରୀଣ ପି.ଏ.ଏମ୍. ତୃଟି `%s'. ଆଭ୍ଯନ୍ତରୀଣ ତୃଟି ଅବୈଧ %s ପରିଚୟ %s ର ଅବୈଧ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ମୂଲ୍ଯ: %sସମୂହ ର ଅବୈଧ ପରିଚୟ %s ଚାଳକ ର ଅବୈଧ ପରିଚୟ %s କେର୍ବେରୋଶ ପ୍ରଶାସନୀୟ କତ୍ରୁପକ୍ଷପ୍ରଶାସନୀୟ କତ୍ରୁପକ୍ଷ ଙ୍କ ପାଇଁ କେର୍ବେରୋଶ ପ୍ରବେଶ ସଙ୍କେତକେର୍ବେରୋଶ ଅଧିକାରଡି.ଏନ୍. ବନ୍ଧିତ ଏଲ.ଡି.ଏ.ପି.ପ୍ରବେଶ ସଙ୍କେତ ବନ୍ଧିତ ଏଲ.ଡି.ଏ.ପି.ଏଲ.ଡି.ଏ.ପି. ଏସ୍.ଏ.ଏସ୍.ଏଲ. ବୈଧିକରଣ ଚାଳକଏଲ.ଡି.ଏ.ପି. ଏସ୍.ଏ.ଏସ୍.ଏଲ. ଚାଳକଡି.ଏନ୍. ଆଧାରିତ ଏଲ.ଡି.ଏ.ପି. ସନ୍ଧାନଏଲ.ଡି.ଏ.ପି. ସେବକ ର ନାମଶେଷ ପରିବର୍ତନ: %s ସର୍ବାଧିକ: %ld ସର୍ବନିମ୍ନ: %ld କେବେ ନୁହେଁନୂତନ ଆବରଣନୂତନ ପ୍ରବେଶ ସଙ୍କେତନୂତନ ପ୍ରବେଶ ସଙ୍କେତ (ନିଶ୍ଚିତ କରନ୍ତୁ)କୌଣସି ସମୂହ ନାମ ଉଲ୍ଲଖିତ ହୋଇ ନାହିଁ, %d ୟୁ.ଆଇ.ଡି. ପାଇଁ କୌଣସି ନାମ ନାହିଁ %s କୁ ବ୍ଯବହାର କରି, କୌଣସି ସମୂହ ନାମ ଉଲ୍ଲେଖିତ ହୋଇ ନାହିଁ କୌଣସି ସମୂହ ନାମ ଉଲ୍ଲଖିତ ହୋଇ ନାହିଁ %jd ଜି.ଆଇ.ଡି. ଥିବା କୌଣସି ସମୂହ ଅବସ୍ଥିତ ନାହିଁ, ଅପସ୍ରୁତ ହେଉ ନାହିଁ %s ପାଇଁ କୌଣସି ନୂତନ ମୂଳସ୍ଥାନ ଡିରେକ୍ଟୋରି ନାହିଁ %s ପାଇଁ କୌଣସି ମୂଳସ୍ଥାନ ଡିରେକ୍ଟୋରି ନାହିଁ କୌଣସି ଚାଳକ ନାମ ଉଲ୍ଲଖିତ ହୋଇ ନାହିଁ, %d ୟୁ.ଆଇ.ଡି. ପାଇଁ କୌଣସି ନାମ ନାହିଁ %s କୁ ବ୍ଯବହାର କରି, କୌଣସି ଚାଳକ ନାମ ଉଲ୍ଲେଖିତ ହୋଇ ନାହିଁ କୌଣସି ଚାଳକ ନାମ ଉଲ୍ଲେଖିତ ହୋଇ ନାହିଁ କାର୍ଯ୍ଯାଳୟକାର୍ଯ୍ଯାଳୟ ଫୋନପ୍ରବେଶ ସଙ୍କେତ ଟି ଅକ୍ରୁତ କାର୍ଯ୍ଯ ହୋଇ ଯାଏ: %s ପ୍ରବେଶ ସଙ୍କେତ ଟି ନିଷ୍କ୍ରିୟ ଅଟେ: %s ପ୍ରବେଶ ସଙ୍କେତ ର ପରିବର୍ତନ ବାତିଲ ହୋଇ ଗଲା ପ୍ରବେଶ ସଙ୍କେତ ଟି ପରବର୍ତିତ ହୋଇ ଗଲା ପ୍ରବେଶ ସଙ୍କେତ ଟି ମିଶ୍ୁ ନାହିଁ, ପୁନର୍ବାର ପ୍ରଚେଷ୍ଟା କରନ୍ତୁ ପ୍ରୋତ୍ସାହନ ବିଫଳ ହେଲା ପ୍ରୋତ୍ସାହନ ସଫଳ ହେଲା ୟୁ.ଆଇ.ଡି. ୦ ସହିତ ଗୋଟିଏ ହିସାବ ଖାତା ସୃଷ୍ଟି କରିବା ପାଇଁ ଅସ୍ବୀକାର କରୁଅଛି ବିପଦ ଜନକ ହୋମ ଡିରେକ୍ଟୋରୀ `%s' କୁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ବ୍ୟବହାର କରିବା ପାଇଁ ମନା କରୁଅଛିବିପଦ ଜନକ ହୋମ ଡିରେକ୍ଟୋରୀ `%s' କୁ %s ପାଇଁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ବ୍ୟବହାର କରିବା ପାଇଁ ମନା କରୁଅଛି %s ନାମ ବିଶିଷ୍ଟ ସମୂହ କୁ ଖୋଜୁଅଛି %jd ପରିଚୟ ବିଶିଷ୍ଟ ସମୂହ କୁ ଖୋଜୁଅଛି %s ନାମ ବିଶିଷ୍ଟ ଚାଳକ କୁ ଖୋଜୁଅଛି %jd ପରିଚୟ ବିଶିଷ୍ଟ ଚାଳକ କୁ ଖୋଜୁଅଛି ଆବରଣ ପରିବର୍ତିତ ହୋଇ ଗଲା ଆବରଣ ଟି ପରିବର୍ତିତ ହେଲା ନାହିଁ: %s କୁଳ ନାମଅଜଣା ଚାଳକ ଟି ବୈଧିକ୍ରୁତ ହୋଇ ଯାଇଛି ଅଜଣା ଚାଳକ ପ୍ରସଙ୍ଗ%s ଚାଳକ କୁ ଅପସାରଣ କରି ହେଲା ନାହିଁ: %s. %s ଚାଳକ କୁ ଲକ୍ କରି ହେଲା ନାହିଁ: %s %s ଚାଳକ ଟି ରୂପାନ୍ତରିତ ହୋଇ ପାରିଲା ନାହିଁ: %s %s ଚାଳକ କୁ ଆନ-ଲକ୍ କରି ହେଲା ନାହିଁ: %s %s ଚାଳକ ଟିି ଅବସ୍ଥିତ ନୁହେଁ ଚାଳକ ଟି ମିଶୁ ନାହିଁ ଚେତାବନୀ: %ld ଚେତାବନୀ: ID %jd ସହିତ ସମୂହ ଟି ଅବସ୍ଥିତ ନୁହେଁ [ପସନ୍ଦ...][ପସନ୍ଦ...] [ଚାଳକ][ପସନ୍ଦ...] ସମୂହ[ପସନ୍ଦ...] ଚାଳକ`:' ସଂଗୁପ୍ତ ପ୍ରବେଶ ସଂକେତରେ ଅନୁମୋଦିତ ନୁହଁପ୍ରବେଶାନୁମତି ଅସ୍ବୀକ୍ରୁତ ହୋଇ ଗଲା`%s' ନକଲ ସଂରକ୍ଷଣ ଫାଇଲ ଅବସ୍ଥିତ ଅଛି ଏବଂ ଏହା ଏକ ନିୟମିତ ଫାଇଲ ନୁହେଁନକଲ ସଂରକ୍ଷଣ ଫାଇଲ ର ଆକାର ମିଶୁ ନାହିଁଖରାପ ଚାଳକ/ସମୂହ ପରିଚୟଖରାପ ଚାଳକ/ସମୂହ ନାମ`%s' ବିନ୍ଯାସ ଫାଇଲ ଟି ଖୁବ ବଡ ଅଟେଏଲ.ଡି.ଏ.ପି. ସେବକ ସହିତ ବାନ୍ଧି ପାରିଲା ନାହିଁଏଲ.ଡି.ଏ.ପି. ସେବକ ସହିତ ବାନ୍ଧି ପାରିଲା ନାହିଁ, `%s' ରୂପ ରେ ପ୍ରଥମ ପ୍ରଚେଷ୍ଟା: %sଟି.ଏଲ.ଏସ୍. କୁ ଏଲ.ଡି.ଏ.ପି. ସେବକ ସହିତ ଆଦାନପ୍ରଦାନ କରି ପାରିଲା ନାହିଁ`%s' ବିନ୍ଯାସ ଫାଇଲ କୁ ଖୋଲି ପାରିଲା ନାହିଁ: %s`%s' ବିନ୍ଯାସ ଫାଇଲ କୁ ପଢି ପାରିଲା ନାହିଁ: %sଏଲ.ଡି.ଏ.ପି. ପ୍ରୋଟୋକଲ କୁ %d ସଂସ୍କରଣ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ`%s' ବିନ୍ଯାସ ଫାଇଲ କୁ ପ୍ରାରମ୍ଭ କରି ପାରିଲା ନାହିଁ: %s`%s' ର ସୁରକ୍ଷା ପ୍ରସଙ୍ଗ କୁ ସ୍ଥିର କରିପାରିଲା ନାହିଁ: %sପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ସୁରକ୍ଷା ପ୍ରସଙ୍ଗକୁ ପାଇପାରିଲା ନାହିଁ: %s`%s' ର ସୁରକ୍ଷା ପ୍ରସଙ୍ଗ କୁ ପାଇ ପାରିଲା ନାହିଁ: %s`%s' କୁ ଖୋଲି ପାରିଲା ନାହିଁ: %s`%s' ରୁ ପଢି ପାରିଲା ନାହିଁ: %sପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ସୁରକ୍ଷା ପ୍ରସଙ୍ଗ କୁ `%s' କୁ ସେଟ କରି ପାରିଲା ନାହିଁ: %s`%s' ଉପରେ ଷ୍ଟାର୍ଟ କୁ କାର୍ଯ୍ଯକାରି କରି ପାରିଲା ନାହିଁ: %s`%s' ରେ ଲେଖି ପାରିଲା ନାହିଁ: %sଫାଇଲ ରେ ତଥ୍ଯ ମିଳିଲା ନାହିଁବସ୍ତୁ ର କୌଣସି %s ଗୁଣ ନାହିଁବସ୍ତୁ ର କୌଣସି %s କିମ୍ବା %s ଗୁଣ ନାହିଁବସ୍ତୁ ର %s ଭଳି କୌଣସି ଗୁଣ ନାହିଁବସ୍ତୁ ର ସଂରଚନା ରେ କୌଣସି %s କିମ୍ବା %s ଗୁଣ ମାନ ନାହିଁବସ୍ତୁ ଟି %s କିମ୍ବା %s ଗୁଣ ବିନା ସୃଷ୍ଟି କରା ଯାଇଛିଫାଇଲ ରେ ଭରଣ ପୂର୍ବ ରୁ ରହିଛିଫାଇଲରେ ଦ୍ୱନ୍ଦମୟ ନାମବିଶିଷ୍ଟ ଭରଣ ପୂର୍ବରୁ ରହିଅଛି`%s' ସେବା ଏବଂ `%s' ଅଧିକାର ପାଇଁ କେ.ଏ.ଡି.ଏମ.୫ ସେବକ ସହିତ ସଂଯୋଗ କରିବା ରେ ତୃଟି: %s`%s' କୁ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %sଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଭରଣ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %sଚାଳକ ପାଇଁ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟିପ୍ରବେଶ ସଙ୍କେତ କୁ ସଂଗୁପ୍ତ କରିବା ସମୟରେ ତୃଟିସାଇରସ୍ ଏସ୍.ଏ.ଏସ୍.ଏଲ. ର ପ୍ରାରମ୍ଭିକୀକରଣ ସମୟରେ ତୃଟି: %sକେର୍ବେରୋଶ ପାଠାଗାର ର ପ୍ରାରମ୍ଭିକୀକରଣ ସମୟରେ ତୃଟିଏଲ.ଡି.ଏ.ପି. ପାଠାଗାର ର ପ୍ରାରମ୍ଭିକୀକରଣ ସମୟରେ ତୃଟିଏକକାଂଶ କୁ ଧାରଣ କରିବା ସମୟରେ ତୃଟିଫାଇଲ କୁ ଲକ କରିବା ସମୟରେ ତୃଟିଫାଇଲ କୁ ଲକ କରୁଥିବା ସମୟରେ ତୃଟି: %sଟର୍ମିନାଲ ର ଗୁଣ ମାନଙ୍କୁ ପ୍ରକଳିତ କରୁଅଛିଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଭରଣ କୁ ରୂପାନ୍ତରଣ କରିବା ସମୟରେ ତୃଟି: %sଚାଳକ ପାଇଁ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି କୁ ସ୍ଥାନାନ୍ତରଣ କରିବା ସମୟରେ ତୃଟିଫାଇଲ ଖୋଲିବା ସମୟରେ ତୃଟିକେର୍ବେରୋଶ ପାଇଁ `%s' ଚାଳକ ମାନ ର ବିଶ୍ଳେଷଣ କରିବା ସମୟରେ ତୃଟିଫାଇଲ ର ପଠନ ସମୟରେ ତୃଟିଟର୍ମିନାଲ ରୁ ପଢିବା ସମୟରେ ତୃଟି`%s' ପାଇଁ କେର୍ବେରୋଶ ରୁ ସୂଚନା ପଢିବା ସମୟରେ ତୃଟିଟର୍ମିନାଲ ର ଗୁଣ ମାନଙ୍କୁ ପଢିବା ସମୟରେ ତୃଟିଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଭରଣ କୁ ଅପସାରଣ ସମୟରେ ତୃଟି: %sଚାଳକ ପାଇଁ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି କୁ ଅପସାରଣ କରିବା ସମୟରେ ତୃଟିଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଭରଣ ର ନାମ ବଦଳାଇବା ସମୟରେ ତୃଟି: %sଏକକାଂଶ ରେ ପ୍ରତୀକ ର ସମାଧାନ କରିବା ସମୟରେ ତୃଟି`%s' ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ସମୟରେ ତୃଟିଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି %s ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ସମୟରେ ତୃଟି: %sଟର୍ମିନାଲ ର ଗୁଣ ମାନଙ୍କୁ ସେଟ ସମୟରେ ତୃଟିଫାଇଲ ଉପରେ ଷ୍ଟାର୍ଟ କରିବା ସମୟରେ ତୃଟିଫାଇଲ େର ଲିଖନ ସମୟରେ ତୃଟିବର୍ଗୀୟ ତୃଟି%jd ନାମ ର କୌଣସି ନାମ ନାହିଁ%s ସମୂହ ର କୌଣସି ୟୁ.ଆଇ.ଡି. ନାହିଁସମୂହ ର କୌଣସି ନାମ କିମ୍ବା ୟୁ.ଆଇ.ଡି. ନାହିଁଆଭ୍ଯନ୍ତରୀଣ ପ୍ରାରମ୍ଭିକୀକରଣ ତୃଟିଅବୈଧ ପରିଚୟଅବୈଧ ବସ୍ତୁ ମୂଲ୍ୟଅବୈଧ ଏକକାଂଶ ଯୁଗଳଅବୈଧ ସଂଖ୍ୟାପାଠାଗାର/ଏକକାଂଶ ର ସଂସ୍କରଣ ମିଶୁ ନାହିଁ`%s' ଏକକାଂଶ ଟି `%s' କୁ ବ୍ଯାଖ୍ଯା କରୁନାହିଁଏକକାଂଶ ଟି ବିନ୍ଯାସ ଦ୍ବାରା ନିଷ୍କ୍ରିୟ ହୋଇ ଗଲା`%s' ରେ ଏକକାଂଶ ର ସଂସ୍କରଣ ମିଶୁ ନାହିଁନାମ ଟି ନିୟନ୍ତ୍ରଣ ଅକ୍ଷର ମାନଙ୍କୁ ଧାରଣ କରିଅଛିନାମ ଟି ଗୋଟିଏ ଅବୈଧ ଅକ୍ଷର `%c' କୁ ଧାରଣ କରିଅଛିନାମ ଟି ନନ୍-ଆସ୍କି ଅକ୍ଷର ମାନଙ୍କୁ ଧାରଣ କରିଅଛିନାମ ଟି ହ୍ବାଇଟ-ସ୍ପେଶ ଧାରଣ କରିଅଛିନାମ ଟି ସେଟ ହୋଇ ନାହିଁନାମ ଟି ଅତ୍ଯଧିକ ବ୍ରୁହତ ଅଟେ (%zu > %d)ନାମ ଟି ଅତି କ୍ଷୁଦ୍ର ଅଟେନାମ ଟି ଗୋଟିଏ ସଂଯୋଜକ ଚିହ୍ନ ଦ୍ବାରା ଆରମ୍ଭ ହୋଇଥାଏକୌଣସି `%s' ଗୁଣ ମିଳିଲା ନାହିଁକୌଣସି ପ୍ରାରମ୍ଭିକୀକରଣ %s କାର୍ଯ୍ଯ `%s' ରେ ନାହିଁକୌଣସି ଛାୟା ଫାଇଲ ଉପସ୍ଥିତ ନାହିଁ -- disablingଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଏଭଳି କୌଣସି ବସ୍ତୁ ନାହିଁଯଥେଷ୍ଟ ବିଶେଷ ଆକର୍ଷଣ ନାହିଁପ୍ରମୂଖ ଚାଳକ ର ବିଶେଷ ଆକର୍ଷଣ ମାନଙ୍କ ସହିତ ନିଷ୍ପାଦିତ ହେଉ ନାହିଁବସ୍ତୁ ର କୌଣସି %s ଗୁଣ ନାହିଁବସ୍ତୁ ର କୌଣସି %s ଗୁଣ ନାହିଁସଫଳ`%s' ଏବଂ `%s' ଏକକାଂଶଗୁଡ଼ିକୁ ଯୋଡ଼ିପାରିବେ ନାହିଁଅଜଣା ତୃଟିଆଲ-ଲକ କଲେ ଏହା ପ୍ରବେଶ ସଙ୍କେତ ର କ୍ଷେତ୍ର କୁ ଖାଲି କରି ଦେବଅସମର୍ଥିତ ପ୍ରବେଶ ସଂକେତ ସଂଗୁପ୍ତ ଯୋଜନା%jd ଚାଳକ ର କୌଣସି ନାମ ନାହିଁ%s ଚାଳକ ର କୌଣସି ୟୁ.ଆଇ.ଡି. ନାହିଁଚାଳକ ର କୌଣସି ନାମ କିମ୍ବା ୟୁ.ଆଇ.ଡି. ନାହିଁଚାଳକ ବସ୍ତୁ ର କୌଣସି %s ଗୁଣ ନାହିଁଚାଳକ ବସ୍ତୁ ଟି %s ବିନା ସୃଷ୍ଟି ହୋଇଥିଲାଚାଳକ/ସମୂହ ପରିଚୟ ବ୍ଯବହ୍ରୁତ ହେଉଅଛିଚାଳକ/ସମୂହ ନାମ ବ୍ଯବହ୍ରୁତ ହେଉଅଛିlibuser-0.60~dfsg/po/sr.po0000644000175000017500000012034612226342570015505 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Nikola Pajtic , 2008 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/fedora/language/" "sr/)\n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Неуспело одбацивање повластица.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Унутрашња грешка.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s није овлашћен да мења finger податке за %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Непознат кориснички контекст" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Не могу да поставим подразумевани контекст за /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Грешка при иницијализацији PAM-а.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Неуспела аутентификација за %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Унутрашња PAM грешка „%s“.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Аутентификован непознат корисник.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Неслагање корисника.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ОПЦИЈА...] корисник" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Грешка при тумачењу аргумената: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Није наведено корисничко име.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Грешка при иницијализацији %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Корисник %s не постоји.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Налог је закључан.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Налог није закључан.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Најмањи:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Највећи:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Упозорење:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Неактивно:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Никада" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Последња промена:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Лозинка истиче:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Лозинка неактивна:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Налог истиче:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Неуспела измена застарелих података за %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ОПЦИЈА...] [корисник]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Није наведено корисничко име, нема имена за uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Мењам finger податке за %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Пуно име" #: apps/lchfn.c:146 msgid "Surname" msgstr "Презиме" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Крштено име" #: apps/lchfn.c:167 msgid "Office" msgstr "Канцеларија" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Канцеларијски телефон" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Кућни телефон" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Адреса е-поште" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger подаци нису промењени: грешка у уносу.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger подаци су промењени.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger подаци нису промењени: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Мењам љуску за %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Нова љуска" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Љуска није промењена: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Љуска је промењена.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ОПЦИЈА...] група" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Није наведено име групе.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Неисправан ID групе %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Неуспело прављење групе: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Група %s не постоји.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Група %s не може бити избрисана: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "И -L и -U су наведени.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Неуспело постављање лозинке за групу %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Група %s не може бити закључана: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Група %s не може бити откључана: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Група %s не може бити измењена: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Грешка при потрази за %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Није наведено име групе, користим %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Није наведено име групе, нема имена за gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Није наведено корисничко име, користим %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s не постоји\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ОПЦИЈА...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Грешка при отварању „%s“: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Грешка при прављењу налога за „%s“: неправилно обликована линија.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Неисправан кориснички ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Одбијам да направим налог са UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Грешка при прављењу групе „%s“ са GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "Одбијам да подразумевано употребим опасан директоријум „%s“ за %s\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Грешка при прављењу личног директоријума за %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Грешка при постављању лозинке за %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Грешка при прављењу корисничког налога за %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Мењам лозинку за %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Нова лозинка" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Нова лозинка (потврда)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Лозинке се не слажу, покушајте поново.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Промена лозинке је отказана.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Грешка при постављању лозинке за корисника %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Грешка при постављању лозинке за групу %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Лозинка је промењена.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Група %jd не постоји\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Грешка при прављењу групе „%s“: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Неуспело прављење налога: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Грешка при прављењу %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Корисник %s не може да буде обрисан: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s није имала gid број.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Не постоји група са GID %jd, не уклањам.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Група са GID %jd није имала име групе.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Група %s не може да буде обрисана: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "грешка при уклањању личног директоријума за корисника" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Неуспело постављање лозинке за корисника %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Корисник %s не може да буде закључан: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Корисник %s не може да буде откључан: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Упозорење: Група са ID-ом %jd не постоји\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Корисник %s не може да буде измењен: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Група %s не може да буде измењена: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Нема старог личног директоријума за %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Нема новог личног директоријума за %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Грешка при премештању %s у %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "не могу да отворим датотеку подешавања „%s“: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "не могу да извршим stat над датотеком подешавања „%s“: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "датотека подешавања „%s“ је превелика" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "не могу да прочитам датотеку подешавања „%s“: %s" #: lib/error.c:62 msgid "success" msgstr "успех" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "модул искључен у подешавањима" #: lib/error.c:66 msgid "generic error" msgstr "уопштена грешка" #: lib/error.c:68 msgid "not enough privileges" msgstr "нема довољно повластица" #: lib/error.c:70 msgid "access denied" msgstr "приступ одбијен" #: lib/error.c:72 msgid "bad user/group name" msgstr "лоше име корисника/групе" #: lib/error.c:74 msgid "bad user/group id" msgstr "лош id корисника/групе" #: lib/error.c:76 msgid "user/group name in use" msgstr "име корисника/групе је у употреби" #: lib/error.c:78 msgid "user/group id in use" msgstr "id корисника/групе је у употреби" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "грешка при удешавању својстава терминала" #: lib/error.c:82 msgid "error opening file" msgstr "грешка при отварању датотеке" #: lib/error.c:84 msgid "error locking file" msgstr "грешка при закључавању датотеке" #: lib/error.c:86 msgid "error statting file" msgstr "грешка при извршавању stat над датотеком" #: lib/error.c:88 msgid "error reading file" msgstr "грешка при читању датотеке" #: lib/error.c:90 msgid "error writing to file" msgstr "грешка при упису у датотеку" #: lib/error.c:92 msgid "data not found in file" msgstr "подаци нису нађени у датотеци" #: lib/error.c:94 msgid "internal initialization error" msgstr "унутрашња грешка иницијализације" #: lib/error.c:96 msgid "error loading module" msgstr "грешка при учитавању модула" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "грешка при разрешавању симбола у модулу" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "неслагање верзије библиотеке/модула" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "откључавање би учинило поље лозинке празним" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "непозната грешка" #: lib/misc.c:240 msgid "invalid number" msgstr "неисправан број" #: lib/misc.c:254 msgid "invalid ID" msgstr "неисправан ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "нема функције иницијализације %s у „%s“" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "неслагање верзије модула у „%s“" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "модул „%s“ не дефинише „%s“" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "грешка при читању својстава терминала" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "грешка при постављању својстава терминала" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "грешка при читању са терминала" #: lib/user.c:218 msgid "name is not set" msgstr "име није постављено" #: lib/user.c:223 msgid "name is too short" msgstr "име је прекратко" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "име је предугачко (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "име садржи не-ASCII знакове" #: lib/user.c:242 msgid "name contains control characters" msgstr "име садржи контролне знакове" #: lib/user.c:249 msgid "name contains whitespace" msgstr "име садржи размак" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "име почиње цртицом" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "име садржи неисправан знак „%c“" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "корисник %s нема UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "група %s нема GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "корисник %jd нема име" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "група %jd нема име" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "корисник нема ни име нити UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "група нема ни име нити GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Одбијам да подразумевано употребим опасан директоријум „%s“" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Неисправна подразумевана вредност за поље %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "грешка при закључавању датотеке: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "не могу да добавим подразумевани безбедносни контекст: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "не могу да добавим безбедносни контекст за „%s“: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "не могу да поставим подразумевани безбедносни контекст на „%s“: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "не могу да утврдим безбедносни контекст за „%s“: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "не могу да отворим „%s“: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "не могу да извршим stat над „%s“: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "грешка при прављењу „%s“: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "резервна датотека „%s“ постоји и није редовна датотека" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Грешка при промени власника „%s“: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Грешка при читању „%s“: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Грешка при писању „%s“: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "неслагање величине резервне датотеке" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s вредност „%s“: „:“ није дозвољена" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "не могу да читам из „%s“: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "ставка је већ присутна у датотеци" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "не могу да упишем у „%s“: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "објекат ентитета нема %s својство" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "ставка са сукобљеним именом је већ присутна у датотеци" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "„:“ није дозвољена у шифрованој лозинци" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "грешка при шифровању лозинке" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "не извршавам са администраторским повластицама" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "нема присутне shadow датотеке -- искључујем" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "грешка при повезивању на kadm5 сервер за сервис „%s“ у подручју „%s“: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "грешка при иницијализацији kerberos библиотеке" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "грешка при тумачењу корисничког имена „%s“ за kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "структура ентитета нема %s или %s својства" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "ентитет нема %s или %s својства" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "ентитет је направљен без %s или %s својстава" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "грешка при читању података за „%s“ из kerberos-а" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "ентитет нема %s својства" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "грешка при постављању лозинке за „%s“" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos подручје" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos главни админ" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos лозинка за главног админа" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "грешка при иницијализацији ldap библиотеке" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "не могу да поставим LDAP протокол на верзију %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "нисам могао да преговарам TLS са LDAP сервером" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "не могу да се вежем за LDAP сервер" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "не могу да се вежем за LDAP сервер, прво покушајте као „%s“: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "кориснички објекат нема %s својство" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "кориснички објекат је направљен без „%s“" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "грешка при прављењу ставке LDAP каталога: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "грешка при измени ставке LDAP каталога: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "грешка при преименовању ставке LDAP каталога: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "објекат није имао %s својство" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "грешка при уклањању ставке LDAP каталога: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "објекат нема %s својство" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "неподржана шема шифровања лозинке" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "нема таквог објекта у LDAP каталогу" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "није пронађено „%s“ својство" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "грешка при постављању лозинке у LDAP каталогу за %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Име LDAP сервера" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Основни DN LDAP претраге" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "DN LDAP увезивања" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Лозинка LDAP увезивања" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL корисник" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL овлашћујући корисник" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL грешка при прављењу корисника: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL грешка при уклањању корисника: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "грешка при иницијализацији Cyrus SASL-а: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "грешка при прављењу личног директоријума за корисника" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "грешка при уклањању личног директоријума за корисника" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "грешка при премештању личног директоријума за корисника" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Грешка при иницијализацији %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Неисправан ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Претражујем за групом са ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Претражујем за групом са именом %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Претражујем за корисником са ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Претражујем за корисником са именом %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Ставка није пронађена.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Одзиви су успели.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Одзиви нису успели.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Подразумеване класе корисничких објеката:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Подразумевана имена корисничких својстава:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Добављам подразумевана корисничка својства:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Умножавам корисничку структуру:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s није имао лични директоријум.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Грешка при уклањању %s: %s.\n" libuser-0.60~dfsg/po/ms.gmo0000644000175000017500000004333012226342604015637 0ustar tzafrirtzafrir\ 53Qe}*$":"S"v <0m/)')E^w*) (6_v.((.0$_ ! "#!#>$b#. )CT%c%   =L`q    -#$,>k," &<Sn#'!3 Qr"!##<`y   13E$Y~8(**) )T *~ )   1!8!O!j!!!!!!+!. ";"GY"")"&" #!$##F#j####&#(#$$>$)Q${$$0$!$'$&%%'L% t%%3%!% && 5&C&Y&"m&&& & &' 0'Q'"q''''''(%(#C( g(('(((( )-)@)U)"h))$))))+;+ ,,8,H,^,z,9,",,---&J-&q--- --$-".D:.!.6.,.+/1/I/b/x/ ////3/3003d00&0)071781p101#1 1(1 22$92%^2$2'2'2(2"3<37Y3 33333)34/4I4)b44 4444455-5 <5 J5 W5b5r59505 556%M6%s64606 6 7(787N7"j77%7 77$7# 8&/8#V8&z888 8#8 8%9%C9(i9)999 9 9 :!:6:L:,\::::&:$;E-;-s;););0;&&<8M<<!<B<="=B=`=&=$=/=+='>JD>>)>->>? :?[?x???!?-?- @8@1K@}@@/@@)@-#A1QA&A&A=AB/B?B UB!`BB)BB!BC&C$CChC&C#CCC&D,D!GDiD$D$D)DD- E:EXEvE~E3E!EE) F&4F.[F%F'F] "V%.=u{q,>yt&IDhrg5xlae$ J4z3^Ln#<oR\:A7HMkN+ BU@dc~_)|F}pXY'CTP/wj9-WO;f im[GKb1QS(E2 6s0Z! ?v8*`%s did not have a gid number. %s is not authorized to change the finger info of %s Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] useraccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Malay (http://www.transifex.com/projects/p/fedora/language/ms/) Language: ms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; %s tidak mempunyai nombor gid. %s tidak dibenarkan untuk mengubah maklumat finger bagi %s Akaun Luput: %s Gagal mencipta akaun: %s. Akaun dikunci. Akaun tidak dikunci. Pengesahan gagal untuk %s. Kedua-dua L dan U dinyatakan. Tidak dapat menetapkan konteks default untuk /etc/passwd Menukar maklumat finger untuk %s. Menukar katalaluan untuk %s. Menukar shell untuk %s. Menyalin struktur pengguna: Cyrus SASL ralat mencipta pengguna: %sCyrus SASL ralat membuang pengguna: %sNama atribut pengguna default: Kelas objek pengguna default: Alamat E-MelMasukan tidak dijumpai. Ralat menukar pemilik untuk `%s': %sRalat mencipta %s: %s. Ralat mencipta akaun untuk `%s': baris tidak diformat dengan betul. Ralat mencipta kumpulan `%s': %s Ralat mencipta kumpulan untuk `%s' dengan GID %jd: %s Ralat mencipta direktori rumah untuk %s: %s Ralat mencipta akaun pengguna untuk %s: %s Ralat memulakan %s: %s Ralat memulakan %s: %s. Ralat memulakan PAM. Ralat melihat %s: %s Ralat memindahkan %s ke %s: %s. Ralat membuka `%s': %s. Ralat hujah penelitian: %s. Ralat membaca `%s': %sRalat menetapkan katalaluan permulaan untuk %s: %s Ralat menetapkan katalaluan untuk kumpulan %s: %s. Ralat menetapkan katalaluan untuk pengguna %s: %s. Ralat menulis `%s': %sGagal untuk mengurangkan kepentingan. Gagal menukar maklumat usia untuk %s: %s Gagal untuk menetapkan katalaluan bagi kumpulan %s: %s Gagal untuk menetapkan katalaluan bagi pengguna %s: %s Maklumat finger berubah. Maklumat finger tidak bertukar: ralat masukan. Maklumat finger tidak berubah: %s. Nama PenuhMendapatkan ciri-ciri pengguna default: Nama DiberiKumpulan %jd tidak wujud Kumpulan %s tidak dapat dipadam: %s Kumpulan %s tidak dapat dipadam: %s. Kumpulan %s tidak dapat dikunci: %s Kumpulan %s tidak dapat diubahsuai: %s Kumpulan %s tidak dapat diubahsuai: %s Kumpulan %s tidak dapat dinyahkunci: %s Kumpulan %s tidak wujud. Gagal mencipta kumpulan: %s Kumpulan dengan GID %jd tidak mempunyai nama kumpulan. Telefon RumahTidak aktif: %ld Ralat dalaman PAM `%s'. Ralat dalaman. ID tidak sah %s Nilai default bagi medan %s tidak sah: %sID kumpulan %s tidak sah ID pengguna tidak sah %s Pentadbir Utama KerberosKatalaluan Kerberos untuk Pentadbir UtamaRealm Kerberos:DN Bind LDAPKatalaluan Bind LDAPPengguna Pengesahan LDAP SASLPengguna LDAP SASLAsas Carian DN LDAPNama Pelayan LDAPPerubahan Terakhir: %s Maksimum: %ld Minimum: %ld Tidak sekaliShell BaruKatalaluan baruKatalaluan baru (sahkan)Tiada nama kumpulan dinyatakan, tiada nama untuk gid %d. Tiada nama kumpulan dinyatakan, menggunakan %s. Tiada nama kumpulan dinyatakan. Tiada kumpulan dengan GID %jd wujud, tidak membuang. Tiada direktori rumah baru untuk %s. Tiada direktori rumah lama untuk %s. Tiada pengguna dinyatakan, tiada nama untuk uid %d. Tiada nama pengguna dinyatakan, menggunakan %s. Tiada nama pengguna dinyatakan. PejabatTelefon PejabatKatalaluan Luput: %s Katalaluan Tidak Aktif: %s Pertukaran katalaluan dibatalkan. Katalaluan ditukar. Katalaluan tidak sepadan, cuba lagi. Prom gagal. Prompt berjaya. Enggan mencipta akaun dengan UID 0. Mencari untuk kumpulan bernama %s. Mencari untuk kumpulan dengan ID %jd. Mencari untuk pengguna bernama %s. Mencari untuk pengguna dengan ID %jd. Shell berubah. Shell tidak berubah: %s Nama keluargaPengguna tidak diketahui disahkan. Konteks pengguna tidak diketahuiPengguna %s tidak dapat dipadam: %s. Pengguna %s tidak dapat dikunci: %s. Pengguna %s tidak dapat diubahsuai: %s. Pengguna %s tidak dapat dinyahkunci: %s. Pengguna %s tidak wujud. Pengguna tidak sepadan. Amaran: %ld [PILIHAN...][PILIHAN...] [pengguna][OPTION...] kumpulan[PILIHAN...] penggunatiada kebenaranfail salinan `%s' wujud dan bukan fail biasasaiz fail salinan tidak sepadanid pengguna/kumpulan buruknama pengguna/kumpulan burukfail tetapan `%s' adalah terlalu besartidak dapat mengikat ke pelayan LDAPtidak dapat mengikat ke pelayan LDAP, cubaan pertama sebagai `%s': %stidak dapat merunding TLS dengan pelayan LDAPtidak dapat membuka fail tetapan `%s': %stidak dapat membaca fail tetapan `%s': %stidak dapat menetapkan protokol LDAP ke versi %dtidak dapat stat fail tetapan `%s': %stidak dapat menetapkan konteks keselamatan bagi `%s': %stidak dapat membuka `%s': %stidak dapat membaca dari `%s': %stidak dapat menetapkan konteks keselamatan default kepada `%s': %stidak dapat stat `%s': %stidak dapat menulis ke `%s': %sdata tidak ditemui dalam failentiti tidak mempunyai ciri %sentiti tidak mempunyai %s atau ciri %sobjek entiti tidak mempunyai ciri %sstruktur entiti tidak mempunyai %s atau ciri %sentiti dicipta dengan tiada %s atau ciri %smasukan telah ada dalam failralat menyambung ke pelayan kadm5 untuk servis `%s' dalam kawasan `%s': %sralat mencipta `%s': %sralat mencipta masukan direktori LDAP: %sralat mencipta direktori rumah untuk penggunaralat mengenkrip katalaluanralat memulakan Cyrus SASL: %sralat memulakan pustaka kerberosralat memulakan pustaka ldapralat memuatkan modulralat mengunci failralat mengunci fail: %sralat memanipulasi sifat terminalralat mengubahsuai masukan direktori LDAP: %sralat memindah direktori rumah untuk penggunaralat membuka failralat menghurai nama pengguna `%s' untuk kerberosralat membaca failralat membaca dari terminalralat membaca maklumat untuk `%s' dari kerberosralat membaca sifat terminalralat membuang masukan direktori LDAP: %sralat membuang direktori rumah untuk penggunaralat menamakan semula masukan direktori LDAP: %sralat menyelesaikan simbol dalam modulralat menetapkan katalaluan untuk `%s'ralat menetapkan katalaluan dalam direktori LDAP untuk %s: %sralat menetapkan sifat terminalralat stat failralat menulis ke failralat umumkumpulan %jd tidak mempunyai namakumpulan %s tidak mempunyai GIDkumpulan tidak mempunyai nama mahupun GIDralat permulaan dalamanversi pustaka/modul tidak sepadanmodul `%s' tidak mentakrif `%s'modul dimatikan oleh tetapanversi modul tidak sepadan dalam `%s'nama mengandungi aksara kawalannama mengandungi aksara tidak sah `%c'nama mengandungi aksara bukan-ASCIInama mengandungi ruangputihnama tidak ditetapkannama adalah terlalu panjang (%zu > %d)nama adalah terlalu pendeknama bermula dengan tanda sempangtiada ciri `%s' dijumpaitiada fungsi permulaan %s dalam `%s'tiada fail bayang wujud -- mematikantiada objek sebegitu dalam direktori LDAPtidak cukup kelebihantidak melaksanakan dengan kelebihan superuserobjek tidak mempunyai ciri %sobjek tidak mempunyai ciri %sberjayaralat tidak diketahuimenyahkunci akan membuatkan medan katalaluan kosongpengguna %jd tidak mempunyai namapengguna %s tidak mempunyai UIDpengguna tidak mempunyai nama mahupun UIDobjek pengguna tidak mempunyai ciri %sobjek pengguna telah dicipta dengan tanpa `%s'id pengguna/kumpulan sedang digunakannama pengguna/kumpulan sedang digunakanlibuser-0.60~dfsg/po/cy.gmo0000644000175000017500000004415212226342604015636 0ustar tzafrirtzafrir\ 53Qe}*$":"S"v <0m/)')E^w*) (6_v.((.0$_ ! "#!#>$b#. )CT%c%   =L`q    -#$,>k," &<Sn#'!3 Qr"!##<`y   13E$Y~8(**) )T *~ )   1!8!O!j!!!!!!+!. ";"GY"")"&" #!$##F#j####&#(#$$>$)Q${$$0$!$'$&%%'L% t%%3%!% && 5&C&Y&"m&&& & &' 0'Q'"q''''''(%(#C( g(('(((( )-)@)U)"h))$))))+:,;,Q,m,,,,;,)- >-_- ~-+-+-6-1..`.q.$..J./41/4f/2/// 0$0>0]0&x0040106#1Z1y1510161321R2%2 2.2 22# 3$03"U3$x3%3'33 4)#4 M4[4n444/444 51&5 X5e5t5555555 666*6;61W6)66=60 7-;76i7.777 78888V80n888!8 8!9&49'[99999!9)9(':*P:-{:":: : :;;/;H;>\;-;;;$<!)<=K<%<$<'<*<&'=*N=y==<==>>">>*a>+>3>*>%?R=??+?9?@#/@)S@%}@@@@&@-A:@A{A;AAA7B*?B/jB;B/B$C'+C?SC&CCCCDD!5DWD"nD#D!D#D D$E"AEdEEEEEE#F-$F-RFF0F&F%F GG9)GcGG&G1G'G&!H!HH] "V%.=u{q,>yt&IDhrg5xlae$ J4z3^Ln#<oR\:A7HMkN+ BU@dc~_)|F}pXY'CTP/wj9-WO;f im[GKb1QS(E2 6s0Z! ?v8*`%s did not have a gid number. %s is not authorized to change the finger info of %s Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] useraccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Welsh (http://www.transifex.com/projects/p/fedora/language/cy/) Language: cy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3; Nid oedd rhif gid gyda %s. Does gan %s ddim caniatâd i newid gwybodaeth 'finger' %s Cyfrif yn Darfod: %s Methodd creu'r cyfrif: %s. Mae'r cyfrif ar glo. Nid yw'r cyfrif ar glo. Methodd dilysiant ar gyfer %s. Penodwyd -L ac -U ill dau. Methu gosod y cyd-destun rhagosodedig ar gyfer /etc/passwd Yn newid gwybodaeth byseddu ar gyfer %s. Yn newid cyfrinair ar gyfer %s. Yn newid plisgyn ar gyfer %s. Yn copïo strwythur defnyddiwr: Gwall SASL Cyrus wrth greu'r defnyddiwr: %sGwall SASL Cyrus wrth greu'r defnyddiwr: %sEnwau priodoleddau gwrthrych defnyddiwr rhagosodedig: Dosbarthiadau gwrthrych defnyddiwr rhagosodedig: Cyfeiriad E-BostCofnod heb ei ganfod. Gwall wrth newid perchennog `%s': %sGwall wrth greu %s: %s. Gwall wrth greu cyfrif ar gyfer `%s': llinell wedi'i fformadu'n anghywir. Gwall wrth greu grŵp `%s': %s Gwall wrth greu grŵp ar gyfer `%s' â GID %jd: %s. Gwall wrth greu cyfeiriadur cartref ar gyfer %s: %s Gwall wrth greu cyfrif defnyddiwr ar gyfer %s: %s Gwall wrth ymgychwyn %s: %s Gwall wrth ymgychwyn %s: %s. Gwall wrth ymgychwyn PAM. Gwall wrth waredu %s: %s Gwall wrth symud %s i %s: %s. Gwall wrth agor `%s': %s. Gwall wrth ddyrannu ymresymiadau: %s. Gwall wrth ddarllen `%s': %sGwall wrth osod cyfrinair dechreuol ar gyfer %s: %s Gwall wrth osod cyfrinair ar gyfer grŵp %s: %s. Gwall wrth osod cyfrinair ar gyfer defnyddiwr %s: %s. Gwall wrth ysgrifennu `%s': %sMethwyd gollwng breintiau. Methwyd addasu'r wybodaeth heneiddio ar gyfer %s: %s Methwyd gosod cyfrinair ar gyfer y grŵp %s: %s Methwyd gosod cyfrinair ar gyfer y defnyddiwr %s: %s. Newidiwyd gwybodaeth fyseddu. Ni newidiwyd gwybodaeth fyseddu: gwall mewnbwn. Ni newidiwyd gwybodaeth fyseddu: %s. Enw LlawnYn nôl priodoleddau defnyddiwr rhagosodedig: Enw CyntafNid yw'r grŵp %jd yn bodoli Nid oedd modd dileu'r grŵp %s: %s Nid oedd modd dileu'r grŵp %s: %s. Nid oedd modd cloi'r grŵp %s: %s Nid oedd modd addasu'r grŵp %s: %s Nid oedd modd addasu'r grŵp %s: %s. Nid oedd modd datgloi’r grŵp %s: %s Nid yw'r grŵp %s yn bodoli. Methwyd creu'r grŵp: %s Doedd gan y grŵp â'r GID %jd ddim enw. Ffôn CartrefAnweithredol: %ld Gwall PAM mewnol `%s'. Gwall mewnol. ID annilys %s Annilys yw'r gwerth rhagosodiedig o maes %s: %s%s yn ID grŵp annilys %s yn ID defnyddiwr annilys Pennaeth Gweinyddol KerberosCyfrinair Kerberos ar gyfer y Pennaeth GweinyddolBro KerberosEP Rhwymo LDAPCyfrinair Rhwymo LDAPDefnyddiwr Awdurdodi SASL LDAPDefnyddiwr SASL LDAPEP Sail Chwilio LDAPEnw Gweinydd LDAPNewid Diwethaf: %s Uchafswm: %ld Isafswm: %ld BythPlisgyn NewyddCyfrinair newyddCyfrinair newydd (gwiriwch)Ni phenodwyd enw grŵp, dim enw ar gyfer gid %d. Ni phenodwyd enw grŵp, yn defnyddio %s. Ni phenodwyd enw grŵp. Nid oes grŵp â'r GID %jd yn bodoli, felly gwaredir e ddim. Nid oes cyfeiriadur cartref newydd ar gyfer %s. Nid oes hen gyfeiriadur cartref ar gyfer %s. Ni phenodwyd enw defnyddiwr, dim enw ar gyfer uid %d. Ni phenodwyd enw defnyddiwr, yn defnyddio %s. Ni phenodwyd enw defnyddiwr. SwyddfaFfôn SwyddfaCyfrinair yn Darfod: %s Cyfrinair Anweithredol: %s Diddymwyd newid y cyfrinair. Newidiwyd y cyfrinair. Nid yw'r cyfrineiriau'n cydweddu, ceisiwch eto. Promptiau wedi methu. Promptiau wedi llwyddo. Yn gwrthod creu cyfrif â UID 0. Yn chwilio am grŵp o'r enw %s. Yn chwilio am grŵp â'r ID %jd. Yn chwilio am ddefnyddiwr o'r enw %s. Yn chwilio am ddefnyddiwr â'r ID %jd. Newidiwyd y plisgyn. Ni newidiwyd y plisgyn: %s CyfenwDilyswyd defnyddiwr anhysbys. Cyd-destun defnyddiwr yn anhysbysNid oedd modd dileu'r defnyddiwr %s: %s. Nid oedd modd cloi'r defnyddiwr %s: %s. Nid oedd modd addasu'r defnyddiwr %s: %s. Nid oedd modd datgloi’r defnyddiwr %s: %s. Nid yw'r defnyddiwr %s yn bodoli. Defnyddiwr anghydwedd. Rhybudd: %ld {DEWISIAD...][DEWISIAD...] [defnyddiwr][DEWISIAD...] grŵp[DEWISIAD...] defnyddiwrgwrthodwyd cyrchiadmae'r ffeil wrthgefn `%s' yn bodoli, ac nid yw'n ffeil arferolmaint ffeiliau wrthgefn yn wahanol i'w gilydddynodiad defnyddiwr/grŵp gwaelenw defnyddiwr/grŵp gwaelMae ffeil gyfluniad '%s' yn rhy fawrmethwyd rhwymo â'r gweinydd LDAPmethwyd rhwymo â'r gweinydd LDAP, cynnig cyntaf fel `%s': %smethwyd trafod TLS â'r gweinydd LDAPmethwyd agor ffeil gyflunio `%s': %smethwyd darllen ffeil gyflunio `%s': %smethwyd gosod y protocol LDAP i fersiwn %dmethwyd statio ffeil gyflunio `%s': %smethwyd cael cyd-destun diogelwch `%s': %smethwyd agor: `%s': %smethwyd darllen o `%s': %smethwyd gosod y cyd-destun diogelwch rhagosodedig i `%s': %smethwyd statio: `%s': %smethwyd ysgrifennu i `%s': %sni chanfuwyd y data yn y ffeilnid oes gan yr endid briodoledd %snid oes gan yr endid briodoleddau %s na %snid oes gan y gwrthrych endid briodoledd %snid oes gan y strwythur endid briodoleddau %s na %scrëwyd yr endid heb briodoleddau %s na %scofnod eisoes yn bresennol yn y ffeilgwall wrth gysylltu â'r gweinydd kadm5 ar gyfer y gwasanaeth '%s' ym mro `%s': %sgwall wrth greu: `%s': %sgwall wrth greu cofnod cyfeiriadur LDAP: %sgwall wrth greu cyfeiriadur cartref ar gyfer y defnyddiwrgwall wrth amgryptio cyfrinairgwall wrth ymgychwyn SASL Cyrus: %sgwall wrth ymgychwyn y llyfrgell kerberosgwall wrth ymgychwyn y llyfrgell ldapgwall wrth lwytho modwlgwall wrth gloi ffeilgwall wrth gloi ffeil: %sgwall wrth drin priodoleddau terfynellgwall wrth addasu cofnod cyfeiriadur LDAP: %sgwall wrth symud cyfeiriadur cartref ar gyfer y defnyddiwrgwall wrth agor ffeilgwall wrth ddyrannu'r enw defnyddiwr `%s' ar gyfer kerberosgwall wrth ddarllen ffeilgwall wrth ddarllen o derfynellgwall wrth ddarllen gwybodaeth ar gyfer `%s' o kerberosgwall wrth ddarllen priodoleddau terfynellgwall wrth waredu'r cofnod cyfeiriadur LDAP: %sgwall wrth waredu cyfeiriadur cartref ar gyfer y defnyddiwrgwall wrth ail-enwi cofnod cyfeiriadur LDAP: %sgwall wrth ddatrys symbol mewn modwlgwall wrth osod cyfrinair ar gyfer `%s'gwall wrth osod cyfrinair yn y cyfeiriadur LDAP ar gyfer %s: %sgwall wrth osod priodoleddau terfynellgwall wrth statio ffeilgwall wrth ysgrifennu i ffeilgwall cyffredinolNid oes enw gan grŵp %jdNid oes GID gan grŵp %sNid oes enw neu GID gan grŵp %jdgwall ymgychwyn mewnolFersiwn llyfrgell/modwl yn wahanolnid yw modiwl '%s' yn diffinio '%s'analluogwyd y modwl gan gyfluniadanghydweddiad fersiwn modwl yn `%s'mae'r enw'n cynnwys nodau rheolimae'r enw'n cynnwys nod annilys `%c'mae'r enw'n cynnwys nodau di-ASCIImae'r enw'n cynnwys gofod gwynenw heb ei osodMae enw yn rhy hir (%zu > %d)mae'r enw rhy fyrEnw yn cychwyn gyda chysylltnodni chanfuwyd priodoledd `%s'dim ffwythiant ymgychwyn %s yn `%s'dim ffeil gysgod yn bresennol -- yn analluoginid oes y fath wrthrych yn y cyfeiriadur LDAPdiffyg breintiauddim yn gweithredu â breintiau'r uwchddefnydiwrnid oedd gan y gwrthrych briodoledd %snid oes gan y gwrthrych briodoledd %sllwyddiantgwall anhysbysmi fyddai datgloi yn achosi i'r maes cyfrinair fod yn wagNid oes enw gan defnyddiwr %jdNid oes UID gan defynddiwr %sNid oes enw neu UID gan defynddiwr %jdnid oedd priodoledd %s gan y gwrthrych defnyddiwrcrëwyd y gwrthrych defnyddiwr heb `%s'dynodiad defnyddiwr/grŵp mewn defnyddenw defnyddiwr/grŵp mewn defnyddlibuser-0.60~dfsg/po/es.po0000644000175000017500000011627012226342567015477 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # alex_pe , 2012 # Claudio Rodrigo Pereyra Diaz , 2011-2013 # Domingo Becker , 2008,2012 # Manuel Ospina , 2005 # Miloslav Trmač , 2011 # Yelitza Louze , 2003, 2004 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora/language/" "es/)\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Imposible disminuir privilegios.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Error interno.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s no está autorizado para cambiar la información de finger de %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Contexto de usuario desconocido" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "No se pudo establecer el contexto predeterminado para /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Error inicializando PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Autentificación fallida para %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Error interno `%s' de PAM.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Autenticado usuario desconocido.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "No corresponde el usuario.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "solicitar toda la información" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "lista parámetros de envejecimiento para el usuario" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "cantidad mínima de días entre las modificaciones de contraseñas" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "DIAS" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "cantidad máxima de días entre las modificaciones de contraseñas" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" "fecha de la última modificación de la contraseña, en días, desde 1/1/70" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "cantidad de días posteriores a la fecha de vencimiento de la contraseña para " "que la cuenta sea considerada inactiva" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "fecha de vencimiento de la contraseña, en días, desde 1/1/70" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "cantidad de días previos al vencimiento para advertir al usuario" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPCIÓN...] usuario" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Error al analizar argumentos %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "No se especificó nombre de usuario.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Error inicializando %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "El usuario %s no existe.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "La cuenta está bloqueada.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "La cuenta no está bloqueada.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Mínimo:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Máximo:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Máximo:\tNinguno\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Aviso:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inactivo:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Inactivo:\tNunca\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Debe cambiar la contraseña en el proximo ingreso" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nunca" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Último cambio:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Contraseña caduca:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Contraseña inactiva:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Cuenta caduca:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Falló al modificar la información de caducidad para %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPCIÓN...] [usuario]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "No se especificó nombre de usuario, no hay un nombre para el uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Cambiando la información de finger para %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Nombre completo" #: apps/lchfn.c:146 msgid "Surname" msgstr "Apellido" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Nombre" #: apps/lchfn.c:167 msgid "Office" msgstr "Oficina" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Teléfono de oficina" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Teléfono particular" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Dirección de correo electrónico" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Información de finger sin modificaciones: error de entrada.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Información de finger modificada.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Información de finger sin modificaciones: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Cambiando el shell por %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nuevo shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell sin modificar: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell modificado.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid para el nuevo grupo" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "NUM" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "crear un grupo de sistema" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPCIÓN...] grupo" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "No se especificó ningún nombre de grupo.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ID de grupo %s no válida\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Falló la creación del grupo: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "El grupo %s no existe.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "No se pudo eliminar el grupo %s: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "definir un GID para un grupo" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "modificar el grupo para que posea el nombre definido" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NOMBRE" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "contraseña en formato de texto simple para utilizarse con el grupo" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "CADENA" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "contraseña pre-hasheada para utilizar con el grupo" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "lista de administradores a ser agregados" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "lista de administradores a ser eliminados" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "lista de miembros del grupo a ser agregados" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "lista de miembros del grupo a ser eliminados" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "bloquear grupo" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "desbloquear grupo" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Especificación de -L y -U\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Falló al establecer la contraseña para el grupo %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "No se pudo bloquear el grupo %s: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "No se pudo desbloquear el grupo %s: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "El grupo %s no se pudo modificar:%s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Error al buscar %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "muestra los miembros de un grupo determinado en lugar de las membresías al " "grupo del usuario identificado" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "solo muestra información de membresía por nombre, y no por UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "No se especificó ningún nombre de grupo, usando %s .\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "No se especificó ningún nombre de grupo, no hay nombre para gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "No se especificó nombre de usuario, usando %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s no existe\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "archivo con registro de información del usuario" #: apps/lnewusers.c:47 msgid "PATH" msgstr "RUTA" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "no generar directorios personales" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "no generar almacenamientos de correo" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPCIÓN...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Error en la lectura `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Error creando cuenta para `%s': la línea no está formateada de la forma " "correcta.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ID de usuario %s no válida\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Rechazando la creación de cuenta con UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Error en la creación de un grupo para `%s' con GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Por defecto, para %s se niega la utilización del directorio principal " "peligroso `%s'\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Error creando directorio principal para %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Error al crear receptor de correo para %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Error en la configuración de la contraseña para %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Error creando cuenta de usuario para %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "define contraseña de grupo en lugar de una contraseña de usuario" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "nueva contraseña de texto simple" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "nueva contraseña cifrada" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "lee una nueva contraseña de texto simple desde el descriptor ofrecido" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "lee una nueva contraseña cifrada desde el descriptor ofrecido" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Cambiando contraseña para %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nueva contraseña" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nueva contraseña (confirmar)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Las contraseñas no coinciden, por favor inténtelo nuevamente.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Cancelado el cambio de contraseñas.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Error al leer el archivo descriptor: %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Error al configurar la contraseña para el usuario %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Error en la configuración de la contraseña para el grupo %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Contraseña modificada.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "crea un usuario del sistema" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "información GECOS del nuevo usuario" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "directorio personal para el nuevo usuario" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "directorio con archivos para el nuevo usuario" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "shell para el nuevo usuario" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "uid del nuevo usuario" #: apps/luseradd.c:69 msgid "group for new user" msgstr "grupo del nuevo usuario" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "no genera un directorio personal para el usuario" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "no genera un grupo con el mismo nombre del usuario" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "nombre general del nuevo usuario" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "nombre definido del nuevo usuario" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "apellido del nuevo usuario" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "número de habitación del nuevo usuario" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "número telefónico del nuevo usuario" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "número telefónico personal del nuevo usuario" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "El grupo %jd no existe.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Error en la creación del grupo `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Creación de la cuenta fallida: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Error creando %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Error al crear receptor de correo: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "si es que posee uno, no elimina el grupo privado del usuario " #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "elimina el directorio personal del usuario" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "No se pudo eliminar el usuario %s: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s no tenía un número gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "No existe ningún grupo con %jd de GID, no se eliminará.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "El grupo de GID %jd no tenía un nombre de grupo.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "No se pudo eliminar el grupo %s: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "error al eliminar el directorio principal para el usuario" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Error al eliminar el receptor de correo: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "información GECOS" #: apps/lusermod.c:60 msgid "home directory" msgstr "directorio personal" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "traslada los contenidos del directorio personal" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "define el shell para el usuario" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "define el UID para el usuario" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "define el GID primario para el usuario" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "modifica el nombre de registro del usuario" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "contraseña de texto simple del usuario" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "contraseña previamente hasheada para el usuario" #: apps/lusermod.c:75 msgid "lock account" msgstr "bloquear cuenta" #: apps/lusermod.c:78 msgid "unlock account" msgstr "desbloquear cuenta" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "definir un nombre general para el usuario" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "definir el nombre otorgado al usuario" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "definir el apellido del usuario" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "definir número de habitación del usuario" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "definir numero telefónico del usuario" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "definir número telefónico personal del usario" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Intento fallido de configurar la contraseña para el usuario %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "No se pudo bloquear el usuario %s: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "No se pudo desbloquear el ususario %s: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Advertencia: El grupo con ID %jd no existe.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "No se pudo modificar el usuario %s: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "El grupo %s no se pudo modificar:%s\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Ningún directorio principal antiguo para %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Ningún directorio principal para %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Error al trasladar %s a %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "no se pudo abrir el archivo de configuración `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "no se pudo hacer stat del archivo de configuración `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "el archivo de configuración `%s' es demasiado extenso." #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "no se pudo leer el archivo de configuración `%s': %s" #: lib/error.c:62 msgid "success" msgstr "éxito" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "módulo deshabilitado por la configuración" #: lib/error.c:66 msgid "generic error" msgstr "error genérico" #: lib/error.c:68 msgid "not enough privileges" msgstr "No existen suficientes privilegios" #: lib/error.c:70 msgid "access denied" msgstr "acceso denegado" #: lib/error.c:72 msgid "bad user/group name" msgstr "Nombre de usuario/grupo incorrecto" #: lib/error.c:74 msgid "bad user/group id" msgstr "id de usuario/grupo incorrecto" #: lib/error.c:76 msgid "user/group name in use" msgstr "Nombre de usuario/grupo usado" #: lib/error.c:78 msgid "user/group id in use" msgstr "id de usuario/grupo usado" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "error al manipular atributos de terminal" #: lib/error.c:82 msgid "error opening file" msgstr "error al abrir el fichero" #: lib/error.c:84 msgid "error locking file" msgstr "error al cerrar el fichero" #: lib/error.c:86 msgid "error statting file" msgstr "error al hacer stat del archivo" #: lib/error.c:88 msgid "error reading file" msgstr "error al cerrar el fichero" #: lib/error.c:90 msgid "error writing to file" msgstr "error al escribir el fichero" #: lib/error.c:92 msgid "data not found in file" msgstr "no se han encontrado los datos en el fichero" #: lib/error.c:94 msgid "internal initialization error" msgstr "error interno de iniciación" #: lib/error.c:96 msgid "error loading module" msgstr "error al cargar el módulo" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "error al determinar el símbolo en el módulo" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "versión de biblioteca/módulo discordante" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "desbloquear dejaría el campo contraseña vacío" #: lib/error.c:105 msgid "invalid attribute value" msgstr "valor de atributo inválido" #: lib/error.c:107 msgid "invalid module combination" msgstr "combinación de módulos invalida" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "directorio personal para el nuevo usuario" #: lib/error.c:115 msgid "unknown error" msgstr "error desconocido" #: lib/misc.c:240 msgid "invalid number" msgstr "número inválido" #: lib/misc.c:254 msgid "invalid ID" msgstr "ID inválido" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "ninguna función de inicialización de %s en `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "versión de módulo discordante en `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "el módulo `%s' no define `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "error al leer los atributos del terminal" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "error en la configuración de los atributos del terminal" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "error al leer desde el terminal" #: lib/user.c:218 msgid "name is not set" msgstr "no se ha establecido un nombre" #: lib/user.c:223 msgid "name is too short" msgstr "el nombre es muy corto" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "nombre demasiado largo·(%zu·>·%d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "el nombre contiene caracteres que no son ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "el nombre contiene caracteres de control" #: lib/user.c:249 msgid "name contains whitespace" msgstr "el nombre contiene espacios en blanco" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "el nombre comienza con un guión" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "el nombre contiene un caracter inválido: `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "el usuario %s no tiene UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "usuario %s no encontrado" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "el grupo %s no tiene GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "grupo %s no encontrado" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "el usuario %jd no tiene nombre" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "el grupo %jd no tiene nombre" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "el usuario no tiene nombre ni un UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "el grupo no tiene un nombre ni un GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" "Por defecto, se niega la utilización del directorio principal peligroso `%s'" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Valor por defecto inválido en el campo %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "error cerrando fichero: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "no se pudo obtener el contexto de seguridad predeterminado: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "no se pudo obtener el contexto de seguridad `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" "no se pudo configurar el contexto de seguridad predeterminado a `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "no se pudo determinar el contexto de seguridad `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "no se pudo abrir `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "no se pudo efectuar el stat `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "error al crear `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "" "Existe un fichero de copia de seguridad `%s' y no es un fichero habitual" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Error cambiando dueño de `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Error cambiando modo de `%s': %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Error al eliminar %s: %s." #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Error al escribir `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "tamaño de archivo de copia de seguridad discordante" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s valor `%s': `:' no permitido" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "no se pudo leer desde `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "la entrada ya se ha hecho presente en el archivo" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "no se pudo escribir en `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "el objeto de entidad no tiene ningún atributo %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "ya existe en el archivo una entrada con el nombre en conflicto" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' no permitido en contraseñas encriptada" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "error al encriptar la contraseña" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "los módulos `%s' y `%s' no pueden ser combinados" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "No se ejecuta con privilegios de superusuario." #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "Ningún archivo shadow presente -- deshabilitando." #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "error al conectarse al servidor kadm5 para el servicio `%s' en el entorno `" "%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "error al inicializar la biblioteca kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "error en el análisis del nombre de usuario `%s' para kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "la estructura de entidad no tiene atributos %s ni %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "la entidad no tiene atributos %s ni %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "la entidad no ha sido creada con atributos ni %s ni %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "error al leer la información para `%s' desde kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "la entidad no tiene atributos %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "error en la configuración de la contraseña para `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Entorno de Kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Administrador principal de Kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Contraseña Kerberos para el administrador principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "error al inicializar la biblioteca ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "no se pudo establecer un protocolo LDAP para la versión %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "no se pudo negociar TLS con el servidor LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "no se pudo vincular al servidor LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "no se pudo vincular al servidor LDAP, primer intento como `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "el objeto de usuario no tiene ningún atributo %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "el objeto de usuario ha sido creado sin `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "error al crear una entrada al directorio LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "error al modificar la entrada del directorio LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "error al renombrar la entrada del directorio LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "el objeto no tiene ningún atributo %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "error al eliminar la entrada del directorio LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "el objeto no tiene atributos %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "esquema de encriptado de contraseñas no soportado" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "Objeto no encontrado en el directorio LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "Atributo `%s' no encontrado" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "Error configurando contraseña en el directorio LDAP para %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Nombre del servidor LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "DN base de búsqueda de LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "DN Bind LDAP" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Contraseña Bind LDAP" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Usuario SASL LDAP" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Usuario de autorización SASL LDAP" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Error Cyrus SASL al crear usuario: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Error Cyrus SASL al eliminar usuario: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "error al inicializar Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "error al crear directorio principal para el usuario" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "error al eliminar el directorio principal para el usuario" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "error moviendo el directorio principal para el usuario" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Error al iniciar %s: %s.\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ID %s no válida\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Buscando grupo con ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Buscando grupo llamado %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Buscando usuario con ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Buscando usuario llamado %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "No se ha encontrado la entrada.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Los avisos fueron exitosos.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Fallaron los avisos.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Tipos de objetos de usuario predeterminados:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Nombres de atributos de usuario predeterminados:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Obtención de los atributos de usuario predeterminados:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Copia de la estructura de usuario:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s no tenía un directorio principal.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Error al eliminar %s: %s.\n" libuser-0.60~dfsg/po/bs.gmo0000644000175000017500000004422512226342604015630 0ustar tzafrirtzafrir `a54*O$z""1Pn} </$)T'~+Db*y)(.*(Y(.$ !& HS"m#!#$#C].x %.T cp  -#Gk,,"@Y `m#'9!Xz "!=#_#  1 Rl~$8(*7*b)*) # 1? q    ! ! +!.E!t!G!!)!&"C"!]"#"""""&#()#$R#w#)###0#!$'6$&^$'$ $$3$!"%D%X% n%|%%"%%% & (&I& i&&"&&&&'$'>'%V'#|' '''''(5( =(-K(y(("(($( ))5)<+3O++ +++,+!,68,&o,,#,,-,1 -&R-$y---&--F .%P.3v.-.3.& /&3/%Z/%/)/"///#06C04z080"0& 17213j171%181+52a2*j222%2$2&2&"3#I3&m333(334#474I4a4"}4-44 445!545M5f5~5 5 5525556-;6"i6*676:6 *7K7P7`7y777-77 8#8'C8#k8+8'8$8(919&99`9(}9,9,9,:-:F: a:m::::D:7;8;#T;)x;.;I;3<7O<6<3<8<7+=c=!=9=&=#>!)>K>c>>*>*>>S?j?+?/?!?.@14@-f@ @%@)@.A04A6eA ABAB# B3DB)xB/B3B2C+9C*eC;C-CC$D=DRDhDzDD,DD$D&$EKE"kE%E%EEE F$FCF"_F;F&FF(F(GDG[GbG1vGGGG'G'H$DH+iH{x,kMJ9[K7%|:bwaYv-n?u<FNT2HI#(^d*EDqZg.\}oC0Gl'= 8j+RQ&ryXie)LO@"Wms$>`c p/f]Ah~;U! 16_t4V3z SB5P%s did not have a gid number. %s is not authorized to change the finger info of %s Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInternal PAM error `%s'. Internal error. Invalid ID %s Invalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] useraccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora/language/bs/) Language: bs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); %s nema GID broj. %s nema dopuštenja za izmjenu finger podatka o %s Nalog zastarijeva: %s Izradi naloga nije uspjela: %s. Nalog je zaključan. Nalog nije zaključan. Provjere autentičnosti za %s nije uspjela. Podjednako su određeni -L i -U. Nije moguće postaviti zadani kontekst za /etc/passwd Izmjena podataka usluge finger za %s. Izmjena lozinke za %s. Promjena korisničke ljuske za %s. Kopiranje strukture korisnika: Pogreška pri izradi Cyrus SASL korisnika: %sPogreška pri uklanjanju Cyrus SASL korisnika: %sZadani atributi korisničkih naziva: Zadane klase korisničkih objekata: Adresa e-pošteUnos nije pronađen. Pogreška pri izmjeni vlasnika`%s': %sPogreška pri izradi %s: %s. Pogreška pri izradi naloga za `%s': linija je nepravilno oblikovana. Pogreška pri izradi grupe `%s': %s. Pogreška pri izradi grupe za `%s' uz GID %jd: %s. Pogreška pri izradi početne mape za %s: %s Pogreška pri izradi korisničkog naloga za %s: %s Pogreška pri inicijalizaciji %s: %s. Pogreška pri inicijalizaciji %s: %s. Pogreška pri inicijalizaciji PAM-a. Pogreška pri pretraživanju %s: %s. Pogreška pri premještanju %s u %s: %s. Pogreška pri otvaranju `%s': %s. Pogreška pri raščlanjivanju argumenata: %s. Pogreška pri čitanju `%s': %sPogreška pri postavljanju početne lozinke za %s: %s Pogreška pri postavljanju lozinke za grupu %s: %s. Pogreška pri postavljanju lozinke za korisnika %s: %s. Pogreška pri zapisivanju `%s': %sOdbacivanje privilegija nije uspjelo. Uređivanje podataka o zastari za %s nije uspjelo: %s. Postavljanja lozinke za grupu %s nije uspjelo: %s. Postavljanja lozinke za korisnika %s nije uspjelo: %s. Podaci usluge finger izmijenjeni su. Podaci usluge finger nisu izmijenjene: pogreška unosa. Podaci usluge finger nisu izmijenjene: %s. Puno imeDohvaćanje zdanih korisničkih atributa: ImeGrupa %jd ne postoji. Grupu %s nije moguće izbrisati: %s. Brisanje grupe %s nije moguće: %s. Grupu %s nije moguće zaključati: %s Grupu %s nije moguće izmijeniti: %s. Izmjena grupe %s nije moguća: %s. Grupu %s nije moguće otključati: %s Grupa %s ne postoji. Izrada grupe nije uspjela: %s. Grupa s GID %jd nije imala naziv grupe. Telefon (kućni)Interna pogreška PAM-a `%s'. Interna pogreška. Neispravan ID %s Neispravan ID grupe %s Neispravan ID korisnika %s Principal administratora kerberosaLozinka kerberosa za principal administratoraPodručje KerberosaLDAP Bind DNLDAP Bind lozinkaLDAP SASL korisnik autorizacijeLDAP SASL korisnikOsnovna DN LDAP pretrageNaziv LDAP poslužiteljaPosljednja izmjena: %s NikadNova ljuskaNova lozinkaNova lozinka (potvrdite)Naziv grupe nije određen. Nema naziva za gid %d. Naziv grupe nije određen. Bit će upotrijebljen %s. Naziv grupe nije određen. Ne postoji grupa s GID %jd. Nema uklanjanja. Novi naziv za mapu %s ne postoji. Prethodna početna mapa za %s ne postoji. Korisničko ime nije određeno. Nema naziva za uid %d. Nije određeno korisničko ime. Bit će upotrijebljen %s. Korisničko ime nije određeno. UredUredski telefonLozinka zastarijeva: %s Neaktivna lozinka: %s Izmjena lozinke je otkazana. Lozinka je izmijenjena. Lozinke se ne podudaraju, pokušajte ponovo. Odzivi nisu uspjeli. Odzivi su uspjeli. Izrada naloga s UID 0 je odbijena. Pretražuje se za grupom s nazivom %s. Pretražuje se za grupom s ID %jd. Pretražuje se za korisnikom s nazivom %s. Pretražuje se za korisnikom s ID %jd. Korisnička ljuska je promijenjena. Korisnička ljuska nije promijenjena:%s PrezimeAutentifikacija nepoznatog korisnika. Nepoznati kontekst korisnikaBrisanje korisnika %s nije moguće: %s. Korisnik %s nije mogao biti zaključan: %s. Korisnik %s nije mogao biti izmijenjen: %s. Korisnik %s nije mogao biti otključan: %s. Korisnik %s ne postoji. Neodgovarajući korisnik. [OPCIJA...][OPCIJA...] [korisnik][OPCIJA...] grupa[OPCIJA...] korisnikPristup odbijenDatoteka sigurnosnog spremanja`%s' postoji i nije regularna datotekaNe podudara se veličina datoteke sigurnosnog spremanjaLoš ID korisnika ili grupeLoše ime korisnika ili naziv grupeKonfiguracijska datoteka`%s' je prevelikaPovezivanje s LDAP poslužiteljem nije uspjeloPovezivanje s LDAP poslužiteljem nije uspjelo. Prvi pokušaj kao %s': %sTLS pregovaranja s LDAP poslužiteljem nije uspjeloOtvaranje konfiguracijske datoteke`%s' nije uspjelo: %sČitanje konfiguracijske datoteke`%s' nije uspjelo: %sZadavanje LDAP protokola za verziju %d nije uspjeloPokretanje konfiguracijske datoteke`%s' nije uspjelo: %sDohvaćanje sigurnosnog sadržaja `%s' nije uspjelo: %sOtvaranje`%s' nije uspjelo: %sČitanje iz `%s' nije moguće: %sDohvaćanje sigurnosnog sadržaja u `%s' nije uspjelo: %sIzrada statistike`%s' nije uspjela: %sZapisivanje u `%s' nije moguće: %sPodatak nije pronađen u datoteciEntitet nema atribut %sEntitet nema atribute %s ili %sObjekt entiteta nema atribut %sStruktura entiteta nema atribute %s ili %sEntitet je izrađen bez atributa %s ili %sUnos već postoji u datoteciPogreška pri povezivanju s kadm5 poslužiteljem za uslugu`%s' u području `%s': %sPogreška pri izradi`%s': %sPogreška pri izradi unosa LDAP imenika: %sPogreška pri izradi početne mape za korisnikaPogreška pri šifriranju lozinkePogreška pri inicijalizaciji Cyrus SASL-a: %sPogreška pri inicijalizaciji kerberos bibliotekaPogreška pri inicijalizaciji ldap bibliotekePogreška pri učitavanju modulaPogreška pri zaključavanju datotekePogreška pri zaključavanju datoteke: %sPogreška pri rukovanju s atributima terminalaPogreška pri uređivanju unosa LDAP imenika: %sPogreška pri premještanju početne mape za korisnikaPogreška pri otvaranju datotekePogreška pri raščlanjivanju korisničkog imena `%s' za kerberosPogreška pri čitanju datotekePogreška pri čitanja iz terminalaPogreška pri čitanju podataka za %s' iz kerberosaPogreška pri čitanju atributa terminalaPogreška pri uklanjanju unosa LDAP imenika: %sPogreška pri uklanjanju početne mape za korisnikaPogreška pri preimenovanju unosa LDAP imenika: %sPogreška pri razrješavanju znaka u moduluPogreška pri postavljanju lozinke za `%s'Pogreška pri postavljanju lozinke u LDAP imeniku za %s: %sPogreška pri postavljanju atributa terminalaPogreška datoteke statistikaPogreška pri zapisivanju u datotekuGenerička pogreškaGrupa %jd nema nazivaGrupa %s nema GIDGrupa nema ni naziv ni UIDInterna greška inicijalizacijeNe podudaraju se verzije biblioteke i modulaModul `%s' ne određuje `%s'Modul je onemogućen u konfiguracijiNe podudaraju se verzije modula u `%s'Naziv sadrži kontrolne znakoveNaziv sadrži neispravni znak `%c'Naziv sadrži znakove koji nisu ASCIINaziv sadrži prazna mjesta (razmake)Naziv nije zadanNaziv je predugačak (%zu > %d)Naziv je prekratakNaziv započinje znakom rastavljanjaAtribut `%s' nije pronađenNema funkcije pokretanja %s u `%s'Datoteka lozinki u sjeni ne postoji -- Bit će onemogućenoTakav objekt ne postoji u LDAP imenikuNema dovoljno privilegijaNe izvršava se s pravima superkorisnikaObjekt nije imao atribut %sObjekt nema atribut %sUspjehNepoznata pogreškaOtključavanje će polje lozinke učiniti praznimKorisnik %jd nema nazivaKorisnik %s nema UIDKorisnik nema ni naziv ni UIDKorisnički objekt nije imao atribut %sKorisnički objekt je izrađen bez `%s'ID korisnika ili grupe je u upotrebiIme korisnika ili naziv grupe je u upotrebilibuser-0.60~dfsg/po/or.po0000644000175000017500000014100612226342567015503 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Manoj Kumar Giri , 2008 # Manoj Kumar Giri , 2008, 2009, 2011, 2012 # Miloslav Trmač , 2011 # Subhransu Behera , 2006, 2007 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Oriya (http://www.transifex.com/projects/p/fedora/language/" "or/)\n" "Language: or\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "ବିଶେଷ ଆକର୍ଷଣ କୁ ତ୍ଯାଗ କରିବା ସମୟରେ ତୃଟି\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "ଆଭ୍ଯନ୍ତରୀଣ ତୃଟି\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s ଟି ବୈଧିକ୍ରୁତ ନୁହେଁ %s finger ସୂଚନା କୁ ପରିବର୍ତନ କରିବା ପାଇଁ\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "ଅଜଣା ଚାଳକ ପ୍ରସଙ୍ଗ" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd ପ୍ରସଙ୍ଗ ପାଇଁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ପ୍ରସଙ୍ଗ କୁ ସେଟ କରି ପାରିବ ନାହିଁ \n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "ପି.ଏ.ଏମ୍. କୁ ପ୍ରାରମ୍ଭିକରଣ କରିବା ସମୟରେ ତୃଟି\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s ପାଇଁ ବୈଧିକରଣ ବିଫଳ ହୋଇଗଲା \n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "ଆଭ୍ଯନ୍ତରୀଣ ପି.ଏ.ଏମ୍. ତୃଟି `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "ଅଜଣା ଚାଳକ ଟି ବୈଧିକ୍ରୁତ ହୋଇ ଯାଇଛି\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "ଚାଳକ ଟି ମିଶୁ ନାହିଁ\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ପସନ୍ଦ...] ଚାଳକ" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "ସ୍ବତନ୍ତ୍ରଚର ମାନଙ୍କୁ ବିଶ୍ଳେଷଣ କରିବା ସମୟରେ ତୃଟି: %s \n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "କୌଣସି ଚାଳକ ନାମ ଉଲ୍ଲେଖିତ ହୋଇ ନାହିଁ \n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s କୁ ପ୍ରାରମ୍ଭିକରଣ କରିବା ସମୟରେ ତୃଟି: %s \n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s ଚାଳକ ଟିି ଅବସ୍ଥିତ ନୁହେଁ \n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "ହିସାବ ଖାତା ଟି ଅପରିବର୍ତ୍ତନୀୟ ଅଛି \n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "ହିସାବ ଖାତା ଟି ଅପରିବର୍ତ୍ତନୀୟ ନାହିଁ \n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "ସର୍ବନିମ୍ନ:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "ସର୍ବାଧିକ:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "ଚେତାବନୀ:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "ନିଷ୍କ୍ରିୟ:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "କେବେ ନୁହେଁ" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "ଶେଷ ପରିବର୍ତନ:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "ପ୍ରବେଶ ସଙ୍କେତ ଟି ଅକ୍ରୁତ କାର୍ଯ୍ଯ ହୋଇ ଯାଏ:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "ପ୍ରବେଶ ସଙ୍କେତ ଟି ନିଷ୍କ୍ରିୟ ଅଟେ:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "ହିସାବ ଖାତା ଟି ଅକ୍ରୁତ କାର୍ଯ୍ଯ ହୋଇ ଯାଏ:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s ପାଇଁ aging ସୂଚନା କୁ ରୂପାନ୍ତରଣ କରିବାକୁ ଅସଫଳ: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ପସନ୍ଦ...] [ଚାଳକ]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "କୌଣସି ଚାଳକ ନାମ ଉଲ୍ଲଖିତ ହୋଇ ନାହିଁ, %d ୟୁ.ଆଇ.ଡି. ପାଇଁ କୌଣସି ନାମ ନାହିଁ \n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s ପାଇଁ finger ସୂଚନା କୁ ପରିବର୍ତନ କରୁଅଛି \n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "ପୂରା ନାମ" #: apps/lchfn.c:146 msgid "Surname" msgstr "କୁଳ ନାମ" #: apps/lchfn.c:157 msgid "Given Name" msgstr "ଦିଆ ଯାଇଥିବା ନାମ" #: apps/lchfn.c:167 msgid "Office" msgstr "କାର୍ଯ୍ଯାଳୟ" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "କାର୍ଯ୍ଯାଳୟ ଫୋନ" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "ଘର ଫୋନ" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ଇ-ଡାକ ଠିକଣା ମାନ" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger ସୂଚନା ଟି ପରିବର୍ତିତ ହୋଇ ନାହିଁ: ନିବେଶ ତୃଟି \n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger ସୂଚନା ଟି ପରିବର୍ତିତ ହୋଇ ଗଲା \n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger ସୂଚନା ଟି ପରିବର୍ତିତ ହେଲା ନାହିଁ: %s \n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s ପାଇଁ ଆବରଣ କୁ ପରିବର୍ତନ କରୁଅଛି \n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "ନୂତନ ଆବରଣ" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "ଆବରଣ ଟି ପରିବର୍ତିତ ହେଲା ନାହିଁ: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "ଆବରଣ ପରିବର୍ତିତ ହୋଇ ଗଲା \n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ପସନ୍ଦ...] ସମୂହ" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "କୌଣସି ସମୂହ ନାମ ଉଲ୍ଲଖିତ ହୋଇ ନାହିଁ \n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ସମୂହ ର ଅବୈଧ ପରିଚୟ %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "ସମୂହ କୁ ସୃଷ୍ଟି କରିବା କାର୍ଯ୍ଯ ବିଫଳ ହୋଇ ଗଲା: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "%s ସମୂହ ଟି ଅବସ୍ଥିତ ନାହିଁ \n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "%s ସମୂହ କୁ ଅପସାରଣ କରି ହେଲା ନାହିଁ: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "ଉଭୟ -L ଏବଂ -U କୁ ଉଲ୍ଲଖିତ କରା ଯାଇଛି \n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s ସମୂହ ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ରେ ଅସଫଳ: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s ସମୂହ ଟି ଲକ କରି ହେଲା ନାହିଁ: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s ସମୂହ ଟି ଅନ-ଲକ କରି ହେଲା ନାହିଁ: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s ସମୂହ ଟି ରୂପାନ୍ତରିତ କରି ହେଲା ନାହିଁ: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s କୁ ଅବଲୋକନ କରିବା ସମୟରେ ତୃଟି: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "%s କୁ ବ୍ଯବହାର କରି, କୌଣସି ସମୂହ ନାମ ଉଲ୍ଲେଖିତ ହୋଇ ନାହିଁ \n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "କୌଣସି ସମୂହ ନାମ ଉଲ୍ଲଖିତ ହୋଇ ନାହିଁ, %d ୟୁ.ଆଇ.ଡି. ପାଇଁ କୌଣସି ନାମ ନାହିଁ \n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "%s କୁ ବ୍ଯବହାର କରି, କୌଣସି ଚାଳକ ନାମ ଉଲ୍ଲେଖିତ ହୋଇ ନାହିଁ \n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s ସ୍ଥିତବାନ ନୁହଁ\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ପସନ୍ଦ...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' କୁ ଖୋଲିବା ସମୟରେ ତୃଟି: %s\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "`%s' ପାଇଁ ହିସାବ ଖାତା ଖୋଲିବା ସମୟରେ ତୃଟି: ଲାଇନ ଟି ସଠିକ ଭାବ ରେ ସଜା ଯାଇ ନାହିଁ \n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ଚାଳକ ର ଅବୈଧ ପରିଚୟ %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "ୟୁ.ଆଇ.ଡି. ୦ ସହିତ ଗୋଟିଏ ହିସାବ ଖାତା ସୃଷ୍ଟି କରିବା ପାଇଁ ଅସ୍ବୀକାର କରୁଅଛି \n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' ପାଇଁ %jd ଜି.ଆଇ.ଡି. ସହିତ ଗୋଟିଏ ସମୂହ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "ବିପଦ ଜନକ ହୋମ ଡିରେକ୍ଟୋରୀ `%s' କୁ %s ପାଇଁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ବ୍ୟବହାର କରିବା ପାଇଁ ମନା " "କରୁଅଛି\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s ପାଇଁ ଗୋଟିଏ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s ପାଇଁ ପ୍ରାରମ୍ଭିକ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ୍ କରିବା ସମୟରେ ତୃଟି: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s ପାଇଁ ଗୋଟିଏ ଚାଳକ ହିସାବ ଖାତା ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ କୁ ପରିବର୍ତନ କରୁଅଛି \n" #: apps/lpasswd.c:111 msgid "New password" msgstr "ନୂତନ ପ୍ରବେଶ ସଙ୍କେତ" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "ନୂତନ ପ୍ରବେଶ ସଙ୍କେତ (ନିଶ୍ଚିତ କରନ୍ତୁ)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "ପ୍ରବେଶ ସଙ୍କେତ ଟି ମିଶ୍ୁ ନାହିଁ, ପୁନର୍ବାର ପ୍ରଚେଷ୍ଟା କରନ୍ତୁ \n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "ପ୍ରବେଶ ସଙ୍କେତ ର ପରିବର୍ତନ ବାତିଲ ହୋଇ ଗଲା \n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀ %d ରୁ ପଢିବାରେ ତ୍ରୁଟି।\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s ଚାଳକ ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ସମୟରେ ତୃଟି: %s \n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s ସମୂହ ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ସମୟରେ ତୃଟି: %s \n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "ପ୍ରବେଶ ସଙ୍କେତ ଟି ପରବର୍ତିତ ହୋଇ ଗଲା \n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd ସମୂହ ଟି ଅବସ୍ଥିତ ନୁହେଁ \n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "`%s' ସମୂହ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s \n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "ହିସାବ ଖାତା ର ସୃଷ୍ଟି କରିବା ବିଫଳ ହୋଇ ଗଲା: %s \n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s କୁ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "%s ଚାଳକ କୁ ଅପସାରଣ କରି ହେଲା ନାହିଁ: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s ର ଗୋଟିଏ ଜି.ଆଇ.ଡି. ନମ୍ବର ନାହିଁ \n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "%jd ଜି.ଆଇ.ଡି. ଥିବା କୌଣସି ସମୂହ ଅବସ୍ଥିତ ନାହିଁ, ଅପସ୍ରୁତ ହେଉ ନାହିଁ \n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "%jd ଜି.ଆଇ.ଡି. ଥିବା କୌଣସି ସମୂହ ମାନଙ୍କ ର କୌଣସି ସମୂହ ନାମ ନାହିଁ \n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s ସମୂହ କୁ ଅପସାରଣ କରି ହେଲା ନାହିଁ: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ଚାଳକ ପାଇଁ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି କୁ ଅପସାରଣ କରିବା ସମୟରେ ତୃଟି" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s ଚାଳକ ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ରେ ବିଫଳ: %s \n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%s ଚାଳକ କୁ ଲକ୍ କରି ହେଲା ନାହିଁ: %s \n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%s ଚାଳକ କୁ ଆନ-ଲକ୍ କରି ହେଲା ନାହିଁ: %s \n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "ଚେତାବନୀ: ID %jd ସହିତ ସମୂହ ଟି ଅବସ୍ଥିତ ନୁହେଁ \n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s ଚାଳକ ଟି ରୂପାନ୍ତରିତ ହୋଇ ପାରିଲା ନାହିଁ: %s \n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%s ସମୂହ ଟି ରୂପାନ୍ତରିତ ହୋଇ ପାରିଲା ନାହିଁ: %s \n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s ପାଇଁ କୌଣସି ମୂଳସ୍ଥାନ ଡିରେକ୍ଟୋରି ନାହିଁ \n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s ପାଇଁ କୌଣସି ନୂତନ ମୂଳସ୍ଥାନ ଡିରେକ୍ଟୋରି ନାହିଁ \n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s ରୁ %s କୁ ସ୍ଥାନାସ୍ତରିତ କରିବା ସମୟରେ ତୃଟି: %s \n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "`%s' ବିନ୍ଯାସ ଫାଇଲ କୁ ଖୋଲି ପାରିଲା ନାହିଁ: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "`%s' ବିନ୍ଯାସ ଫାଇଲ କୁ ପ୍ରାରମ୍ଭ କରି ପାରିଲା ନାହିଁ: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "`%s' ବିନ୍ଯାସ ଫାଇଲ ଟି ଖୁବ ବଡ ଅଟେ" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "`%s' ବିନ୍ଯାସ ଫାଇଲ କୁ ପଢି ପାରିଲା ନାହିଁ: %s" #: lib/error.c:62 msgid "success" msgstr "ସଫଳ" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "ଏକକାଂଶ ଟି ବିନ୍ଯାସ ଦ୍ବାରା ନିଷ୍କ୍ରିୟ ହୋଇ ଗଲା" #: lib/error.c:66 msgid "generic error" msgstr "ବର୍ଗୀୟ ତୃଟି" #: lib/error.c:68 msgid "not enough privileges" msgstr "ଯଥେଷ୍ଟ ବିଶେଷ ଆକର୍ଷଣ ନାହିଁ" #: lib/error.c:70 msgid "access denied" msgstr "ପ୍ରବେଶାନୁମତି ଅସ୍ବୀକ୍ରୁତ ହୋଇ ଗଲା" #: lib/error.c:72 msgid "bad user/group name" msgstr "ଖରାପ ଚାଳକ/ସମୂହ ନାମ" #: lib/error.c:74 msgid "bad user/group id" msgstr "ଖରାପ ଚାଳକ/ସମୂହ ପରିଚୟ" #: lib/error.c:76 msgid "user/group name in use" msgstr "ଚାଳକ/ସମୂହ ନାମ ବ୍ଯବହ୍ରୁତ ହେଉଅଛି" #: lib/error.c:78 msgid "user/group id in use" msgstr "ଚାଳକ/ସମୂହ ପରିଚୟ ବ୍ଯବହ୍ରୁତ ହେଉଅଛି" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "ଟର୍ମିନାଲ ର ଗୁଣ ମାନଙ୍କୁ ପ୍ରକଳିତ କରୁଅଛି" #: lib/error.c:82 msgid "error opening file" msgstr "ଫାଇଲ ଖୋଲିବା ସମୟରେ ତୃଟି" #: lib/error.c:84 msgid "error locking file" msgstr "ଫାଇଲ କୁ ଲକ କରିବା ସମୟରେ ତୃଟି" #: lib/error.c:86 msgid "error statting file" msgstr "ଫାଇଲ ଉପରେ ଷ୍ଟାର୍ଟ କରିବା ସମୟରେ ତୃଟି" #: lib/error.c:88 msgid "error reading file" msgstr "ଫାଇଲ ର ପଠନ ସମୟରେ ତୃଟି" #: lib/error.c:90 msgid "error writing to file" msgstr "ଫାଇଲ େର ଲିଖନ ସମୟରେ ତୃଟି" #: lib/error.c:92 msgid "data not found in file" msgstr "ଫାଇଲ ରେ ତଥ୍ଯ ମିଳିଲା ନାହିଁ" #: lib/error.c:94 msgid "internal initialization error" msgstr "ଆଭ୍ଯନ୍ତରୀଣ ପ୍ରାରମ୍ଭିକୀକରଣ ତୃଟି" #: lib/error.c:96 msgid "error loading module" msgstr "ଏକକାଂଶ କୁ ଧାରଣ କରିବା ସମୟରେ ତୃଟି" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "ଏକକାଂଶ ରେ ପ୍ରତୀକ ର ସମାଧାନ କରିବା ସମୟରେ ତୃଟି" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "ପାଠାଗାର/ଏକକାଂଶ ର ସଂସ୍କରଣ ମିଶୁ ନାହିଁ" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "ଆଲ-ଲକ କଲେ ଏହା ପ୍ରବେଶ ସଙ୍କେତ ର କ୍ଷେତ୍ର କୁ ଖାଲି କରି ଦେବ" #: lib/error.c:105 msgid "invalid attribute value" msgstr "ଅବୈଧ ବସ୍ତୁ ମୂଲ୍ୟ" #: lib/error.c:107 msgid "invalid module combination" msgstr "ଅବୈଧ ଏକକାଂଶ ଯୁଗଳ" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "ଅଜଣା ତୃଟି" #: lib/misc.c:240 msgid "invalid number" msgstr "ଅବୈଧ ସଂଖ୍ୟା" #: lib/misc.c:254 msgid "invalid ID" msgstr "ଅବୈଧ ପରିଚୟ" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "କୌଣସି ପ୍ରାରମ୍ଭିକୀକରଣ %s କାର୍ଯ୍ଯ `%s' ରେ ନାହିଁ" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' ରେ ଏକକାଂଶ ର ସଂସ୍କରଣ ମିଶୁ ନାହିଁ" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' ଏକକାଂଶ ଟି `%s' କୁ ବ୍ଯାଖ୍ଯା କରୁନାହିଁ" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "ଟର୍ମିନାଲ ର ଗୁଣ ମାନଙ୍କୁ ପଢିବା ସମୟରେ ତୃଟି" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "ଟର୍ମିନାଲ ର ଗୁଣ ମାନଙ୍କୁ ସେଟ ସମୟରେ ତୃଟି" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "ଟର୍ମିନାଲ ରୁ ପଢିବା ସମୟରେ ତୃଟି" #: lib/user.c:218 msgid "name is not set" msgstr "ନାମ ଟି ସେଟ ହୋଇ ନାହିଁ" #: lib/user.c:223 msgid "name is too short" msgstr "ନାମ ଟି ଅତି କ୍ଷୁଦ୍ର ଅଟେ" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "ନାମ ଟି ଅତ୍ଯଧିକ ବ୍ରୁହତ ଅଟେ (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "ନାମ ଟି ନନ୍-ଆସ୍କି ଅକ୍ଷର ମାନଙ୍କୁ ଧାରଣ କରିଅଛି" #: lib/user.c:242 msgid "name contains control characters" msgstr "ନାମ ଟି ନିୟନ୍ତ୍ରଣ ଅକ୍ଷର ମାନଙ୍କୁ ଧାରଣ କରିଅଛି" #: lib/user.c:249 msgid "name contains whitespace" msgstr "ନାମ ଟି ହ୍ବାଇଟ-ସ୍ପେଶ ଧାରଣ କରିଅଛି" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "ନାମ ଟି ଗୋଟିଏ ସଂଯୋଜକ ଚିହ୍ନ ଦ୍ବାରା ଆରମ୍ଭ ହୋଇଥାଏ" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "ନାମ ଟି ଗୋଟିଏ ଅବୈଧ ଅକ୍ଷର `%c' କୁ ଧାରଣ କରିଅଛି" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "%s ଚାଳକ ର କୌଣସି ୟୁ.ଆଇ.ଡି. ନାହିଁ" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "%s ସମୂହ ର କୌଣସି ୟୁ.ଆଇ.ଡି. ନାହିଁ" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "%jd ଚାଳକ ର କୌଣସି ନାମ ନାହିଁ" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "%jd ନାମ ର କୌଣସି ନାମ ନାହିଁ" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "ଚାଳକ ର କୌଣସି ନାମ କିମ୍ବା ୟୁ.ଆଇ.ଡି. ନାହିଁ" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "ସମୂହ ର କୌଣସି ନାମ କିମ୍ବା ୟୁ.ଆଇ.ଡି. ନାହିଁ" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "ବିପଦ ଜନକ ହୋମ ଡିରେକ୍ଟୋରୀ `%s' କୁ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବରେ ବ୍ୟବହାର କରିବା ପାଇଁ ମନା କରୁଅଛି" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s ର ଅବୈଧ ପୂର୍ବନିର୍ଦ୍ଧାରିତ ମୂଲ୍ଯ: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ଫାଇଲ କୁ ଲକ କରୁଥିବା ସମୟରେ ତୃଟି: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ସୁରକ୍ଷା ପ୍ରସଙ୍ଗକୁ ପାଇପାରିଲା ନାହିଁ: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' ର ସୁରକ୍ଷା ପ୍ରସଙ୍ଗ କୁ ପାଇ ପାରିଲା ନାହିଁ: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ସୁରକ୍ଷା ପ୍ରସଙ୍ଗ କୁ `%s' କୁ ସେଟ କରି ପାରିଲା ନାହିଁ: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' ର ସୁରକ୍ଷା ପ୍ରସଙ୍ଗ କୁ ସ୍ଥିର କରିପାରିଲା ନାହିଁ: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' କୁ ଖୋଲି ପାରିଲା ନାହିଁ: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' ଉପରେ ଷ୍ଟାର୍ଟ କୁ କାର୍ଯ୍ଯକାରି କରି ପାରିଲା ନାହିଁ: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' କୁ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "`%s' ନକଲ ସଂରକ୍ଷଣ ଫାଇଲ ଅବସ୍ଥିତ ଅଛି ଏବଂ ଏହା ଏକ ନିୟମିତ ଫାଇଲ ନୁହେଁ" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' ର ମାଲିକ କୁ ପରିବର୍ତନ କରିବା ରେ ତୃଟି: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s' ର ଧାରା ପରିବର୍ତ୍ତନ କରିବା ସମୟରେ ତ୍ରୁଟି: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' କୁ ପଢିବା ସମୟରେ ତୃଟି: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' କୁ ଲେଖିବା ସମୟରେ ତୃଟି: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "ନକଲ ସଂରକ୍ଷଣ ଫାଇଲ ର ଆକାର ମିଶୁ ନାହିଁ" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s ମୂଲ୍ୟ `%s': `:' ଅନୁମୋଦିତ ନୁହଁ" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' ରୁ ପଢି ପାରିଲା ନାହିଁ: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "ଫାଇଲ ରେ ଭରଣ ପୂର୍ବ ରୁ ରହିଛି" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s' ରେ ଲେଖି ପାରିଲା ନାହିଁ: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "ବସ୍ତୁ ର %s ଭଳି କୌଣସି ଗୁଣ ନାହିଁ" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "ଫାଇଲରେ ଦ୍ୱନ୍ଦମୟ ନାମବିଶିଷ୍ଟ ଭରଣ ପୂର୍ବରୁ ରହିଅଛି" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' ସଂଗୁପ୍ତ ପ୍ରବେଶ ସଂକେତରେ ଅନୁମୋଦିତ ନୁହଁ" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "ପ୍ରବେଶ ସଙ୍କେତ କୁ ସଂଗୁପ୍ତ କରିବା ସମୟରେ ତୃଟି" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' ଏବଂ `%s' ଏକକାଂଶଗୁଡ଼ିକୁ ଯୋଡ଼ିପାରିବେ ନାହିଁ" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "ପ୍ରମୂଖ ଚାଳକ ର ବିଶେଷ ଆକର୍ଷଣ ମାନଙ୍କ ସହିତ ନିଷ୍ପାଦିତ ହେଉ ନାହିଁ" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "କୌଣସି ଛାୟା ଫାଇଲ ଉପସ୍ଥିତ ନାହିଁ -- disabling" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "`%s' ସେବା ଏବଂ `%s' ଅଧିକାର ପାଇଁ କେ.ଏ.ଡି.ଏମ.୫ ସେବକ ସହିତ ସଂଯୋଗ କରିବା ରେ ତୃଟି: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "କେର୍ବେରୋଶ ପାଠାଗାର ର ପ୍ରାରମ୍ଭିକୀକରଣ ସମୟରେ ତୃଟି" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "କେର୍ବେରୋଶ ପାଇଁ `%s' ଚାଳକ ମାନ ର ବିଶ୍ଳେଷଣ କରିବା ସମୟରେ ତୃଟି" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "ବସ୍ତୁ ର ସଂରଚନା ରେ କୌଣସି %s କିମ୍ବା %s ଗୁଣ ମାନ ନାହିଁ" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "ବସ୍ତୁ ର କୌଣସି %s କିମ୍ବା %s ଗୁଣ ନାହିଁ" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "ବସ୍ତୁ ଟି %s କିମ୍ବା %s ଗୁଣ ବିନା ସୃଷ୍ଟି କରା ଯାଇଛି" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "`%s' ପାଇଁ କେର୍ବେରୋଶ ରୁ ସୂଚନା ପଢିବା ସମୟରେ ତୃଟି" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "ବସ୍ତୁ ର କୌଣସି %s ଗୁଣ ନାହିଁ" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ସମୟରେ ତୃଟି" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "କେର୍ବେରୋଶ ଅଧିକାର" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "କେର୍ବେରୋଶ ପ୍ରଶାସନୀୟ କତ୍ରୁପକ୍ଷ" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "ପ୍ରଶାସନୀୟ କତ୍ରୁପକ୍ଷ ଙ୍କ ପାଇଁ କେର୍ବେରୋଶ ପ୍ରବେଶ ସଙ୍କେତ" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ଏଲ.ଡି.ଏ.ପି. ପାଠାଗାର ର ପ୍ରାରମ୍ଭିକୀକରଣ ସମୟରେ ତୃଟି" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "ଏଲ.ଡି.ଏ.ପି. ପ୍ରୋଟୋକଲ କୁ %d ସଂସ୍କରଣ କୁ ସେଟ କରି ପାରିଲା ନାହିଁ" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "ଟି.ଏଲ.ଏସ୍. କୁ ଏଲ.ଡି.ଏ.ପି. ସେବକ ସହିତ ଆଦାନପ୍ରଦାନ କରି ପାରିଲା ନାହିଁ" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "ଏଲ.ଡି.ଏ.ପି. ସେବକ ସହିତ ବାନ୍ଧି ପାରିଲା ନାହିଁ" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "ଏଲ.ଡି.ଏ.ପି. ସେବକ ସହିତ ବାନ୍ଧି ପାରିଲା ନାହିଁ, `%s' ରୂପ ରେ ପ୍ରଥମ ପ୍ରଚେଷ୍ଟା: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "ଚାଳକ ବସ୍ତୁ ର କୌଣସି %s ଗୁଣ ନାହିଁ" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "ଚାଳକ ବସ୍ତୁ ଟି %s ବିନା ସୃଷ୍ଟି ହୋଇଥିଲା" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "ଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଭରଣ ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "ଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଭରଣ କୁ ରୂପାନ୍ତରଣ କରିବା ସମୟରେ ତୃଟି: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "ଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଭରଣ ର ନାମ ବଦଳାଇବା ସମୟରେ ତୃଟି: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "ବସ୍ତୁ ର କୌଣସି %s ଗୁଣ ନାହିଁ" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "ଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଭରଣ କୁ ଅପସାରଣ ସମୟରେ ତୃଟି: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "ବସ୍ତୁ ର କୌଣସି %s ଗୁଣ ନାହିଁ" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "ଅସମର୍ଥିତ ପ୍ରବେଶ ସଂକେତ ସଂଗୁପ୍ତ ଯୋଜନା" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "ଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି ଏଭଳି କୌଣସି ବସ୍ତୁ ନାହିଁ" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "କୌଣସି `%s' ଗୁଣ ମିଳିଲା ନାହିଁ" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "ଏଲ.ଡି.ଏ.ପି. ଡିରେକ୍ଟୋରି %s ପାଇଁ ପ୍ରବେଶ ସଙ୍କେତ ସେଟ କରିବା ସମୟରେ ତୃଟି: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "ଏଲ.ଡି.ଏ.ପି. ସେବକ ର ନାମ" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "ଡି.ଏନ୍. ଆଧାରିତ ଏଲ.ଡି.ଏ.ପି. ସନ୍ଧାନ" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "ଡି.ଏନ୍. ବନ୍ଧିତ ଏଲ.ଡି.ଏ.ପି." #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "ପ୍ରବେଶ ସଙ୍କେତ ବନ୍ଧିତ ଏଲ.ଡି.ଏ.ପି." #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "ଏଲ.ଡି.ଏ.ପି. ଏସ୍.ଏ.ଏସ୍.ଏଲ. ଚାଳକ" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "ଏଲ.ଡି.ଏ.ପି. ଏସ୍.ଏ.ଏସ୍.ଏଲ. ବୈଧିକରଣ ଚାଳକ" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "ଚାଳକ କୁ ସୃଷ୍ଟି କରିବା ସମୟରେ ସାଇରସ୍ ଏସ୍.ଏ.ଏସ୍.ଏଲ. ତୃଟି: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "ଚାଳକ କୁ ଅପସାରଣ କରିବା ସମୟରେ ସାଇରସ୍ ଏସ୍.ଏ.ଏସ୍.ଏଲ. ତୃଟି: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "ସାଇରସ୍ ଏସ୍.ଏ.ଏସ୍.ଏଲ. ର ପ୍ରାରମ୍ଭିକୀକରଣ ସମୟରେ ତୃଟି: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ଚାଳକ ପାଇଁ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି ସୃଷ୍ଟି କରିବା ସମୟରେ ତୃଟି" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ଚାଳକ ପାଇଁ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି କୁ ଅପସାରଣ କରିବା ସମୟରେ ତୃଟି" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ଚାଳକ ପାଇଁ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି କୁ ସ୍ଥାନାନ୍ତରଣ କରିବା ସମୟରେ ତୃଟି" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s ର ପ୍ରାରମ୍ଭିକୀକରଣ ସମୟରେ ତୃଟି: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ଅବୈଧ %s ପରିଚୟ \n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "%jd ପରିଚୟ ବିଶିଷ୍ଟ ସମୂହ କୁ ଖୋଜୁଅଛି \n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s ନାମ ବିଶିଷ୍ଟ ସମୂହ କୁ ଖୋଜୁଅଛି \n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "%jd ପରିଚୟ ବିଶିଷ୍ଟ ଚାଳକ କୁ ଖୋଜୁଅଛି \n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s ନାମ ବିଶିଷ୍ଟ ଚାଳକ କୁ ଖୋଜୁଅଛି \n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "ଭରଣ ଟି ମିଳିଲା ନାହିଁ \n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "ପ୍ରୋତ୍ସାହନ ସଫଳ ହେଲା \n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "ପ୍ରୋତ୍ସାହନ ବିଫଳ ହେଲା \n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଚାଳକ ର ବସ୍ତୁ ର ଶ୍ରେଣୀ:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଚାଳକ ର ଗୁଣ ର ନାମ ମାନ:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଚାଳକ ର ଗୁଣ ମାନଙ୍କୁ ପାଉଛି:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "ଚାଳକ ର ସଂରଚନା କୁ ନକଲ କରୁଅଛି:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s ର ଗୋଟିଏ ମୂଳ ସ୍ଥାନ ଡିରେକ୍ଟୋରି ନାହିଁ \n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s କୁ ଅପସାରଣ କରିବା ସମୟରେ ତୃଟି: %s \n" libuser-0.60~dfsg/po/lv.gmo0000644000175000017500000001202012226342604015631 0ustar tzafrirtzafrir?Y pq )"'Lt " !,FWf{ #" 9 @Mc~#!  5 = V +d   $ * * ? V &n        $ E S f #F j   #  " .36j#%CXi -!.("Wz)(0Ih+"+A,m-*'AZw&4#  :5"1%/6)-;=.7(?!32 >80 +$  9<'*,Account creation failed: %s. Account is locked. Account is not locked. E-Mail AddressError changing owner of `%s': %sError creating %s: %s. Error creating group `%s': %s Error creating home directory for %s: %s Error creating user account for %s: %s Error opening `%s': %s. Error reading `%s': %sGiven NameGroup %jd does not exist Group %s could not be deleted: %s Group %s does not exist. Group creation failed: %s Home PhoneInternal PAM error `%s'. Internal error. Invalid ID %s Invalid group ID %s LDAP SASL UserLDAP Server NameNew passwordNew password (confirm)No group name specified, using %s. No group name specified. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password change canceled. Password changed. Passwords do not match, try again. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. SurnameUser %s does not exist. Warning: %ld Warning: Group with ID %jd does not exist. access deniedbad user/group idbad user/group nameconfiguration file `%s' is too largecould not open configuration file `%s': %scould not read configuration file `%s': %sdata not found in fileerror creating `%s': %serror creating home directory for usererror loading moduleerror locking fileerror locking file: %serror opening fileerror reading fileerror writing to filegroup %s has no GIDmodule `%s' does not define `%s'unknown erroruser %s has no UIDProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Latvian (http://www.transifex.com/projects/p/fedora/language/lv/) Language: lv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2); Neizdevās konta izveidošana: %s. Konts ir bloķēts. Konts nav bloķēts. E-pasta adreseKļūda mainot īpašnieku `%s': %sKļūda izveidojot %s: %s. Kļūda izveidojot grupu `%s': %s Kļūda izveidojot mājas mapi priekš %s: %s Kļūda izveidojot lietotāja kontu priekš %s: %s Kļūda atverot `%s': %s. Kļūda nolasot `%s': %sVārdsGrupa %jd neeksistē Grupa %s nevar tik dzēsta: %s Grupa %s neeksistē. Grupas izveidošana neizdevās: %s Mājas telefonsIekšējā PAM kļūda `%s'. Iekšējā kļūda. Nederīgs ID %s Nederīgs grupas ID %s LDAP SASL LietotājsLDPA servera nosaukumsJaunā paroleJaunā parole (apstiprināt)Nav grupas nosaukums norādīts, izmanto %s. Nav grupas nosaukums norādīts. Nav lietotāja vārds norādīts, izmanto %s. Nav lietotāja vārds norādīts. BirojsBiroja telefonsParoles derīguma termiņš beigsies: %s Paroles mainīšana atcelta. Parole nomainīta. Paroles nesakrīt, mēģiniet vēlreiz. Meklē grupu vārdā %s. Meklē grupu ar ID %jd. Meklē lietotāju vārdā %s. Meklē lietotāju ar ID %jd. UzvārdsLietotājs %s neeksistē. Bŗidinājums: %ld Brīdinājums: Grupa ar ID %jd neeksistē. Piekļūšana aizliegtaSlikts lietotāja/grupas IDSlikts lietotāja/grupas nosaukumsKonfigurācijas fails `%s' ir pārāk lielsNevar atvērt konfigurācijas failu `%s': %sNevar nolasīt konfigurācijas failu `%s': %sDati nav atrasti failākļūda izveidojot `%s': %skļūda izveidojot mājas mapi lietotājamklūda ielādējot moduliKļūda bloķējot failuKļūda bloķējot failu: %sKļūda atverot failuKļūda nolasot failuKļūda rakstot failāGrupai %s nav GIDmodulis `%s' nenosaka `%s'nezināma kļūdaLietotājam %s nav UIDlibuser-0.60~dfsg/po/hr.po0000644000175000017500000010564112226342567015501 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/fedora/language/" "hr/)\n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Odbacivanje privilegija nije uspjelo.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Interna pogreška.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s nema dopuštenja za izmjenu finger podatka o %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Nepoznati kontekst korisnika" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Nije moguće postaviti zadani kontekst za /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Pogreška pri inicijalizaciji PAM-a.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Provjere autentičnosti za %s nije uspjela.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Interna pogreška PAM-a `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Autentifikacija nepoznatog korisnika.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Neodgovarajući korisnik.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPCIJA...] korisnik" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Pogreška pri raščlanjivanju argumenata: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Korisničko ime nije određeno.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Pogreška pri inicijalizaciji %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Korisnik %s ne postoji.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Nalog je zaključan.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Nalog nije zaključan.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Najmanje:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Najviše:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Upozorenje:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Neaktivno:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nikad" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Posljednja izmjena:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Lozinka zastarijeva:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Neaktivna lozinka:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Nalog zastarijeva:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Uređivanje podataka o zastari za %s nije uspjelo: %s.\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPCIJA...] [korisnik]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Korisničko ime nije određeno. Nema naziva za uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Izmjena podataka usluge finger za %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Puno ime" #: apps/lchfn.c:146 msgid "Surname" msgstr "Prezime" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Ime" #: apps/lchfn.c:167 msgid "Office" msgstr "Ured" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Uredski telefon" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefon (kućni)" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Adresa e-pošte" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Podaci usluge finger nisu izmijenjene: pogreška unosa.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Podaci usluge finger izmijenjeni su.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Podaci usluge finger nisu izmijenjene: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Promjena korisničke ljuske za %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nova ljuska" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Korisnička ljuska nije promijenjena:%s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Korisnička ljuska je promijenjena.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPCIJA...] grupa" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Naziv grupe nije određen.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Neispravan ID grupe %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Izrada grupe nije uspjela: %s.\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Grupa %s ne postoji.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Grupu %s nije moguće izbrisati: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Podjednako su određeni -L i -U.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Postavljanja lozinke za grupu %s nije uspjelo: %s.\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Grupu %s nije moguće zaključati: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Grupu %s nije moguće otključati: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Grupu %s nije moguće izmijeniti: %s.\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Pogreška pri pretraživanju %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Naziv grupe nije određen. Bit će upotrijebljen %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Naziv grupe nije određen. Nema naziva za gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nije određeno korisničko ime. Bit će upotrijebljen %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPCIJA...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Pogreška pri otvaranju `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Pogreška pri izradi naloga za `%s': linija je nepravilno oblikovana.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Neispravan ID korisnika %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Izrada naloga s UID 0 je odbijena.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Pogreška pri izradi grupe za `%s' uz GID %jd: %s.\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Pogreška pri izradi početne mape za %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Pogreška pri postavljanju početne lozinke za %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Pogreška pri izradi korisničkog naloga za %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Izmjena lozinke za %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nova lozinka" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nova lozinka (potvrdite)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Lozinke se ne podudaraju, pokušajte ponovo.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Izmjena lozinke je otkazana.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Pogreška pri postavljanju lozinke za korisnika %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Pogreška pri postavljanju lozinke za grupu %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Lozinka je izmijenjena.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Grupa %jd ne postoji.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Pogreška pri izradi grupe `%s': %s.\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Izradi naloga nije uspjela: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Pogreška pri izradi %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Brisanje korisnika %s nije moguće: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s nema GID broj.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Ne postoji grupa s GID %jd. Nema uklanjanja.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Grupa s GID %jd nije imala naziv grupe.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Brisanje grupe %s nije moguće: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "Pogreška pri uklanjanju početne mape za korisnika" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Postavljanja lozinke za korisnika %s nije uspjelo: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Korisnik %s nije mogao biti zaključan: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Korisnik %s nije mogao biti otključan: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Korisnik %s nije mogao biti izmijenjen: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Izmjena grupe %s nije moguća: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Prethodna početna mapa za %s ne postoji.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Novi naziv za mapu %s ne postoji.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Pogreška pri premještanju %s u %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "Otvaranje konfiguracijske datoteke`%s' nije uspjelo: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "Pokretanje konfiguracijske datoteke`%s' nije uspjelo: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "Konfiguracijska datoteka`%s' je prevelika" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "Čitanje konfiguracijske datoteke`%s' nije uspjelo: %s" #: lib/error.c:62 msgid "success" msgstr "Uspjeh" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "Modul je onemogućen u konfiguraciji" #: lib/error.c:66 msgid "generic error" msgstr "Generička pogreška" #: lib/error.c:68 msgid "not enough privileges" msgstr "Nema dovoljno privilegija" #: lib/error.c:70 msgid "access denied" msgstr "Pristup odbijen" #: lib/error.c:72 msgid "bad user/group name" msgstr "Loše ime korisnika ili naziv grupe" #: lib/error.c:74 msgid "bad user/group id" msgstr "Loš ID korisnika ili grupe" #: lib/error.c:76 msgid "user/group name in use" msgstr "Ime korisnika ili naziv grupe je u upotrebi" #: lib/error.c:78 msgid "user/group id in use" msgstr "ID korisnika ili grupe je u upotrebi" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "Pogreška pri rukovanju s atributima terminala" #: lib/error.c:82 msgid "error opening file" msgstr "Pogreška pri otvaranju datoteke" #: lib/error.c:84 msgid "error locking file" msgstr "Pogreška pri zaključavanju datoteke" #: lib/error.c:86 msgid "error statting file" msgstr "Pogreška datoteke statistika" #: lib/error.c:88 msgid "error reading file" msgstr "Pogreška pri čitanju datoteke" #: lib/error.c:90 msgid "error writing to file" msgstr "Pogreška pri zapisivanju u datoteku" #: lib/error.c:92 msgid "data not found in file" msgstr "Podatak nije pronađen u datoteci" #: lib/error.c:94 msgid "internal initialization error" msgstr "Interna greška inicijalizacije" #: lib/error.c:96 msgid "error loading module" msgstr "Pogreška pri učitavanju modula" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "Pogreška pri razrješavanju znaka u modulu" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "Ne podudaraju se verzije biblioteke i modula" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "Otključavanje će polje lozinke učiniti praznim" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "Nepoznata pogreška" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "Nema funkcije pokretanja %s u `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "Ne podudaraju se verzije modula u `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "Modul `%s' ne određuje `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "Pogreška pri čitanju atributa terminala" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "Pogreška pri postavljanju atributa terminala" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "Pogreška pri čitanja iz terminala" #: lib/user.c:218 msgid "name is not set" msgstr "Naziv nije zadan" #: lib/user.c:223 msgid "name is too short" msgstr "Naziv je prekratak" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "Naziv je predugačak (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "Naziv sadrži znakove koji nisu ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "Naziv sadrži kontrolne znakove" #: lib/user.c:249 msgid "name contains whitespace" msgstr "Naziv sadrži prazna mjesta (razmake)" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "Naziv započinje znakom rastavljanja" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "Naziv sadrži neispravni znak `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "Korisnik %s nema UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "Grupa %s nema GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "Korisnik %jd nema naziva" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "Grupa %jd nema naziva" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "Korisnik nema ni naziv ni UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "Grupa nema ni naziv ni UID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Neispravana zadana vrijednost polja %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "Pogreška pri zaključavanju datoteke: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "Dohvaćanje sigurnosnog sadržaja `%s' nije uspjelo: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "Dohvaćanje sigurnosnog sadržaja u `%s' nije uspjelo: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "Otvaranje`%s' nije uspjelo: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "Izrada statistike`%s' nije uspjela: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "Pogreška pri izradi`%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "Datoteka sigurnosnog spremanja`%s' postoji i nije regularna datoteka" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Pogreška pri izmjeni vlasnika`%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Pogreška pri čitanju `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Pogreška pri zapisivanju `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "Ne podudara se veličina datoteke sigurnosnog spremanja" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "Čitanje iz `%s' nije moguće: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "Unos već postoji u datoteci" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "Zapisivanje u `%s' nije moguće: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "Objekt entiteta nema atribut %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "Pogreška pri šifriranju lozinke" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "Ne izvršava se s pravima superkorisnika" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "Datoteka lozinki u sjeni ne postoji -- Bit će onemogućeno" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "Pogreška pri povezivanju s kadm5 poslužiteljem za uslugu`%s' u području `" "%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "Pogreška pri inicijalizaciji kerberos biblioteka" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "Pogreška pri raščlanjivanju korisničkog imena `%s' za kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "Struktura entiteta nema atribute %s ili %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "Entitet nema atribute %s ili %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "Entitet je izrađen bez atributa %s ili %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "Pogreška pri čitanju podataka za %s' iz kerberosa" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "Entitet nema atribut %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "Pogreška pri postavljanju lozinke za `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Područje Kerberosa" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Principal administratora kerberosa" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Lozinka kerberosa za principal administratora" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "Pogreška pri inicijalizaciji ldap biblioteke" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "Zadavanje LDAP protokola za verziju %d nije uspjelo" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "TLS pregovaranja s LDAP poslužiteljem nije uspjelo" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "Povezivanje s LDAP poslužiteljem nije uspjelo" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "Povezivanje s LDAP poslužiteljem nije uspjelo. Prvi pokušaj kao %s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "Korisnički objekt nije imao atribut %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "Korisnički objekt je izrađen bez `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "Pogreška pri izradi unosa LDAP imenika: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "Pogreška pri uređivanju unosa LDAP imenika: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "Pogreška pri preimenovanju unosa LDAP imenika: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "Objekt nije imao atribut %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "Pogreška pri uklanjanju unosa LDAP imenika: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "Objekt nema atribut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "Takav objekt ne postoji u LDAP imeniku" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "Atribut `%s' nije pronađen" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "Pogreška pri postavljanju lozinke u LDAP imeniku za %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Naziv LDAP poslužitelja" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Osnovna DN LDAP pretrage" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind lozinka" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL korisnik" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL korisnik autorizacije" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Pogreška pri izradi Cyrus SASL korisnika: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Pogreška pri uklanjanju Cyrus SASL korisnika: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Pogreška pri inicijalizaciji Cyrus SASL-a: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "Pogreška pri izradi početne mape za korisnika" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "Pogreška pri uklanjanju početne mape za korisnika" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "Pogreška pri premještanju početne mape za korisnika" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Pogreška pri inicijalizaciji %s: %s.\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Neispravan ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Pretražuje se za grupom s ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Pretražuje se za grupom s nazivom %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Pretražuje se za korisnikom s ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Pretražuje se za korisnikom s nazivom %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Unos nije pronađen.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Odzivi su uspjeli.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Odzivi nisu uspjeli.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Zadane klase korisničkih objekata:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Zadani atributi korisničkih naziva: \n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Dohvaćanje zdanih korisničkih atributa:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kopiranje strukture korisnika:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s nema početnu mapu.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Pogreška pri uklanjanju %s: %s.\n" libuser-0.60~dfsg/po/mr.po0000644000175000017500000013150412226342567015503 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Rahul Bhalerao , 2006 # sandeep shedmake , 2007 # Sandeep Shedmake , 2008, 2009 # sandeeps , 2009 # sandeeps , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Marathi (http://www.transifex.com/projects/p/fedora/language/" "mr/)\n" "Language: mr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "हक्क वगळण्यास अपयशी.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "आंतरीक त्रूटी.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s ची finger माहिती बदलवण्यास %s ला अधिकार नाही\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "अपरिचित वापरकर्ता संदर्भ" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd करता मूलभूत संदर्भ निश्चित करू शकत नाही\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM प्रारंभ करतेवेळी त्रुटी.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s करीता अधिप्रमाणन अयशस्वी.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "आंतरीक PAM त्रूटी `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "अपरिचित वापरकर्ता अधिप्रमाणित.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "वापरकर्ता जुळला नाही.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] वापरकर्ता" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "बाबी वाचतेवेळी त्रुटी: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "वापरकर्त्याचे नाव दर्शविले नाही.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s प्रारंभ करतेवेळी त्रुटी: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s वापरकर्ता अस्तित्वात नाही.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "खाती कुलूपबंद.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "खाती कुलूपबंद नाही.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "किमान:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "कमाल:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "सावधान:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "निषक्रिय:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "कधीच नाही" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "शेवटचा बदल:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "पासवर्ड कालबाह्य:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "पासवर्ड निषक्रिय:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "खाती कालबाह्य:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s करता एजींग माहिती संपादित करू शकला नाही: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [वापरकर्ता]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "वापरकर्त्याचे नाव दर्शविले नाही, uid %d करीता नाव नाही.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s करता finger माहिती बदलवा.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "पूर्ण नाव" #: apps/lchfn.c:146 msgid "Surname" msgstr "आडनाव" #: apps/lchfn.c:157 msgid "Given Name" msgstr "दिलेले नाव" #: apps/lchfn.c:167 msgid "Office" msgstr "ऑफिस" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "ऑफिस फोन" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "घरचा फोन" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "इमेल पत्ता" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "finger माहिती बदल्यागेली नाह: आदान त्रूटी.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger माहिती बदलवण्यात आली.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger माहिती बदलवली नाही: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s कर्ता शेल बदलवत आहे.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "नविन शेल" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "शेल बदलवले नाही: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "शेल बदलवले.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] समुह" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "समुह नाव व्याख्यित नाही.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "अवैध समुह ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "समुह निर्माण करण्यास अपयशी: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "समुह %s अस्तित्वात नाही.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "समुह %s काढू शकत नाही: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "दोन्ही -L व -U दर्शविले आहे.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s समुहकर्ता पासवर्ड निश्चित करण्यास अपयशी: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s समुह कुलूपबंद करू शकत नाही: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s समुह कुलूपबंद करू शकला नाही: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s समुह संपादित करू शकला नाही: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s शोधतेवेळी त्रुटी: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "%s वापरून, समुहाचे नाव व्याख्यित नाही.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "समुह नाव दर्शविले नाही, gid %d करीता नाव नाही.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "%s वापरुन, वापरकर्त्याचे नाव व्याख्यित नाही.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s अस्तित्वात नाही\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' उघडतेवेळी त्रुटी: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "`%s' करीता खाते बनवितेवेळी त्रुटी: ओळ अयोग्यरित्या संपादित केले.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "अवैध वापरकर्ता ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 सह खाती निर्माण करण्यास नकार.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' करीता GID %jd सह समुह बनवितेवेळी त्रुटी: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "पूर्वनिर्धारीतपणे हानीकारक होम डिरेक्ट्री `%s' चा वापर, %s करीता, नकारात आहे\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s करीता मुख्य संचयीका निर्माण करतेवेळी त्रुटी: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s करीता प्रारंभी पासवर्ड निश्चित करा: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s वापरकर्त्यास खाती बनवितेवेळी त्रुटी: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s करता पासवर्ड बदलवत आहे.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "नविन पासवर्ड" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "नविन पासवर्ड (निश्चित करा)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "पासवर्ड जुळत नाही, पुन्हा प्रयत्न करा.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "पासवर्ड बदल रद्द केले.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "फाइल डिस्क्रिप्टर %d पासून वाचतेवेळी त्रुटी.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s वापरकर्त्यास पासवर्ड निश्चित करतेवेळी त्रुटी: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s समुहकरीता पासवर्ड निश्चित करतेवेळी त्रुटी: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "पासवर्ड बदलविले.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "समुह %jd अस्तित्वात नाही\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "%s समुह निर्माण करतेवेळी त्रुटी: %s.\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "खाती निर्माण करण्यास अपयशी: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s निर्माण करतेवेळी त्रुटी: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "%s वापरकर्ता काढू शकला नाही: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s ला gid क्रमांक नाही.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd रहीत समुह अस्तित्वात नाही, काढुन टाकत नाही.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd सह समुहला समुह नाव नाही.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s समुह काढू शकला नाही: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "वापरकर्त्यास मुख्य संचयीका काढुन टाकतेवेळी त्रुटी" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s वापरकर्त्यास पासवर्ड निश्चित करण्यास अपयशी: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%s वापरकर्त्यास कुलूपबंद करू शकला नाही: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%s वापरकर्त्यास कुलूपबंदीतून सुटका करू शकला नाही: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "सावधान: समुह ID %jd सह अस्तित्वात नाही.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s वापरकर्ता संपादित करू शकला नाही: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "समुह %s संपादित करू शकला नाही: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s करता जुनी मुख्य संचयीका नाही.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s करीता मुख्य संचयीका नाही.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s पासुन %s पर्यंत स्थानांतर करतेवेळी त्रुटी: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "संरचना फाइल `%s' उघडू शकला नाही: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "संरचना फाइल `%s' सुरू करू शकला नाही: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "संरचना फाइल `%s' खूपच मोठी आहे" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "`%s' संरचना फाइल वाचू शकला नाही: %s" #: lib/error.c:62 msgid "success" msgstr "यश" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "संरचनाने घटकास अकार्यान्वीत केले" #: lib/error.c:66 msgid "generic error" msgstr "प्रजातीय त्रूटी" #: lib/error.c:68 msgid "not enough privileges" msgstr "हवे थवडे हक्क नाही" #: lib/error.c:70 msgid "access denied" msgstr "प्रवेश निषेध" #: lib/error.c:72 msgid "bad user/group name" msgstr "वाईट वापरकर्ता/समुहाचे नाव" #: lib/error.c:74 msgid "bad user/group id" msgstr "वाईट वापरकर्ता/समुहाचे आयडी" #: lib/error.c:76 msgid "user/group name in use" msgstr "वापरणीत असलेले वापरकर्त्याचे/समुहाचे नाव" #: lib/error.c:78 msgid "user/group id in use" msgstr "वापरणीत असलेले वापरकर्त्याचे/समुहाचे आयडी" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "टर्मिनलचे गुणधर्म संपादित करतेवेळी त्रूटी" #: lib/error.c:82 msgid "error opening file" msgstr "फाइल उघडतेवेळी त्रूटी" #: lib/error.c:84 msgid "error locking file" msgstr "फाइल कुलूपबंद करतेवेळी त्रूटी" #: lib/error.c:86 msgid "error statting file" msgstr "त्रूटी दर्शविणारी फाइल" #: lib/error.c:88 msgid "error reading file" msgstr "फाइल वाचतेवेळी त्रूटी" #: lib/error.c:90 msgid "error writing to file" msgstr "फाइल मध्ये लिहीतेवेळी त्रूटी" #: lib/error.c:92 msgid "data not found in file" msgstr "फाइल मध्ये माहिती आढळली नाही" #: lib/error.c:94 msgid "internal initialization error" msgstr "आंतरीक प्रारंभीकरण त्रूटी" #: lib/error.c:96 msgid "error loading module" msgstr "घटक दाखल करतेवेळी त्रूटी" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "घटकातील चिन्ह सुस्थीत करतेवेळी त्रूटी" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "लायब्ररी/घटकाच्या आवृत्तीत जुळणी होत नाही" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "कुलूपबंद नाहीसे केल्यास पासवर्ड रिक्त होते" #: lib/error.c:105 msgid "invalid attribute value" msgstr "अवैध गुणधर्माचे मुल्य" #: lib/error.c:107 msgid "invalid module combination" msgstr "अवैध घटकाचे संयोग" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "अपरिचीत त्रूटी" #: lib/misc.c:240 msgid "invalid number" msgstr "अवैध क्रमांक" #: lib/misc.c:254 msgid "invalid ID" msgstr "अवैध ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "`%s' मध्ये %s प्रारंभीकरण कार्यक्रम नाही" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' मध्ये घटकाची आवृत्ती जुळत नाही" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' घटक `%s' ला ओळखत नाही" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "टर्मिनल गुणधर्म वाचतेवेळी त्रूटी" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "टर्मिनल गुणधर्म वाचतेवेळी त्रूटी" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "टर्मिनल पासून वाचतेवेळी त्रूटी" #: lib/user.c:218 msgid "name is not set" msgstr "नाव निश्चित केले नाही" #: lib/user.c:223 msgid "name is too short" msgstr "नाव खूपच छोटे आहे" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "नाव खूपच लांब आहे (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "नावात विना-ASCII अक्षर आहेत" #: lib/user.c:242 msgid "name contains control characters" msgstr "नावात कंट्रोल अक्षरं आहेत" #: lib/user.c:249 msgid "name contains whitespace" msgstr "नावात वाईटस्पेस आहेत" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "नाव हायफनने सुरू होते" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "नावात अवैध अक्षर `%c' आहेत" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "वापरकर्ता %s ला UID नाही" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "समुह %s ला GID नाही" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "%jd वापरकर्त्यास नाव नाही" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "समुह %jd ला नाव नाही" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "वापरकर्त्यास नाव किंवा UID नाही" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "समुहास नाव किंवा GID नाही" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "पूर्वनिर्धारीतपणे होम डिरेक्ट्री `%s' चा वापर करण्यापासून नकारत आहे" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "field %s ची अवैध मुलभूत संख्या: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "फाइल कुलूपबंद करतेवेळी त्रूटी: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "मुलभूत सुरक्षा संदर्भ प्राप्त करता आले नाही: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' चा सुरक्षा संदर्भ आढळला नाही: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "`%s' करता मुलभूत सुरक्षा संदर्भ निश्चित केला नाही: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "संरचना फाइल `%1$s' उघडू शकला नाही: %2$s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' उघडू शकला नाही: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' दर्शवू शकला नाही: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' निर्माण करतेवेळी त्रूटी: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "अगाऊ फाइल `%s' अस्तित्वात आहे व ती सर्वसाधारण फाइल नाही" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' चा मालक बदलतेवेळी त्रूटी: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' वाचतेवेळी चूक: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' लिहीतेवेळी त्रुटी: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "प्रतिकृती फॉईल आकार जुळत नाही" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s मुल्य `%s': `:' परवानगी नाही" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' पासुन वाचू शकले नाही: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "फाइल मध्ये नोंदणी आधिपासुनच अस्तित्वात आहे" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s' करीता लिहु शकले नाही: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "वस्तू ला %s गुणधर्म नाही" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "फाइलमध्ये मतभेदीय नावाची नोंदणी आधिपासूनच अस्तित्वात आहे" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' एन्क्रीप्ट पासवर्ड अंतर्गत परवानगी नाही" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "पासवर्ड कुटलिपी करतेवेळी त्रुटी" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' व `%s' विभागांना एकत्र करणे अशक्य" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "अत्युतमवापरकर्ता हक्कासह कार्यान्वीत होत नाही" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "शॅडो फाइल उपलब्ध नाही -- अकार्यान्वीत करत आहे" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "error connecting to the `%s' मधील `%s' सेवा करीता kadm5 सर्वरशी जुळवणी करतेवेळी " "त्रुटी: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "केरबेरोस लायब्ररी प्रारंभ करतेवेळी त्रुटी" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "केरबेरोस करीता वापरकर्ता `%s' वाचतेवेळी त्रुटी" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "वस्तु रचनेत %s किंवा %s गुणधर्म नाही" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "वस्तु %s किंवा %s गुणधर्म नाही" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "वस्तु %s किंवा %s गुणधर्म विना निर्मीत केले" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "कर्बेरोस पासुन `%s' करीता माहिती वाचतेवेळी त्रुटी" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "वस्तुकडे %s गुणधर्म नाही" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' करीता पासवर्ड निश्चित करीत आहे" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "कर्बेरोस रिअल्म" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "कर्बेरोस ॲडमिन प्रिंसिपल" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "प्रशासक प्रमुखाकरीता कर्बेरोस पासवर्ड" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap लायब्ररी प्रारंभ करतेवेळी त्रुटी" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "%d आवृत्ती करीता LDAP शिष्टाचार निश्चित करू शकले नाही" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP सर्वरशी TLS मध्यस्थी करू शकला नाही" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP सर्वरशी एकत्रीत राहु शकले नाही" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP सर्वरशी एकत्रीत राहु शकले नाही, पहिला प्रयत्न `%s' स्वरूपी: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "वापरकर्ता वस्तुकडे %s गुणधर्म नाही" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "वापरकर्ता वस्तु `%s' विना निर्मित" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP संचयीका नोंदणी निर्माण करतेवेळी त्रुटी: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP संचयीका संपादन करतेवेळी त्रुटी: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP संचयीका नोंदणी पुनःनामांकित करतेवेळी त्रुटी: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "वस्तुकडे %s गुणधर्म नाही" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP संचयीका नोंदणी काढुन टाकतेवेळी त्रुटी: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "वस्तुकडे %s गुणधर्म नाही" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "असमर्थीत पासवर्ड एनक्रिप्शन योजना" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP डिरेक्ट्रीमध्ये वस्तु आढळले नाही" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "`%s' गुणधर्म आढळले नाही" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "LDAP डिरेक्ट्रीमध्ये %s करीता पासवर्ड निश्चित करतेवेळी त्रुटी: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP सर्वर नाव" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP सर्च बेस DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP बाइंड DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP बाइंड पासवर्ड" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL वापरकर्ता" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL अधिप्रमाणन वापरकर्ता" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "वापरकर्ता निर्माण करतेवेळी Cyrus SASL त्रुटी: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "वापरकर्ता काढुन टाकतेवेळी Cyrus SASL त्रुटी: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL प्रारंभ करतेवेऴी त्रुटी: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "मुख्य संचयीका निर्माण करतेवेळी त्रुटी" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "वापरकर्त्यास मुख्य संचयीका काढुन टाकतेवेळी त्रुटी" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "वापरकर्त्यास मुख्य संचयीका स्थानांतर करतेवेळी त्रुटी" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s प्रारंभ करतेवेळी त्रुटी: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "अवैध ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID %jd रहीत समुह शोधत आहे.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s नामांकीत समुह शोधत आहे.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID %jd रहीत वापरकर्त्यास शोधत आहे.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s नामांकीत वापरकर्ता शोधत आहे.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "नोंदणी आढळली नाही.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "सुचना यशस्वी.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "सुचना अयशस्वी.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "मुलभूत वापरकर्ता वस्तु श्रेणी:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "मुलभूत वापरकर्ता गुणधर्म नाव:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "मुलभूत वापरकर्त्याचे गुणधर्म मिळवा:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "वापरकर्ता संरचनाची प्रत बनवित आहे:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s ला मुख्य संचयीका नाही.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s काढुन टाकतेवेळी चुक: %s.\n" libuser-0.60~dfsg/po/kn.gmo0000644000175000017500000010136412226342604015632 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----W/4/&0I0Y0oS11141O*2Fz22}K3j3t44g4_5lq5l5SK6 646Z6]P7f78j8|599;:_:G';Jo;7;g;FZ<n<;={L==c>>8?X?4@@cA^AzWBeB%8C^C"CI DRVDSDPDRNE]EZEIZFCFF5sG!G'GGHw,H&H/HDHl@I>II*J5/JeJ!J-J'JJK/KIK`KCKK\L_L[MDMG@NN&OLOP8+PbdPNPpQHQQKRRNR}RkS1TdUxmUmUTV'V-V,WdHWAW_WZOXfXdYRvYKYZ4ZZ,Z![*([S[O[%\l\;7]Hs]T]U^g^_}_Q `{[`]`5aaDb=b1cEc?c1$dVVdVdceuhefeEfAf ggDhshGibiMFjljXkdZkdkh$llvmm]AnnT1oJo~ocPpzp/qq_rerHsosGMtWttI uCWusuHvXvDnvJv%vl$wSwSwh9xfxX ycbyTyAzC]z;zbz\@{`{h{eg|=| }n}e~$m~~/cRLqv{5V9c>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Kannada (http://www.transifex.com/projects/p/fedora/language/kn/) Language: kn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; %s ವು ಒಂದು gid ಸಂಖ್ಯೆಯನ್ನು ಹೊಂದಿಲ್ಲ. %s ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ %s ಕ್ಕೆ %s ನ ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲು ಅನುಮತಿ ಇಲ್ಲ %s ಮೌಲ್ಯ `%s': `:' ಕ್ಕೆ ಅನುಮತಿ ಇಲ್ಲಖಾತೆಯ ಕಾಲಾವಧಿ ಮುಗಿದು ಹೋಗುತ್ತದೆ: %s ಖಾತೆಯನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಉಂಟಾಗಿದೆ: %s. ಖಾತೆಯು ಲಾಕ್ ಆಗಿದೆ. ಖಾತೆಯು ಲಾಕ್ ಆಗಿಲ್ಲ. %s ಗಾಗಿ ದೃಢೀಕರಣವು ವಿಫಲಗೊಂಡಿದೆ. -L ಹಾಗೂ -U ಎರಡೂ ಸೂಚಿತಗೊಂಡಿದೆ. /etc/passwd ಗೆ ಡೀಫಾಲ್ಟ್‍ ಸನ್ನಿವೇಶವನ್ನು ಸಿದ್ಧಪಡಿಸಲಾಗಿಲ್ಲ %s ಗಾಗಿನ ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗುತ್ತಿದೆ. %s ಗಾಗಿ ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸಲಾಗುತ್ತಿದೆ. %s ಗಾಗಿ ಶೆಲ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗುತ್ತಿದೆ. ಬಳಕೆದಾರ ರಚನೆಯನ್ನ್ನು ನಕಲಿಸಲಾಗುತ್ತಿದೆ: ಬಳಕೆದಾರನನ್ನು ಸೃಜಿಸುವಲ್ಲಿ Cyrus SASL ದೋಷ: %sಬಳಕೆದಾರನನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ Cyrus SASL ದೋಷ: %sಡೀಫಾಲ್ಟ್‍ ಬಳಕೆದಾರ ವೈಶಿಷ್ಟ್ಯದ ಹೆಸರುಗಳು: ಡೀಫಾಲ್ಟ್‍ ಆಬ್ಜೆಕ್ಟ್‍ ವರ್ಗಗಳು: ಈ-ಮೈಲ್ ವಿಳಾಸನಮೂದು ಕಂಡು ಬಂದಿಲ್ಲ. `%s' ನ ಕ್ರಮವನ್ನು ಬದಲಾಯಿಸುವಲ್ಲಿ ದೋಷ: %s`%s' ನ ಮಾಲಿಕನನ್ನು ಬದಲಾಯಿಸುವಲ್ಲಿ ದೋಷ: %s%s ಅನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಉಂಟಾಗಿದೆ: %s. `%s' ಗಾಗಿ ಖಾತೆಯನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ: ಸಾಲು ಸಮರ್ಪಕವಾಗಿ ಫಾರ್ಮಾಟ್ ಆಗಿಲ್ಲ. ಸಮೂಹ`%s' ವನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s `%s' ಗಾಗಿ GID %jd ಯೊಂದಿಗೆ ಸಮೂಹವನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ: %s %s ಗಾಗಿ ನೆಲೆ ಕಡತಕೋಶವನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s %s ಗಾಗಿ ಬಳಕೆದಾರ ಖಾತೆಯನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s %s ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s %s ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ: %s. PAM ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲ್ಲಿ ದೋಷ. %s ಅನ್ನು ನೋಡುವಾಗ ದೋಷ: %s %s ಅನ್ನು %s ಗೆ ತೆಗೆಯುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s. `%s' ಅನ್ನು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: %s. ಆರ್ಗ್ಯುಮೆಂಟ್‍ಗಳನ್ನು ವಿವರಿಸುವಲ್ಲಿ ದೋಷ: %s. `%s' ಅನ್ನು ಓದುವಲ್ಲಿ ದೋಷ: %s%d ಎಂಬ ಕಡತ ವಿವರಣೆಗಾರನಿಂದ ಓದುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. %s ಗೆ ಆರಂಭಿಕ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s %s ಸಮೂಹಕ್ಕೆ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s. %s ಬಳಕೆದಾರನಿಗೆ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s. `%s' ಗೆ ಬರೆಯುವಲ್ಲಿ ದೋಷ: %sಸವಲತ್ತುಗಳನ್ನು ತ್ಯಜಿಸುವಲ್ಲಿ ದೋಷ. %s ನ ಕಾಲ ತೀರುತ್ತಿರುವ ಮಾಹಿತಿಯನ್ನು ಮಾರ್ಪಡಿಸುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ: %s ಸಮೂಹ %s ಕ್ಕೆ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ: %s ಬಳಕೆದಾರ %s ನಿಗೆ ಗುಪ್ತಪದವನ್ನು ಸಿದ್ಧಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ: %s. ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ. ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿಲ್ಲ: ಆದಾನ ದೋಷ. ಫಿಂಗರ್ ಮಾಹಿತಿಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿಲ್ಲ: %s. ಸಂಪೂರ್ಣ ಹೆಸರುಡೀಫಾಲ್ಟ್‍ ಬಳಕೆದಾರ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಪಡೆಯಲಾಗುತ್ತಿದೆ: ಕೊಡಲಾದ ಹೆಸರುಸಮೂಹ %jd ವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ ಸಮೂಹ %s ವನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ: %s ಸಮೂಹ %s ಅನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ: %s. ಸಮೂಹ %s ವನ್ನು ಲಾಕ್ ಮಾಡಲಾಗಿಲ್ಲ: %s ಸಮೂಹ %s ವನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿಲ್ಲ: %s ಸಮೂಹ %s ವನ್ನು ಮಾರ್ಪಾಡು ಮಾಡಲಾಗಿಲ್ಲ: %s. ಸಮೂಹ %s ವನ್ನು ಅನ್-ಲಾಕ್ ಮಾಡಲಾಗಿಲ್ಲ: %s ಸಮೂಹ %s ವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ. ಸಮೂಹದ ರಚನೆ ವಿಫಲಗೊಂಡಿದೆ: %s GID %jd ಹೊಂದಿರುವ ಸಮೂಹಕ್ಕೆ ಒಂದು ಸಮೂಹದ ಹೆಸರನ್ನು ಹೊಂದಿಲ್ಲ. ಮನೆಯ ದೂರವಾಣಿ ಸಂಖ್ಯೆನಿಷ್ಕ್ರಿಯ: %ld ಆಂತರಿಕ PAM ದೋಷ `%s'. ಆಂತರಿಕ ದೋಷ. ಅಮಾನ್ಯ ID %s %s ಕ್ಷೇತ್ರದ ಡೀಫಾಲ್ಟ್‍ ಮೌಲ್ಯವು ಅಮಾನ್ಯವಾಗಿದೆ: %sಅಮಾನ್ಯ ಸಮೂಹ ID %s ಅಮಾನ್ಯ ಬಳಕೆದಾರ ID %s ಕರ್ಬರೋಸ್ ನಿರ್ವಹಣಾ ಪ್ರಮುಖನಿರ್ವಹಣಾ ಪ್ರಮುಖನಿಗಾಗಿ ಕರ್ಬರೋಸ್ ಗುಪ್ತಪದಕರ್ಬರೋಸ್ ಕ್ಷೇತ್ರ(Kerberos Realm)LDAP ಬೈಂಡ್ DNLDAP ಬೈಂಡ್ ಗುಪ್ತಪದLDAP SASL ದೃಢೀಕರಣ ಬಳಕೆದಾರLDAP SASL ಬಳಕೆದಾರLDAP ಶೋಧನಾ ಮೂಲ DNLDAP ಪರಿಚಾರಕದ ಹೆಸರುಕಡೆಯ ಬದಲಾವಣೆ: %s ಗರಿಷ್ಟ: %ld ಕನಿಷ್ಟ: %ld ಎಂದೂ ಅಲ್ಲಹೊಸ ಶೆಲ್ಹೊಸ ಗುಪ್ತಪದಹೊಸ ಗುಪ್ತಪದ (ಖಚಿತಪಡಿಸಲಾದ)ಯಾವುದೆ ಸಮೂಹದ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ, gid %d ಗೆ ಯಾವುದೆ ಹೆಸರಿಲ್ಲ. ಯಾವುದೆ ಸಮೂಹದ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ, %s ಅನ್ನು ಬಳಸಲಾಗುತ್ತ್ತಿದೆ. ಯಾವುದೆ ಸಮೂಹದ ಹೆಸರು ನಿಗದಿತಗೊಂಡಿಲ್ಲ. GID %jd ಹೊಂದಿರುವ ಒಂದು ಸಮೂಹ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ, ತೆಗೆಯಲಾಗುತ್ತಿಲ್ಲ. %s ಗೆ ಹೊಸ ನೆಲೆ ಕಡತಕೋಶವಿಲ್ಲ. %s ಗೆ ಹಳೆಯ ನೆಲೆ ಕಡತಕೋಶವಿಲ್ಲ. ಯಾವುದೆ ಬಳಕೆದಾರ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ, uid %d ಗೆ ಯಾವುದೆ ಹೆಸರಿಲ್ಲ. ಯಾವುದೆ ಬಳಕೆದಾರರ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ, %s ಅನ್ನು ಬಳಸಲಾಗುತ್ತ್ತಿದೆ. ಯಾವುದೆ ಹೆಸರು ಸೂಚಿತಗೊಂಡಿಲ್ಲ. ಕಛೇರಿಕಛೇರಿ ದೂರವಾಣಿ ಸಂಖ್ಯೆಗುಪ್ತಪದದ ಕಾಲಾವಧಿ ಮುಗಿದು ಹೋಗುತ್ತದೆ: %s ಗುಪ್ತಪದವು ನಿಷ್ಕ್ರಿಯವಾಗಿದೆ: %s ಗುಪ್ತಪದದ ಬದಲಾವಣೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ. ಗುಪ್ತಪದ ಬದಲಾಯಿಸಲ್ಪಟ್ಟಿದೆ. ಗುಪ್ತಪದಗಳು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ್ಲ, ಪುನಃ ಪ್ರಯತ್ನಿಸಿ. ಪ್ರಾಂಪ್ಟ್‍ಗಳು ವಿಫಲಗೊಂಡಿವೆ. ಪ್ರಾಂಪ್ಟ್‍ಗಳು ಯಶಸ್ವಿಯಾಗಿವೆ. UID 0 ಯೊಂದಿಗೆ ಖಾತೆಯನ್ನು ಸೃಜಿಸಲು ನಿರಾಕರಿಸುತ್ತಿದೆ. ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಅಪಾಯಕಾರಿ ನೆಲೆ ಕಡತಕೋಶ `%s' ಅನ್ನು ಬಳಸಲು ನಿರಾಕರಿಸಲಾಗುತ್ತಿದೆಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಅಪಾಯಕಾರಿ ನೆಲೆ ಕಡತಕೋಶ `%s' ಅನ್ನು %s ಗಾಗಿ ಬಳಸಲು ನಿರಾಕರಿಸಲಾಗುತ್ತಿದೆ %s ಹೆಸರಿನ ಸಮೂಹಕ್ಕಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ. ID %jd ಯನ್ನು ಹೊಂದಿದ ಸಮೂಹಕ್ಕಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ. %s ಹೆಸರಿನ ಬಳಕೆದಾರನಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ. ID %jd ಯನ್ನು ಹೊಂದಿದ ಬಳಕೆದಾರನಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ. ಶೆಲ್ ಬದಲಾಗಿದೆ. ಶೆಲ್ ಬದಲಾಗಿಲ್ಲ: %s ಅಡ್ಡಹೆಸರುಅಜ್ಞಾತ ಬಳಕೆದಾರನನ್ನು ದೃಢೀಕರಿಸಲಾಗಿದೆ. ಅಜ್ಞಾತ ಬಳಕೆದಾರ ಸನ್ನಿವೇಶಬಳಕೆದಾರ %s ನನ್ನು ಅಳಿಸಿಹಾಕಲಾಗಲಿಲ್ಲ: %s. ಬಳಕೆದಾರ %s ನನ್ನು ಲಾಕ್ ಮಾಡಲಾಗಿಲ್ಲ: %s. ಬಳಕೆದಾರ %s ನನ್ನು ಮಾರ್ಪಾಡು ಮಾಡಲಾಗಿಲ್ಲ: %s. ಬಳಕೆದಾರ %s ನನ್ನು ಅನ್-ಲಾಕ್ ಮಾಡಲಾಗಿಲ್ಲ: %s. ಬಳಕೆದಾರ %s ನು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ. ಬಳಕೆದಾರರು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ. ಎಚ್ಚರಿಕೆ: %ld ಎಚ್ಚರಿಕೆ: ID %jd ಯನ್ನು ಹೊಂದಿರುವ ಸಮೂಹವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ. [ಆಯ್ಕೆ...][ಆಯ್ಕೆ...] [ಬಳಕೆದಾರ][ಆಯ್ಕೆ...] ಸಮೂಹ[ಆಯ್ಕೆ...] ಬಳಕೆದಾರ`:' ಗುಪ್ತಪದವನ್ನು ಗೂಢಲಿಪೀಕರಿಸುವುದಕ್ಕೆ ಬೆಂಬಲವಿಲ್ಲನಿಲುಕಣೆಯನ್ನು ನಿರಾಕರಿಸಲಾಗಿದೆಬ್ಯಾಕ್ಅಪ್ ಕಡತ `%s' ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಹಾಗು ಅದು ಸಾಮಾನ್ಯ ಕಡತವಾಗಿಲ್ಲಬ್ಯಾಕ್ಅಪ್ ಕಡತದ ಗಾತ್ರವು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲಕೆಟ್ಟ ಬಳಕೆದಾರನ/ಸಮೂಹದ idಕೆಟ್ಟ ಬಳಕೆದಾರನ/ಸಮೂಹದ ಹೆಸರುಸಂರಚನಾ ಕಡತ `%s' ವು ಬಹಳ ದೊಡ್ಡದಾಗಿದೆLDAP ಪರಿಚಾರಕಕ್ಕೆ ಬೈಂಡ್ ಮಾಡಲಾಗಿಲ್ಲLDAP ಪರಿಚಾರಕಕ್ಕೆ ಬೈಂಡ್ ಮಾಡಲಾಗಿಲ್ಲ, ಪ್ರಥಮ ಪ್ರಯತ್ನ `%s' ಆಗಿತ್ತು: %sTLS ಅನ್ನು LDAP ಪರಿಚಾರಕದೊಂದಿಗೆ ವ್ಯವಹರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲಸಂರಚನಾ ಕಡತ `%s' ವನ್ನು ತೆಗೆಯುವಲ್ಲಿ ದೋಷ ಎದುರಾಗಿದೆ: %sಸಂರಚನಾ ಕಡತ `%s' ವನ್ನು ಓದಲಾಗಿಲ್ಲ: %sLDAP ಪ್ರೋಟೋಕಾಲ್ ಅನ್ನು ಆವೃತ್ತಿ %d ಗೆ ಹೊಂದಿಸಲಾಗಿಲ್ಲಸಂರಚನಾ ಕಡತ `%s' ವನ್ನು ಆರಂಭಿಸಲಾಗಿಲ್ಲ: %s`%s' ಕ್ಕೆ ಸುರಕ್ಷತಾ ಸನ್ನಿವೇಶವನ್ನು ನಿರ್ಧರಿಸಲಾಗಲಿಲ್ಲ: %sಡೀಫಾಲ್ಟ್‍ ಸುರಕ್ಷತಾ ಸನ್ನಿವೇಶವನ್ನು ಪಡೆಯಲಾಗಲಿಲ್ಲ: %s`%s' ನ ಡೀಫಾಲ್ಟ್‍ ಸುರಕ್ಷತಾ ಸನ್ನಿವೇಶವನ್ನು ಪಡೆಯಲಾಗಲಿಲ್ಲ:: %s`%s' ಅನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ: %s`%s' ನಿಂದ ಓದಲಾಗಿಲ್ಲ: %sಡೀಫಾಲ್ಟ್‍ ಸುರಕ್ಷತಾ ಸನ್ನಿವೇಶವನ್ನು `%s' ಕ್ಕೆ ಹೊಂದಿಸಲಾಗಲಿಲ್ಲ: %s`%s' ಅನ್ನು stat ಮಾಡಲಾಗಲಿಲ್ಲ: %s`%s' ಗೆ ಬರೆಯಲಾಗಿಲ್ಲ: %sಕಡತದಲ್ಲಿ ದತ್ತಾಂಶವು ಕಂಡುಬಂದಿಲ್ಲನಮೂದು %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲನಮೂದು %s ಅಥವ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲನಮೂದು ಆಬ್ಜೆಕ್ಟ್‍ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲನಮೂದು %s ಅಥವ %s ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಹೊಂದಿಲ್ಲನಮೂದು %s ಅಥವ %s ವೈಶಿಷ್ಟ್ಯಗಳಿಲ್ಲದೆ ನಿರ್ಮಿಸಲ್ಪಟ್ಟಿದೆನಮೂದು ಈಗಾಗಲೆ ಕಡತದಲ್ಲಿದೆಇದರೊಂದಿಗೆ ಘರ್ಷಣೆಗೆ ಕಾರಣವಾಗುವ ಹೆಸರಿನ ಒಂದು ನಮೂದು ಈಗಾಗಲೆ ಕಡತದಲ್ಲಿದೆ`%s' ಸೇವೆಗಾಗಿ `%s' ಕ್ಷೇತ್ರದಲ್ಲಿ kadm5 ಪರಿಚಾರಕಕ್ಕೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s`%s' ಅನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ: %sಒಂದು LDAP ಕಡತಕೋಶ ನಮೂದನ್ನು ನಿರ್ಮಿಸುವಲ್ಲಿ ದೋಷ: %sಬಳಕೆದಾರರಿಗಾಗಿ ನೆಲೆ ಕಡತಕೋಶವನ್ನು ಸೃಜಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆಗುಪ್ತಪದವನ್ನು ಗೂಢಲಿಪೀಕರಿಸುವಲ್ಲಿ ದೋಷCyrus SASL ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ: %sಕರ್ಬರೋಸ್ ಲೈಬ್ರರಿಯನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷldap ಲೈಬ್ರರಿಯನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷಘಟಕವನ್ನು ಲೋಡ್ ಮಾಡುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆಕಡತವನ್ನು ಲಾಕ್ ಮಾಡುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆಕಡತವನ್ನು ಲಾಕ್ ಮಾಡುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %sಟರ್ಮಿನಲ್ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಮ್ಯಾನಿಪುಲೇಟ್ ಮಾಡುವಲ್ಲಿ ದೋಷಒಂದು LDAP ಕಡತಕೋಶ ನಮೂದನ್ನು ಮಾರ್ಪಡಿಸುವಲ್ಲಿ ದೋಷ: %sಬಳಕೆದಾರರಿಗಾಗಿ ನೆಲೆ ಕಡತಕೋಶವನ್ನು ಸ್ಥಳಾಂತರಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆಕಡತವನ್ನು ತೆಗೆಯುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆಕರ್ಬರೋಸ್‍ಗಾಗಿ ಬಳಕೆದಾರ ಹೆಸರು `%s' ಅನ್ನು ವಿವರಿಸುವಲ್ಲಿ ದೋಷಕಡತವನ್ನು ಓದುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆಟರ್ಮಿನಲ್‍ನಿಂದ ಓದುವಲ್ಲಿ ದೋಷ`%s' ಗಾಗಿ ಕರ್ಬರೋಸ್‍ನಿಂದ ಮಾಹಿತಿಯನ್ನು ಓದುವಲ್ಲಿ ದೋಷಟರ್ಮಿನಲ್ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಓದುವಾಗ ದೋಷಒಂದು LDAP ಕಡತಕೋಶ ನಮೂದನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ದೋಷ: %sಬಳಕೆದಾರರಿಗಾಗಿ ನೆಲೆ ಕಡತಕೋಶವನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆಒಂದು LDAP ಕಡತಕೋಶ ನಮೂದಿನ ಹೆಸರನ್ನು ಬದಲಾಯಿಸುವಲ್ಲಿ ದೋಷ: %sಘಟಕದಲ್ಲಿ ಸಂಕೇತವನ್ನು ಪರಿಹರಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ`%s' ಗಾಗಿ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ದೋಷ%s ಕ್ಕಾಗಿ LDAP ಕಡತಕೋಶದಲ್ಲಿ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ದೋಷ: %sಟರ್ಮಿನಲ್ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಹೊಂದಿಸುವಾಗ ದೋಷಕಡತವನ್ನು statting ಮಾಡುವಲ್ಲಿ ದೋಷಕಡತಕ್ಕೆ ಬರೆಯುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆಸಾಮಾನ್ಯ ದೋಷಸಮೂಹ %jd ವು ಹೆಸರನ್ನು ಹೊಂದಿಲ್ಲಸಮೂಹ %s ವು GID ಯನ್ನು ಹೊಂದಿಲ್ಲಸಮೂಹವು ಒಂದು ಹೆಸರು ಅಥವ ಒಂದು GID ಅನ್ನು ಹೊಂದಿಲ್ಲಆಂತರಿಕ ಆರಂಭಿಕ ದೋಷ ಉಂಟಾಗಿದೆಅಮಾನ್ಯ IDಅಮಾನ್ಯವಾದ ಗುಣವಿಶೇಷ ಮೌಲ್ಯಅಮಾನ್ಯವಾದ ಮಾಡ್ಯೂಲ್ ಸಂಯೋಜನೆಅಮಾನ್ಯ ಸಂಖ್ಯೆಲೈಬ್ರರಿ/ಘಟಕದ ಆವೃತ್ತಿಯು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ`%s' ಘಟಕವು %s' ಅನ್ನು ವಿವರಿಸುವುದಿಲ್ಲಸಂರಚನೆಯಿಂದ ಘಟಕವು ಅಶಕ್ತಗೊಂಡಿದೆ`%s' ನಲ್ಲಿ ಘಟಕ ಆವೃತ್ತಿಯು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲಹೆಸರು ನಿಯಂತ್ರಣ ಅಕ್ಷರಗಳನ್ನು ಒಳಗೊಂಡಿದೆಹೆಸರಿನಲ್ಲಿ ಅಮಾನ್ಯ ಅಕ್ಷರವಾದ`%c' ಇದೆಹೆಸರು ASCII-ಅಲ್ಲದ ಅಕ್ಷರಗಳನ್ನು ಒಳಗೊಂಡಿದೆಹೆಸರು ಖಾಲಿ ಜಾಗಗಳನ್ನು ಒಳಗೊಂಡಿದೆಯಾವುದೇ ಹೆಸರು ಹೊಂದಿಸಿಲ್ಲಹೆಸರು ಬಹಳ ಉದ್ದವಾಗಿದೆ (%zu > %d)ಹೆಸರು ಬಹಳ ಚಿಕ್ಕದಾಗಿದೆಹೆಸರು ಅಡ್ಡಗೆರೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆಯಾವುದೆ `%s' ವೈಶಿಷ್ಟ್ಯವು ಕಂಡು ಬಂದಿಲ್ಲಯಾವುದೆ ಆರಂಭಿಕ ಕ್ರಿಯೆ %s ಯು `%s' ನಲ್ಲಿಲ್ಲಛಾಯಾ ಕಡತವು ಇಲ್ಲ --ಅಶಕ್ತಗೊಳಿಸಲಾಗುತ್ತಿದೆLDAP ಕಡತಕೋಶದಲ್ಲಿ ಯಾವುದೆ ಆಬ್ಜೆಕ್ಟ್‍ ಇಲ್ಲಸಾಕಷ್ಟು ಸವಲತ್ತುಗಳಿಲ್ಲಮೂಲಬಳಕೆದಾರನ ಸವಲತ್ತುಗಳೊಂದಿಗೆ ಕಾರ್ಯಗತಗೊಳ್ಳುತ್ತಿಲ್ಲಆಬ್ಜೆಕ್ಟ್‍ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿರಲಿಲ್ಲಆಬ್ಜೆಕ್ಟ್‍ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲಯಶಸ್ವಿಯಾಗಿದೆ`%s' ಹಾಗು `%s' ಮಾಡ್ಯೂಲ್‌ಗಳನ್ನು ಸಂಯೋಜಿಸಲು ಸಾಧ್ಯವಿಲ್ಲಅಜ್ಞಾತ ದೋಷಅನ್-ಲಾಕ್ ಮಾಡುವುದರಿಂದ ಗುಪ್ತಪದ ಜಾಗವು ಖಾಲಿ ಉಳಿಯುತ್ತದೆಬೆಂಬಲವಿರದ ಗುಪ್ತಪದ ಗೂಢಲಿಪೀಕರಣ ಸ್ಕೀಮ್ಬಳಕೆದಾರ %jd ನು ಹೆಸರನ್ನು ಹೊಂದಿಲ್ಲಬಳಕೆದಾರ %s ವು UID ಅನ್ನು ಹೊಂದಿಲ್ಲಬಳಕೆದಾರ ಒಂದು ಹೆಸರು ಅಥವ ಒಂದು UID ಅನ್ನು ಹೊಂದಿಲ್ಲಬಳಕೆದಾರ ಆಬ್ಜೆಕ್ಟ್‍ %s ವೈಶಿಷ್ಟ್ಯವನ್ನು ಹೊಂದಿಲ್ಲಯಾವುದೆ `%s' ಇಲ್ಲದೆ ಬಳಕೆದಾರ ಆಬ್ಜೆಕ್ಟ್‍ ರಚಿಸಲ್ಪಟ್ಟಿದೆಬಳಸಲಾಗುತ್ತಿರುವ ಬಳಕೆದಾರನ/ಸಮೂಹದ idಬಳಸಲಾಗುತ್ತಿರುವ ಬಳಕೆದಾರನ/ಸಮೂಹದ ಹೆಸರುlibuser-0.60~dfsg/po/et.po0000644000175000017500000010420012226342567015466 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Allan Sims , 2004 # Marek Laane , 2012 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Estonian (http://www.transifex.com/projects/p/fedora/language/" "et/)\n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Õiguste eemaldamine ebaõnnestus.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Sisemine viga.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s ei ole volitatud muutma %s infot\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "tundmatu kasutaja kontekst" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "vaike konteksti seadistamine /etc/passwd jaoks ei ole võimalik\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM lähtestamisel esines viga.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s tuvastamine ebaõnnestus.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Sisemine PAM viga `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "tuvastati tundmatu kasutaja.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Kasutaja ei sobi.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[VALIK...] kasutaja" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Argumentide analüüsimise viga: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Kasutajanimi täpsustamata.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s lähtestamisel esines viga: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Kasutajat %s ei ole olemas.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Konto on lukustatud.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Konto ei ole lukustatud.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Miinimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maksimum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Hoiatus:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Mitteaktiivne:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Mitte kunagi" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Viimati muudetud:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Parool aegub:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Parool on kehtetu:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Konto aegub:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Vananenud %s informatsiooni muutmine ebaõnnestus: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[VALIK...] [kasutaja]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Kasutajanimi määramata, nimi puudub uid %d jaoks.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Sõrminformatsiooni muutmine %s jaoks.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Täisnimi" #: apps/lchfn.c:146 msgid "Surname" msgstr "Perekonnanimi" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Eesnimi" #: apps/lchfn.c:167 msgid "Office" msgstr "Kontor" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Kontori telefon" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Kodune telefon" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-posti aadress" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Sõrminfot ei ole muudetud: sisendi viga.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Sõrminfo on muudetud.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Sõrminfot ei ole muudetud: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Kesta muutmine %s jaoks.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Uus kest" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Kesta ei muudetud: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Kest muudetud.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[VALIK...] grupp" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Grupinimi on määramata.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Vigane grupi ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Grupi loomine ebaõnnestus: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Gruppi %s ei ole olemas.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Gruppi %s pole võimalik kustutada: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Mõlemad -L ja -U on täpsustamata.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Grupi %s parooli seadmine ebaõnnestus: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Gruppi %s lukustamine ei ole võimalik: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Gruppi %s lukust lahti tegemine ei ole võimalik: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Gruppi %s pole võimalik muuta: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Viga %s otsimisel: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Grupinimi täpsustamata, kasutatakse %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Grupinimi täpsustamata, gid %d jaoks puudub nimi.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Kasutajanimi täpsustamata, kasutatakse %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s puudub\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[VALIK...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' avamise viga: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Konto loomise viga `%s' jaoks: rida ebasobivalt vormindatud.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Vigane kasutaja ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Segadus konto loomisel kui UID on 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Viga grupi `%s' loomisel kui GID on %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Viga %s kodukataloogi loomisel: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Viga %s esialgse parooli seadmisel: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Viga kasutajale %s konto loomisel: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s parooli muutmine.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Uus parool" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Uus parool (kinnitus)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Paroolid ei ühti, proovi uuesti.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Parooli muutmisest loobutud.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Tõrge failideskriptori %d lugemisel.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Viga kasutaja %s parooli seadmisel: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Viga grupi %s parooli seadmisel: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Parool on muudetud.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Gruppi %jd ei ole olemas\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Viga grupi `%s' loomisel: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Konto loomine ebaõnnestus: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Viga %s loomisel: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Kasutajat %s pole võimalik kustutada: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s ei ole gid numbrit.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Gruppi GID-ga %jd ei ole olemas, seda ei eemaldata.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Grupil GID-ga %jd puudub nimi.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Gruppi %s pole võimalik kustutada: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "kasutaja kodukataloogi kustutamise viga" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Kasutaja %s parooli seadmine ebaõnnestus: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Kasutajat %s pole võimalik lukustada: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Kasutajat %s pole võimalik lukust lahti teha: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Kasutajat %s pole võimalik muuta: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Gruppi %s pole võimalik muuta: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s-il puudub vana kodukataloogi.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s-il puudub uus kodukataloogi.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Viga %s liigutamisel %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "aeadete faili `%s' avadmine pole võimalik: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "seadete faili `%s' avamine pole võimalik: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "seadete faili `%s' on liiga suur" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "seadete faili `%s' avamine pole võimalik: %s" #: lib/error.c:62 msgid "success" msgstr "edu" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "moodul on seadistustes keelatud" #: lib/error.c:66 msgid "generic error" msgstr "üldine viga" #: lib/error.c:68 msgid "not enough privileges" msgstr "ebapiisavad õigused" #: lib/error.c:70 msgid "access denied" msgstr "ligipääs keelatud" #: lib/error.c:72 msgid "bad user/group name" msgstr "halb kasutaja-/grupinimi" #: lib/error.c:74 msgid "bad user/group id" msgstr "halb kasutaja/grupi id" #: lib/error.c:76 msgid "user/group name in use" msgstr "kasutaja-/grupinimi on kasutusel" #: lib/error.c:78 msgid "user/group id in use" msgstr "kasutaja/grupi id on kasutusel" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "viga terminali atribuutide käsitlemisel" #: lib/error.c:82 msgid "error opening file" msgstr "faili avamise viga" #: lib/error.c:84 msgid "error locking file" msgstr "faili lukustamise viga" #: lib/error.c:86 msgid "error statting file" msgstr "faili esitamise viga" #: lib/error.c:88 msgid "error reading file" msgstr "faili lugemise viga" #: lib/error.c:90 msgid "error writing to file" msgstr "viga faili kirjutamisel " #: lib/error.c:92 msgid "data not found in file" msgstr "failis puuduvad andmed" #: lib/error.c:94 msgid "internal initialization error" msgstr "sisemine lähtestamise viga" #: lib/error.c:96 msgid "error loading module" msgstr "mooduli laadimise viga" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "sümbolite lahendamise viga moodulis" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "teegi/mooduli versioon ei sobi" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "lahti lukustamine võib teha parooli välja tühjaks" #: lib/error.c:105 msgid "invalid attribute value" msgstr "vigane atribuudi väärtus" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "tundmatu viga" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "vigane ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "puudub häälestusfunktsioon %s `%s'-s" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "mooduli versiooni mitteühtivus `%s'-s" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "moodul `%s' ei defineeri `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "viga terminali atribuutide lugemisel" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "viga terminali atribuutide seadmisel" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "viga terminalist lugemisel" #: lib/user.c:218 msgid "name is not set" msgstr "nime ei ole seatud" #: lib/user.c:223 msgid "name is too short" msgstr "nimi on liiga lühike" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "nimi on liiga pikk (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "nimi sisaldab mitte-ASCII märke" #: lib/user.c:242 msgid "name contains control characters" msgstr "nimi sisaldab kontrollmärke" #: lib/user.c:249 msgid "name contains whitespace" msgstr "nimi sisaldab tühikuid" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "nimi algab sidekriipsuga" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "nimi sisaldab vigast märki `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "kasutajal %s puudub UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "grupil %s puudub GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "kasutajal %jd puudub nimi" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "grupil %jd puudub nimi" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "kasutajal puudub nii nimi kui ka UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "grupil puudub nii nimi kui ka GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Välja %s vigane vaikeväärtus: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "viga faili lukustamisel: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "turvakonteksti `%s' saamine ei ole võimalik: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "vaike turvakonteksti seadistamine `%s'-ile ei ole võimalik: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' avamine pole võimalik: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s'-i polnud võimalik esitada: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "viga `%s' loomisel: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "on olemas varundfail %s, mis ei ole tavaline fail" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Viga `%s' omaniku muutmisel: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Viga `%s' lugemisel:%s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Viga `%s' kirjutamisel: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "varundfaili suurus ei sobi" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s väärtus `%s': `:' ei ole lubatud" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s'-st lugemine pole võimalik: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "failis on üksus juba olemas" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s'-i kirjutamine pole võimalik: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "üksuse objektil puudub atribuut %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' ei ole lubatud krüptitud paroolis" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "parooli krüpteerimise viga" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "superkasutaja õigustega ei käivitata" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "varifail puudub - keelatud" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "kadm5 serveri teenuse `%s' ühendamise viga piirkonnas `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "viga kerberose teegi lähtestamisel" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "kerberose jaoks kasutajanime `%s analüüsimisel ilmnes viga" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "üksuse struktuuril puudub %s või %s atribuut" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "üksusel puudub %s või %s atribuut" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "üksus loodi ilma %s või %s atribuudita" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "kerberosest %s ' jaoks informatsiooni lugemisel ilmnes viga" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "üksusel %s puudub atribuut" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s'-le parooli seadmisel ilmnes viga" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos piirkond" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos-e Haldusjuht" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberose parool Haldusjuhile" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap teegi lähtestamise viga" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP protokolli polnud võimalik seada versioonile %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "" "Transpordikihi turbeprotokollil (TLS) polnud võimalik suhelda LDAP serveriga" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP serverit polnud võimalik siduda" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP serverit polnud võimalik siduda, esmalt üritati `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "kasutaja objektil puudub atribuut %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "kasutaja objekt loodi `%s'-ta" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP kataloogi üksuse loomise viga: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP kataloogi üksuse muutmise viga: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP kataloogi üksuse ümbernimetamise viga: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "objektil puudus atribuut %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP kataloogi üksuse eemaldamise viga: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "objektil puudub atribuut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP kataloogis puudub selline objekt" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "`%s'-i atribuuti ei leitud" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "parooli seadmisel LDAP kataloogile %s tekkis viga: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP serverinimi" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP sidumise baasnumber" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP sidumise number" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP sidumise parool" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL kasutaja" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL kasutaja autoriseerimine" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL viga kasutaja loomisel: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL viga kasutaja eemaldamisel: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "viga Cyrus SASL lähtestamisel: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "kasutaja kodukataloogi loomise viga" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "kasutaja kodukataloogi kustutamise viga" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "kasutaja kodukataloogi liigutamise viga" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s lähtestamise viga: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Vigane ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID-ga %jd grupi otsimine.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s nimelise grupi otsimine.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID-ga %jd kasutaja otsimine.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s nimelise kasutaja otsimine.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Üksust ei leitud.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Viibad õnnestusid.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Viibad ebaõnnestusid.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Kasutaja vaikeobjektide klassid:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Kasutaja vaikeatribuutide nimed:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Kasutaja vaikeatribuutide saamine:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kasutajastruktuuri kopeerimine:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s-il ei ole kodukataloogi.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Viga %s eemaldamisel: %s.\n" libuser-0.60~dfsg/po/sv.po0000644000175000017500000011472212226342570015512 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # , 2004 # Christian Rose , 2006 # Daniel Guerrero , 2003 # Domingo Becker , 2008 # Fernando Gonzalez Blanco , 2009 # Fernando Ruiz-Tapiador Gutiérrez , 2001 # Gladys Guerrero , 2009, 2010 # Göran Uddeborg , 2011-2013 # Héctor Daniel Cabrera , 2009 # Luis Mayoral , 2003 # Magnus Larsson , 2007, 2008 # Manuel Ospina , 2005, 2006 # Miloslav Trmač , 2011 # Tullio Dovera , 2000 # Ulrika Uddeborg , 2012 # Yelitza Louze , 2003, 2004 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 10:03+0000\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/fedora/language/" "sv/)\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Det gick inte att släppa rättigheter.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Internt fel.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s är inte auktoriserad att ändra fingerinformationen för %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Okänd användarkontext" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Det går inte att sätta standardkontext för /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Fel vid initialisering av PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Autentisering misslyckades för %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Internt PAM-fel \"%s\".\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Okänd användare autentiserad.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Användare stämmer inte.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "fråga efter all information" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "lista åldringsparametrar för användaren" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "minsta antal dagar mellan lösenordsändringar" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "DAGAR" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "maximalt antal dagar mellan lösenordsändringar" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "datum för senaste lösenordsändringen i dagar sedan 1/1/70" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "antal dagar efter lösenordet gått ut som kontot anses inaktivt" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "utgångsdatum för lösenord i dagar sedan 1/1/70" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "dagar innan upphörande som användaren skall börja varnas" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[FLAGGA...] användare" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Fel vid tolkning av argument: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Inget användarnamn angivet.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Fel vid initiering av %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Användare %s finns inte.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Kontot är låst.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Kontot är inte låst.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maximum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Maximum:»Inget\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Varning:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inaktiv:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Inaktiv:»Aldrig\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Måste ändra lösenord vid nästa inloggning" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Aldrig" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Senaste ändring:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Lösenordet går ut:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Lösenordet inaktivt:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Kontot går ut:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Det gick inte att ändra åldringsinformationen för %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[FLAGGA...] [användare]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Inget användarnamn angivet, inget namn för uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Ändrar fingerinformation för %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Fullständigt namn" #: apps/lchfn.c:146 msgid "Surname" msgstr "Efternamn" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Förnamn" #: apps/lchfn.c:167 msgid "Office" msgstr "Kontor" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Arbetstelefon" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Hemtelefon" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Epostadress" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Fingerinformationen ändrades inte: inmatningsfel.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Fingerinformationen ändrades.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Fingerinformationen ändrades inte: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Ändrar skal för %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nytt skal" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Skal inte ändrat: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Skal ändrat.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid för ny grupp" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "NUM" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "skapa en systemgrupp" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[FLAGGA...] grupp" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Inget gruppnamn angivet.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Ogiltig grupp-id %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Det gick inte att skapa grupp: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Grupp %s finns inte.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Grupp %s gick inte att ta bort: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "sätt GID för grupp" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "ändra gruppen till att ha det angivna namnet" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NAMN" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "lösenord i klartext att användas med gruppen" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "STRÄNG" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "för-hashat lösenord att användas med gruppen" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "lista med administratörer att lägga till" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "lista med administratörer att ta bort" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "lista med gruppmedlemmar att lägga till" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "lista med gruppmedlemmar att ta bort" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "lås grupp" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "lås upp grupp" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Både -L och -U angivna.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Det gick inte att sätta lösenord för grupp %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Grupp %s gick inte att låsa: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Grupp %s gick inte att låsa upp: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Grupp %s gick inte att ändra: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Fel när %s slogs upp: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "lista medelmmar av en namngiven grupp istället för gruppmedlemskapen för den " "namngivna användaren" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "lista bara medelmskapsinformation med namn, och inte UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Inget gruppnamn angivet, använder %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Inget gruppnamn angivet, inget namn för gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Inget användarnamn angivet, använder %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s finns inte\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "fil med poster med användarinformation" #: apps/lnewusers.c:47 msgid "PATH" msgstr "SÖKVÄG" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "skapa inte hemkataloger" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "skapa inte brevlådor" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[FLAGGA...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Fel när \"%s\" öppnades: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Fel när konto för \"%s\" skapades: felaktigt formaterad rad.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Ogiltigt användar-id %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Vägrar att skapa konto med UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Fel när grupp för \"%s\" skapades med GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "Vägrar att använda farlig hemkatalog \"%s\" för %s som standard\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Fel när hemkatalog för %s skapades: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Fel när brevlåda för %s skapades: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Fel när initialt lösenord för %s sattes: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Fel när användarkonto för %s skapades: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "ange grupplösenord istället fr användarlösenord" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "nytt lösenord i klartext" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "nytt krypterat lösenord" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "läs ett nytt lösenord i klartext från den angivna deskriptorn" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "läs ett nytt krypterat lösenord från den angivna deskriptorn" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Ändrar lösenord för %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nytt lösenord" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nytt lösenord (bekräfta)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Lösenorden stämmer inte överens, försök igen.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Lösenordsändringen avbruten.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Fel vid läsning från filbeskrivare %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Fel när lösenord för användare %s sattes: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Fel när lösenord för grupp %s sattes: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Lösenordet ändrat.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "skapa systemanvändare" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "GECOS-information för ny användare" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "hemkatalog för ny användare" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "katalog med filer för den nya användaren" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "skal för ny användare" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "uid för ny användare" #: apps/luseradd.c:69 msgid "group for new user" msgstr "grupp för ny användare" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "skapa inte hemkatalog för användare" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "skapa inte grupp med amma namn som användare" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "vanliga namnet för den nya användaren" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "tilltalsnamn för ny användare" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "efternamn för ny användare" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "rumsnummer för ny användare" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "telefonnummer för ny användare" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "hemtelefonnummer för ny användare" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Grupp %jd finns inte\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Fel när grupp \"%s\" skapades: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Kontoskapandet misslyckades: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Fel när %s skapades: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Fel när brevlåda skapades: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "ta inte bort användarens prvata grupp, om användaren har en" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "ta bort användarens hemkatalog" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Användare %s gick inte att ta bort: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s hade inte något gid-nummer.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Det finns ingen grupp med GID %jd, tar inte bort.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Grupp med GID %jd hade inget gruppnamn.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Grupp %s gick inte att ta bort: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "fel när hemkatalogen togs bort för användaren" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Fel när brevlåda togs bort: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS-information" #: apps/lusermod.c:60 msgid "home directory" msgstr "hemkatalog" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "flytta innehåll i hemkatalog" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "ange skal för användare" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "ange UID för användare" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "ange primärt GID för användare" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "ändra inloggningsnamn för användare" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "lösenord i klartext för användaren" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "för-hashat lösenord för användaren" #: apps/lusermod.c:75 msgid "lock account" msgstr "lås konto" #: apps/lusermod.c:78 msgid "unlock account" msgstr "lås upp konto" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "sätt det vanliga namnet för användaren" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "ange tilltalsnamn för användare" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "ange efternamn för användare" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "ange rumsnummer för användare" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "ange telefonnummer för användare" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "ange hemtelefonnummer för användare" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Det gick inte att sätta lösenord för anvädare %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Det gick inte att låsa användare %s: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Det gick inte att låsa upp användare %s: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Varning: Grupp med ID %jd finns inte.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Det gick inte att modifiera användare %s: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Det gick inte att modifiera grupp %s: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Ingen gammal hemkatalog för %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Ingen ny hemkatalog för %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Fel när %s flyttades till %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "det gick inte att öppna konfigurationsfil \"%s\": %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "det gick inte att ta status på konfigurationsfil \"%s\": %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "konfigurationsfil \"%s\" är för stor" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "det gick inte att läsa konfigurationsfil \"%s\": %s" #: lib/error.c:62 msgid "success" msgstr "gick bra" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modulen avaktiverad av konfigurationen" #: lib/error.c:66 msgid "generic error" msgstr "allmänt fel" #: lib/error.c:68 msgid "not enough privileges" msgstr "inte tillräckliga rättigheter" #: lib/error.c:70 msgid "access denied" msgstr "åtkomst nekas" #: lib/error.c:72 msgid "bad user/group name" msgstr "felaktigt användar-/gruppnamn" #: lib/error.c:74 msgid "bad user/group id" msgstr "felaktigt användar-/grupp-id" #: lib/error.c:76 msgid "user/group name in use" msgstr "användar-/gruppnamn som används" #: lib/error.c:78 msgid "user/group id in use" msgstr "användar-/grupp-id som används" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "fel vid hantering av terminalattribut" #: lib/error.c:82 msgid "error opening file" msgstr "fel när filen öppnades" #: lib/error.c:84 msgid "error locking file" msgstr "fel när filen låstes" #: lib/error.c:86 msgid "error statting file" msgstr "fel när status togs på filen" #: lib/error.c:88 msgid "error reading file" msgstr "fel när filen lästes" #: lib/error.c:90 msgid "error writing to file" msgstr "fel när filen skrevs" #: lib/error.c:92 msgid "data not found in file" msgstr "data finns inte i filen" #: lib/error.c:94 msgid "internal initialization error" msgstr "internt initieringsfel" #: lib/error.c:96 msgid "error loading module" msgstr "fel när modulen lästes in" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "fel när symbolen slogs upp i modulen" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "biblioteks-/modulversion som inte stämmer överens" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "att låsa upp skulle göra lösenordsfältet tomt" #: lib/error.c:105 msgid "invalid attribute value" msgstr "ogiltigt attributvärde" #: lib/error.c:107 msgid "invalid module combination" msgstr "ogiltig modulkombination" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "hemkatalog för ny användare" #: lib/error.c:115 msgid "unknown error" msgstr "okänt fel" #: lib/misc.c:240 msgid "invalid number" msgstr "ogiltigt tal" #: lib/misc.c:254 msgid "invalid ID" msgstr "ogiltigt id" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "ingen initieringsfunktion %s i \"%s\"" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "modulversion stämmer inte i \"%s\"" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modul \"%s\" definierar inte \"%s\"" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "fel när terminalattribut lästes" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "fel när terminalattribut sattes" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "fel vid läsning från terminalen" #: lib/user.c:218 msgid "name is not set" msgstr "inget namn satt" #: lib/user.c:223 msgid "name is too short" msgstr "namnet är för kort" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "namnet är för långt (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "namnet innehåller tecken som inte är ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "namnet innehåller kontrolltecken" #: lib/user.c:249 msgid "name contains whitespace" msgstr "namnet innehåller blanktecken" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "namnet startar med ett bindestreck" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "namnet innehåller ogiltigt tecken \"%c\"" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "användare %s har ingen UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "användaren %s finns inte" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "grupp %s har ingen GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "gruppen %s finns inte" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "användare %jd har inget namn" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "grupp %jd har inget namn" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "användaren har varken ett namn eller en UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "gruppen har varken ett namn eller en GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Vägrar att använda farlig hemkatalog \"%s\" som standard" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Ogiltigt standardvärd för fält %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "fel när filen låstes: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "det gick inte att få standardsäkerhetskontext: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "det gick inte att få säkerhetskontext för \"%s\": %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "det gick inte att sätta standardsäkerhetskontext till \"%s\": %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "det gick inte att avgöra säkerhetskontext för \"%s\": %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "det gick inte att öppna \"%s\": %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "det gick inte att ta status på \"%s\": %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "fel när \"%s\" skapades: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "säkerhetskopieringsfil \"%s\" finns och är inte en normal fil" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Fel när ägaren till \"%s\" ändrades: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Fel vid ändring av rättigheter på ”%s”: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Fel när \"%s\" lästes: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Fel när \"%s\" skrevs: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "storleken på säkerhetskopieringsfilen stämmer inte" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s värde \"%s\": \":\" är inte tillåtet" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "det gick inte att läsa från \"%s\": %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "posten finns redan i filen" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "det gick inte att skriva till \"%s\": %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "entitetsobjektet har inget %s-attribut" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "en post med motstridigt namn finns redan i filen" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "\":\" är inte tillåtet i krypterade lösenord" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "fel när lösenordet krypterades" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "modulerna ”%s” och ”%s” kan inte kombineras" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "kör inte med superanvändarrättigheter" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "det finns ingen skuggfil -- avaktiverar" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "fel vid anslutning till kadm5-servern för tjänst \"%s\" i rike \"%s\": %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "fel när kerberosbibliteket initierades" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "fel när användarnamnet \"%s\" tolkades för kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "entitetsstruktur har inga %s- eller %s-attribut" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entiteten har inga %s- eller %s-attribut" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entiteten skapades utan %s- eller %s-attribut" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "fel när information lästes för \"%s\" från kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entiteten har inget %s-attribut" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "fel när lösenord sattes för \"%s\"" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberosrike" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos administrativ principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberoslösenord för administrativ principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "fel när ldap-bibliotek initierades" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "det gick inte att sätta LDAP-protokoll till version %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "det gick inte att förhandla fram TLS med LDAP-servern" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "det gick inte att binda till en LDAP-server" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "det gick inte att binda till en LDAP-server, första försöket som \"%s\": %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "användarobjektet hade inget %s-attribut" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "användarobjektet var skapat utan \"%s\"" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "fel när en LDAP-katalogpost skapades: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "fel när en LDAP-katalogpost ändrades: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "fel när namnet byttes på en LDAP-katalogpost: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "objektet hade inget %s-attribut" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "fel när LDAP-katalogpost togs bort: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "objektet har inget %s-attribut" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "ej stödd krypteringsmetod för lösenord" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "inget sådant objekt i LDAP-katalogen" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "det finns inget \"%s\"-attribut" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "fel när lösenordet sattes i LDAP-katalogen för %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP-servernamn" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP sökningsbas-DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP bindnings-DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP bindningslösenord" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL-användare" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL-auktoriseringsanvändare" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL-fel när användare skapades: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL-fel när anvädare togs bort: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "fel när Cyrus SASL initierades: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "fel när hemkatalogen skapades för användaren" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "fel när hemkatalogen togs bort för användaren" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "fel när hemkatalogen flyttades för användaren" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Fel när %s initierades: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Ogiltigt ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Söker efter grupp med ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Söker efter grupp med namnet %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Söker efter användare med ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Söker efter användare med namnet %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Ingen post funnen.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Frågor lyckades.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Frågor misslyckades.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Standardvärde för användares objektklasser:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Standardvärde för användares attributnamn:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Hämtar standardvärden för användarattribut:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kopierar användarstruktur:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s hade inte någon hemkatalog.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Fel när %s togs bort: %s.\n" libuser-0.60~dfsg/po/et.gmo0000644000175000017500000004364412226342604015640 0ustar tzafrirtzafrir% PQp5 7V*q$" "0Sr <'/F)v'1Mf'*)(AX.t((.$A f!p "#!# $D#i.  %6%Ek% .BS d r  -#, Ml," 5P#c'! 3Td{"!##B[ k y% 1! ; M $a  8 ( *!*1!)\!*!)!!!1"@"W"r""!"!"+".#C#Ga##)#&#$!,$#N$r$$$$&$($$!%F%)Y%%%0%!%'&&-&'T& |&&3&!&''' ='K'a'"u'' ''' ' (;( [(|("(((())0)%H)#n) ))')) *'* /*-=*k**"**$**+'+, ,$-%--S- d----$-@-'9.a.w. .%.).!/!$/F/V/j//=//,/#*0&N0u0#0 000 1%"1H1&_1'1%1(11#26<2+s2/22*2 3 33#=3a3i3'3(3+3#4$$45I44444445 %5#35W5k555555"56(6A6R6h6w6 66 6636)67467 k7!747,78-848D8V8m88"888%8939N9n999 999+9+&:'R:3z::: : :: ;;&2;Y;2m;;;; ;% <?2<Mr</<.<5=.U=0==#=?=#9>%]>>>#>#>.>(-?V??s??'?#?@"2@#U@y@@@@(@( A'3A[A=nAAA;A$B+sL`C?I~ kY,n !B91o\O{%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valuelibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Estonian (http://www.transifex.com/projects/p/fedora/language/et/) Language: et MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s ei ole gid numbrit. %s puudub %s ei ole volitatud muutma %s infot %s väärtus `%s': `:' ei ole lubatudKonto aegub: %s Konto loomine ebaõnnestus: %s. Konto on lukustatud. Konto ei ole lukustatud. %s tuvastamine ebaõnnestus. Mõlemad -L ja -U on täpsustamata. vaike konteksti seadistamine /etc/passwd jaoks ei ole võimalik Sõrminformatsiooni muutmine %s jaoks. %s parooli muutmine. Kesta muutmine %s jaoks. Kasutajastruktuuri kopeerimine: Cyrus SASL viga kasutaja loomisel: %sCyrus SASL viga kasutaja eemaldamisel: %sKasutaja vaikeatribuutide nimed: Kasutaja vaikeobjektide klassid: E-posti aadressÜksust ei leitud. Viga `%s' omaniku muutmisel: %sViga %s loomisel: %s. Konto loomise viga `%s' jaoks: rida ebasobivalt vormindatud. Viga grupi `%s' loomisel: %s Viga grupi `%s' loomisel kui GID on %jd: %s Viga %s kodukataloogi loomisel: %s Viga kasutajale %s konto loomisel: %s %s lähtestamise viga: %s %s lähtestamisel esines viga: %s. PAM lähtestamisel esines viga. Viga %s otsimisel: %s Viga %s liigutamisel %s: %s. `%s' avamise viga: %s. Argumentide analüüsimise viga: %s. Viga `%s' lugemisel:%sTõrge failideskriptori %d lugemisel. Viga %s esialgse parooli seadmisel: %s Viga grupi %s parooli seadmisel: %s. Viga kasutaja %s parooli seadmisel: %s. Viga `%s' kirjutamisel: %sÕiguste eemaldamine ebaõnnestus. Vananenud %s informatsiooni muutmine ebaõnnestus: %s Grupi %s parooli seadmine ebaõnnestus: %s Kasutaja %s parooli seadmine ebaõnnestus: %s. Sõrminfo on muudetud. Sõrminfot ei ole muudetud: sisendi viga. Sõrminfot ei ole muudetud: %s. TäisnimiKasutaja vaikeatribuutide saamine: EesnimiGruppi %jd ei ole olemas Gruppi %s pole võimalik kustutada: %s Gruppi %s pole võimalik kustutada: %s. Gruppi %s lukustamine ei ole võimalik: %s Gruppi %s pole võimalik muuta: %s Gruppi %s pole võimalik muuta: %s. Gruppi %s lukust lahti tegemine ei ole võimalik: %s Gruppi %s ei ole olemas. Grupi loomine ebaõnnestus: %s Grupil GID-ga %jd puudub nimi. Kodune telefonMitteaktiivne: %ld Sisemine PAM viga `%s'. Sisemine viga. Vigane ID %s Välja %s vigane vaikeväärtus: %sVigane grupi ID %s Vigane kasutaja ID %s Kerberos-e HaldusjuhtKerberose parool HaldusjuhileKerberos piirkondLDAP sidumise numberLDAP sidumise paroolLDAP SASL kasutaja autoriseerimineLDAP SASL kasutajaLDAP sidumise baasnumberLDAP serverinimiViimati muudetud: %s Maksimum: %ld Miinimum: %ld Mitte kunagiUus kestUus paroolUus parool (kinnitus)Grupinimi täpsustamata, gid %d jaoks puudub nimi. Grupinimi täpsustamata, kasutatakse %s. Grupinimi on määramata. Gruppi GID-ga %jd ei ole olemas, seda ei eemaldata. %s-il puudub uus kodukataloogi. %s-il puudub vana kodukataloogi. Kasutajanimi määramata, nimi puudub uid %d jaoks. Kasutajanimi täpsustamata, kasutatakse %s. Kasutajanimi täpsustamata. KontorKontori telefonParool aegub: %s Parool on kehtetu: %s Parooli muutmisest loobutud. Parool on muudetud. Paroolid ei ühti, proovi uuesti. Viibad ebaõnnestusid. Viibad õnnestusid. Segadus konto loomisel kui UID on 0. %s nimelise grupi otsimine. ID-ga %jd grupi otsimine. %s nimelise kasutaja otsimine. ID-ga %jd kasutaja otsimine. Kest muudetud. Kesta ei muudetud: %s Perekonnanimituvastati tundmatu kasutaja. tundmatu kasutaja kontekstKasutajat %s pole võimalik kustutada: %s. Kasutajat %s pole võimalik lukustada: %s. Kasutajat %s pole võimalik muuta: %s. Kasutajat %s pole võimalik lukust lahti teha: %s. Kasutajat %s ei ole olemas. Kasutaja ei sobi. Hoiatus: %ld [VALIK...][VALIK...] [kasutaja][VALIK...] grupp[VALIK...] kasutaja`:' ei ole lubatud krüptitud paroolisligipääs keelatudon olemas varundfail %s, mis ei ole tavaline failvarundfaili suurus ei sobihalb kasutaja/grupi idhalb kasutaja-/grupinimiseadete faili `%s' on liiga suurLDAP serverit polnud võimalik sidudaLDAP serverit polnud võimalik siduda, esmalt üritati `%s': %sTranspordikihi turbeprotokollil (TLS) polnud võimalik suhelda LDAP serverigaaeadete faili `%s' avadmine pole võimalik: %sseadete faili `%s' avamine pole võimalik: %sLDAP protokolli polnud võimalik seada versioonile %dseadete faili `%s' avamine pole võimalik: %sturvakonteksti `%s' saamine ei ole võimalik: %s`%s' avamine pole võimalik: %s`%s'-st lugemine pole võimalik: %svaike turvakonteksti seadistamine `%s'-ile ei ole võimalik: %s`%s'-i polnud võimalik esitada: %s`%s'-i kirjutamine pole võimalik: %sfailis puuduvad andmedüksusel %s puudub atribuutüksusel puudub %s või %s atribuutüksuse objektil puudub atribuut %süksuse struktuuril puudub %s või %s atribuutüksus loodi ilma %s või %s atribuuditafailis on üksus juba olemaskadm5 serveri teenuse `%s' ühendamise viga piirkonnas `%s': %sviga `%s' loomisel: %sLDAP kataloogi üksuse loomise viga: %skasutaja kodukataloogi loomise vigaparooli krüpteerimise vigaviga Cyrus SASL lähtestamisel: %sviga kerberose teegi lähtestamiselldap teegi lähtestamise vigamooduli laadimise vigafaili lukustamise vigaviga faili lukustamisel: %sviga terminali atribuutide käsitlemiselLDAP kataloogi üksuse muutmise viga: %skasutaja kodukataloogi liigutamise vigafaili avamise vigakerberose jaoks kasutajanime `%s analüüsimisel ilmnes vigafaili lugemise vigaviga terminalist lugemiselkerberosest %s ' jaoks informatsiooni lugemisel ilmnes vigaviga terminali atribuutide lugemiselLDAP kataloogi üksuse eemaldamise viga: %skasutaja kodukataloogi kustutamise vigaLDAP kataloogi üksuse ümbernimetamise viga: %ssümbolite lahendamise viga moodulis`%s'-le parooli seadmisel ilmnes vigaparooli seadmisel LDAP kataloogile %s tekkis viga: %sviga terminali atribuutide seadmiselfaili esitamise vigaviga faili kirjutamisel üldine vigagrupil %jd puudub nimigrupil %s puudub GIDgrupil puudub nii nimi kui ka GIDsisemine lähtestamise vigavigane IDvigane atribuudi väärtusteegi/mooduli versioon ei sobimoodul `%s' ei defineeri `%s'moodul on seadistustes keelatudmooduli versiooni mitteühtivus `%s'-snimi sisaldab kontrollmärkenimi sisaldab vigast märki `%c'nimi sisaldab mitte-ASCII märkenimi sisaldab tühikuidnime ei ole seatudnimi on liiga pikk (%zu > %d)nimi on liiga lühikenimi algab sidekriipsuga`%s'-i atribuuti ei leitudpuudub häälestusfunktsioon %s `%s'-svarifail puudub - keelatudLDAP kataloogis puudub selline objektebapiisavad õigusedsuperkasutaja õigustega ei käivitataobjektil puudus atribuut %sobjektil puudub atribuut %sedutundmatu vigalahti lukustamine võib teha parooli välja tühjakskasutajal %jd puudub nimikasutajal %s puudub UIDkasutajal puudub nii nimi kui ka UIDkasutaja objektil puudub atribuut %skasutaja objekt loodi `%s'-takasutaja/grupi id on kasutuselkasutaja-/grupinimi on kasutusellibuser-0.60~dfsg/po/de_CH.gmo0000644000175000017500000004723112226342604016166 0ustar tzafrirtzafrir% pq5,Dc*~$""=` <4/S)' %>Zs*)(&=.Y((.$& K!U w"#!#$)#Nr.  %*Pey% '8 I We k u-#,2Q,p" 5#Hl}'! 9I`h"!##'@ P+^ % 1 2 L ^ $r  8 ( *!*B!)m!*!0!)!)"G"^"1z"""""!#!2#+T#.##G#$)-$&W$~$!$#$$$%&%&=%(d%$%%)%%&0&!O&'q&&&'& & '3)'!]''' '''"'( "(-(<( \( }(( (("(");)K)g)y))%)#) )*',*T*o** *-*&** +"+@+$`++++-@---9.T."q.&.!.4.//B/`/x/2/2/)/)&0P0_01~0%0P0*'1;R1C161& 2'02$X2%}2*2"2'234838m3:3"3,4@148r4?4 45 5*B5m51555-5-6+36._6/6,6607,87e7w77777788&68]8 n8{8 88888 8 99 9'9693S9(9%989.:.>:4m:):&::: ;";<;\;:q;;;5; <2<"Q< t<<<<&<</ =.==/l=1== = >,> H>T>g>z>2>>9>"?2? Q?%r?&???5?:5@8p@=@F@2.A3aA1A&A$A@B-TB-B(B!B)B(%C3NC0C&CKC!&D8HDDD(D-D6E2TEEE!E,E9FFKFF8FFG:$G'_G6GDG7H*;H.fHEH,H,I"5IXIkI'I5I'I JJ-)JWJ)uJ4JJ&J!K;KUKlKK"KK)K,L8/L"hL,LLLLL/M5@MvM*M8M%M'N*BN+mN! o5(C[~DFxBkP"6b+?.eO8Xc'_9V:s,3fYQ;jt`aTw-vUI&R L|{>uNK4nd0)1\Eh#yH%r2]p S$g<qJ^A=G} iW*l @7/mZMz%s did not have a gid number. %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/fedora/language/de_CH/) Language: de_CH MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s hatte keine GID-Nummer. %s ist nicht autorisiert Finger-Einstellungen von %s zu ändern %s Wert`%s': `:' nicht erlaubtBenutzerkonto läuft ab: %s Die Erzeugung des Benutzerkontos ist fehlgeschlagen: %s. Benutzerkonto ist gesperrt. Benutzerkonto ist nicht gesperrt. Authentifizierung fehlgeschlagen: %s. Sowohl -L als auch -U angegeben. Kann Standard-Kontext für /etc/passwd nicht setzen Finger-Einstellungen für %s werden geändert. Passwort für `%s geändert. Shell für %s ändern. Benutzerstrukturen kopieren: Cyrus SASL-Fehler beim Erstellen des Benutzers: %sCyrus SASL-Fehler beim Entfernen des Benutzers: %sStandardmässige Benutzerattribut-Namen: Standardmässige Benutzerobjekt-Klassen: E-Mail-AdresseEintrag wurde nicht gefunden. Fehler beim Ändern des Eigentümers von `%s': %sFehler bei der Erzeugung von %s: %s. Fehler beim Erstellen des Benutzerkontos für `%s': Zeile inkorrekt formatiert. Fehler beim Erstellen der Gruppe `%s': %s Fehler beim Erstellen der Gruppe für `%s' mit GID %jd: %s Fehler beim Erstellen des persönlichen Verzeichnisses für %s: %s Fehler beim Erstellen des Benutzerkontos für %s: %s. Fehler beim Initialisieren von %s: %s Fehler beim Initialisieren von %s: %s. Fehler beim Initialisieren von PAM. Fehler beim Nachschlagen von %s: %s. Fehler beim Verschieben von %s zu %s: %s. Fehler beim Öffnen von `%s': %s. Fehler beim Parsen von Argumenten: %s. Fehler beim Lesen von `%s': %sFehler beim Setzen des Initialpassworts für %s: %s Fehler beim Erstellen des Passworts für Gruppe %s: %s. Fehler beim Erstellen des Passworts für Benutzer %s: %s. Fehler beim Schreiben von `%s': %sPrivilegien können nicht abgegeben werden. Ablauf-Einstellungen konnten nicht geändert werden für %s: %s Passwort konnte nicht gesetzt werden für Gruppe %s: %s Passwort konnte für Benutzer %s nicht eingestellt werden: %s. Finger-Informationen geändert. Finger-Informationen nicht geändert: Eingabefehler. Finger-Informationen nicht geändert: %s. Vollständiger NameSuche nach standardmässigen Benutzerattributen: VornameGruppe %jd existiert nicht Gruppe %s konnte nicht gelöscht werden: %s. Gruppe %s konnte nicht gelöscht werden: %s. Gruppe %s konnte nicht gesperrt werden: %s Gruppe %s konnte nicht modifiziert werden: %s Gruppe %s konnte nicht modifiziert werden: %s. Gruppe %s konnte nicht entsperrt werden: %s Gruppe %s existiert nicht. Die Erzeugung der Gruppe ist fehlgeschlagen: %s Gruppe mit GID %jd hat keinen Gruppennamen. Telefon (Zuhause)Nicht aktiv: %ld Interner PAM-Fehler `%s'. Interner Fehler. Ungültige ID %s Ungültiger Wert in Feld %s: %sUngültige Gruppen-ID %s Ungültige Benutzer-ID %s Kerberos Admin PrincipalKerberos-Passwort für Admin PrincipalKerberos-BereichLDAP Bind DNLDAP Bind-PasswortLDAP SASL-AutorisierungsbenutzerLDAP SASL-BenutzerLDAP Suche Basis-DNLDAP-ServernameLetzte Änderung: %s Maximum: %ld Minimum: %ld NieNeue ShellNeues PasswortNeues Passwort (Bestätigen)Kein Gruppenname angegeben, kein Name für gid %d. Kein Gruppenname angegeben, benutze %s. Es wurde kein Gruppenname angegeben. Gruppe mit GID %jd existiert nicht, entferne sie nicht. Kein neues persönliches Verzeichnis für %s. Kein altes persönliches Verzeichnis für %s. Kein Benutzername angegeben, kein Name für uid %d. Kein Benutzername angegeben, benutze %s. Es wurde kein Benutzername angegeben. BüroTelefon (Arbeit)Passwort läuft ab: %s Passwort nicht aktiv: %s Passwortänderung abgebrochen. Passwort geändert. Passwörter stimmen nicht überein. Noch einmal eingeben. Prompts fehlgeschlagen. Prompts erfolgreich. Erstellen eines Benutzerkontos mit UID 0 verweigert. Suche nach Gruppe mit Namen %s. Suche nach Gruppe mit ID %jd. Suche nach Benutzer mit Namen %s. Suche nach Benutzer mit ID %jd. Shell geändert. Shell nicht geändert: %s NachnameUnbekannter Benutzer authentifiziert. Unbekannter BenutzerinhaltBenutzer %s konnte nicht gelöscht werden: %s. Benutzer %s konnte nicht gesperrt werden: %s. Benutzer %s konnte nicht geändert werden: %s. Benutzer %s konnte nicht freigegeben werden: %s. Benutzer %s existiert nicht. Benutzer stimmt nicht überein. Warnung: %ld Warnung: Gruppe mit ID %jd existiert nicht. [OPTION...][OPTION...] [user][OPTION...] Gruppe[OPTION...] Benutzer`:' nicht erlaubt in verschlüsselten PasswörternZugriff verweigertBackup-Datei `%s' ist vorhanden und keine reguläre DateiSicherungsdateigrösse passt nichtUngültige Benutzer/Gruppen IDUngültiger Benutzer/GruppennameKonfigurationsdatei `%s' ist zu grossKonnte nicht zum LDAP-Server verbindenKonnte nicht zum LDAP-Server verbinden, erster Versuch `%s': %sTLS-Serververbindung konnte nicht ausgehandelt werdenKonfigurationsdatei `%s' konnte nicht geöffnet werden: %sKonfigurationsdatei `%s' konnte nicht gelesen werden: %sLDAP-Protokoll konnte nicht auf Version %d eingestellt werdenstat konnte nicht ausgeführt werden für Konfigurationsdatei `%s': %skonnte Sicherheitskontext `%s' nicht bestimmen: %skonnte Standard-Sicherheitskontext nicht setzen: %skonnte Sicherheitskontext `%s' nicht bekommen: %s`%s' konnte nicht geöffnet werden: %s`%s' konnte nicht gelesen werden: %sSicherheitskontext konnte nicht nach `%s' geschrieben werden: %sstat `%s' konnte nicht ausgeführt werden: %snach `%s' konnte nicht geschrieben werden: %sDaten wurden in der Datei nicht gefundenEntität besitzt kein Attribut %sEntität besitzt kein Attribut %s oder %sEntitätsobjekt besitzt kein %s AttributEntitätenstruktur besitzt kein Attribut %s oder %sEntität wurde ohne Attribut %s oder %s erstelltEintrag bereits in der Datei vorhandenFehler bei der Verbindung zum kadm5-Server für Dienst `%s' in Realm %s: %sFehler beim Erzeugen von `%s': %sFehler beim Erstellen eines LDAP-Verzeichniseintrags: %sFehler beim Erstellen des persönlichen Verzeichnisses für BenutzerFehler beim Verschlüsseln des PasswortsFehler beim Initialisieren von Cyrus SASL: %sFehler bei der Initialisierung der Kerberos-BibliothekFehler bei der Initialisierung der LDAP-BibliothekFehler beim Laden des ModulsFehler beim Sperren der DateiFehler beim Sperren der Datei: %sFehler beim Bearbeiten der TerminalattributeFehler bei der Änderung des LDAP-Verzeichniseintrags: %sFehler beim Verschieben des persönlichen Verzeichnisses für BenutzerFehler beim Öffnen der DateiFehler beim Parsen des Benutzernamens `%s' für KerberosFehler beim Lesen der DateiFehler beim Lesen vom TerminalFehler beim Lesen der Informationen für `%s' von KerberosFehler beim Lesen der TerminalattributeFehler beim Entfernen des LDAP-Verzeichniseintrags: %sFehler beim Entfernen des persönlichen Verzeichnisses für BenutzerFehler beim Umbenennen des LDAP-Verzeichniseintrags: %sFehler beim Auflösen des Symbols im ModulFehler beim Einstellen des Passworts für `%s'Fehler beim Einrichten des Passworts im LDAP-Verzeichnis für %s: %s.Fehler beim Einstellen der TerminalattributeFehler beim Ermitteln der DateiinformationenFehler beim Schreiben in die DateiAllgemeiner FehlerGruppe %jd ist namenlosGruppe %s hat keine Gruppennummer (GID)Gruppe ist namenlos und hat keine Gruppennummer (GID)Interner Fehler bei der InitialisierungUngültige IDUngültige NummerBibliothek/Modulversion stimmt nicht übereinModul %s definiert `%s' nichtModul durch die Konfiguration deaktiviertFehlende Übereinstimmung von Modulversionen in `%s'Name enthält KontrollzeichenName enthält ungültiges Zeichen `%c'Name enthält nicht-ASCII ZeichenName enthält LeerzeichenName ist nicht gesetztName ist zu lang (%zu > %d)Name ist zu kurzName beginnt mit einem Bindestrichkein `%s' Attribut gefundenkeine Initialisierungsfunktion %s in `%s'Keine Shadow-Datei vorhanden -- Deaktiviere.Kein entsprechendes Objekt im LDAP-Verzeichnis vorhandenKeine ausreichenden BerechtigungenKeine Ausführung mit Administrator-Rechten.Objekt hatte kein Attribut %sObjekt besitzt kein Attribut %sErfolgUnbekannter FehlerEntsperrung würde das Passwortfeld leer machennicht unterstütztes Passwort-VerschlüsselungsschemaBenutzer %jd ist namenlosBenutzer %s hat keine Benutzernummer (UID)Benutzer ist namenlos und hat keine Benutzernummer (UID)Benutzerobjekt hatte kein Attribut %sBenutzerobjekt wurde ohne `%s' erstelltBenutzer/Gruppen ID wird bereits verwendetBenutzer/Gruppenname wird bereits verwendetlibuser-0.60~dfsg/po/it.po0000644000175000017500000011042012226342567015473 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Bettina De Monti , 2001 # Francesco D'Aluisio , 2011 # Francesco Tombolini , 2005, 2006, 2007, 2008, 2009 # fvalen , 2012 # lewis41 <>, 2011 # Lorenzo Stobbione , 2004, 2005 # Miloslav Trmač , 2011 # Silvio Pierro , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Italian (http://www.transifex.com/projects/p/fedora/language/" "it/)\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Impossibile rimuovere i privilegi.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Errore interno.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s non è autorizzato a cambiare le informazioni di finger per %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Contesto utente sconosciuto" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Impossibile impostare il contesto predefinito per /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Errore nell'inizializzazione di PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Autenticazione fallita per %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Errore PAM interno `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Autenticato utente sconosciuto.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Utente non corrispondente.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPZIONE...] utente" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Errore nell'analisi degli argomenti: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Nessun nome utente specificato.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Errore nell'inizializzazione di %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "L'utente %s non esiste.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "L'account è bloccato.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "L'account non è bloccato.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimo:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Massimo:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Attenzione:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inattivo:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Mai" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Ultima modifica:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Scadenza password:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Password inattiva:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Scadenza account:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Impossibile modificare le informazioni sulla scadenza per %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPZIONE...] [utente]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Nessun nome utente specificato, nessun nome per uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Modifica informazioni di finger per %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Nome completo" #: apps/lchfn.c:146 msgid "Surname" msgstr "Cognome" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Nome" #: apps/lchfn.c:167 msgid "Office" msgstr "Ufficio" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefono ufficio" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefono casa" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Indirizzo e-mail" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Le informazioni di finger non sono cambiate: errore di input.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Informazioni di finger modificate.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Informazioni di finger non cambiate: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Cambio della shell per %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nuova shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "La shell non è cambiata: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Modificata la shell.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPZIONE...] gruppo" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Nessun nome gruppo specificato.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ID gruppo %s non valido\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Creazione del gruppo fallita: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Il gruppo %s non esiste.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Il gruppo %s non può essere eliminato: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Sono stati specificati sia -L che -U.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Impostazione password per il gruppo %s fallita: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Il gruppo %s non può essere bloccato: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Il gruppo %s non può essere sbloccato: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Il gruppo %s non può essere modificato: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Errore nella ricerca di %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nessun nome di gruppo specificato, usando %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Nessun nome di gruppo specificato, nessun nome per il gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nessun nome utente specificato, usando %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s non esiste\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPZIONE...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Errore nell'aprire `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Errore nella creazione dell'account per `%s': riga impropriamente " "formattata.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ID utente %s non valido\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Rifiuto di creare un account con UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Errore nella creazione del gruppo per '%s' con GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Rifiuto di usare la directory home inappropriata `%s' per %s per " "impostazione predefinita\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Errore nella creazione della home directory per %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Errore nell'impostazione della password iniziale per %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Errore nella creazione dell'account utente per %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Cambio della password per %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nuova password" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nuova password (conferma)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Le password non corrispondono, riprovare di nuovo.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Cambio di password annullato.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Errore leggendo dal file descriptor %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Errore nell'impostazione della password per l'utente %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Errore nell'impostazione della password per il gruppo %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Password cambiata.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Il gruppo %jd non esiste.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Errore nella creazione del gruppo `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Creazione account fallita: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Errore nella creazione di %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "L'utente %s non può essere eliminato: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s privo di un numero gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Non esiste nessun gruppo con GID %jd, nessuna rimozione.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Il gruppo con GID %jd è privo di un nome di gruppo.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Il gruppo %s non può essere eliminato: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "errore nella rimozione della home directory per l'utente" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Impostazione password per l'utente %s fallita: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "L'utente %s non può essere bloccato: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "L'utente %s non può essere sbloccato: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Attenzione: Il gruppo con ID %jd non esiste.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "L'utente %s non può essere modificato: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Il gruppo %s non può essere modificato: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Nessuna precedente directory di home per %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Nessuna nuova directory di home per %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Errore nello spostamento di %s in %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "impossibile aprire il file di configurazione `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "impossibile fare lo stat del file di configurazione `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "il file di configurazione `%s' è troppo grande" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "impossibile leggere il file di configurazione `%s': %s" #: lib/error.c:62 msgid "success" msgstr "eseguito" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modulo disabilitato da configurazione" #: lib/error.c:66 msgid "generic error" msgstr "errore generico" #: lib/error.c:68 msgid "not enough privileges" msgstr "privilegi insufficienti" #: lib/error.c:70 msgid "access denied" msgstr "accesso negato" #: lib/error.c:72 msgid "bad user/group name" msgstr "nome utente/gruppo errato" #: lib/error.c:74 msgid "bad user/group id" msgstr "ID utente/gruppo errato" #: lib/error.c:76 msgid "user/group name in use" msgstr "nome utente/gruppo in uso" #: lib/error.c:78 msgid "user/group id in use" msgstr "ID utente/gruppo in uso" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "errore nella modifica degli attributi del terminale" #: lib/error.c:82 msgid "error opening file" msgstr "errore nell'apertura del file" #: lib/error.c:84 msgid "error locking file" msgstr "errore nel blocco del file" #: lib/error.c:86 msgid "error statting file" msgstr "errore nello stat del file" #: lib/error.c:88 msgid "error reading file" msgstr "errore nella lettura del file" #: lib/error.c:90 msgid "error writing to file" msgstr "errore nella scrittura su file" #: lib/error.c:92 msgid "data not found in file" msgstr "dati non trovati nel file" #: lib/error.c:94 msgid "internal initialization error" msgstr "errore interno di inizializzazione" #: lib/error.c:96 msgid "error loading module" msgstr "errore di caricamento del modulo" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "errore di risoluzione del simbolo nel modulo" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "mancata corrispondenza nella versione di modulo/libreria" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "lo sblocco renderà vuoto il campo della password" #: lib/error.c:105 msgid "invalid attribute value" msgstr "valore dell'attributo non valido" #: lib/error.c:107 msgid "invalid module combination" msgstr "combinazione di modulo non valida" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "errore sconosciuto" #: lib/misc.c:240 msgid "invalid number" msgstr "numero non valido" #: lib/misc.c:254 msgid "invalid ID" msgstr "ID non valido" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "nessuna funzione di inizializzazione %s in `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "mancata corrispondenza nella versione del modulo in `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "il modulo `%s' non definisce `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "errore nella lettura degli attributi del terminale" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "errore nell'impostazione degli attributi del terminale" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "errore nella lettura dal terminale" #: lib/user.c:218 msgid "name is not set" msgstr "il nome non e' impostato" #: lib/user.c:223 msgid "name is too short" msgstr "il nome è troppo corto" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "il nome è troppo lungo (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "il nome contiene caratteri non-ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "il nome contiene caratteri di controllo" #: lib/user.c:249 msgid "name contains whitespace" msgstr "il nome contiene spazi bianchi" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "il nome inizia con un trattino" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "il nome contiene il carattere non valido `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "l'utente %s non ha alcun UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "il gruppo %s non ha alcun GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "l'utente %jd non ha alcun nome" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "il gruppo %jd non ha alcun nome" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "l'utente non ha né un nome né un UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "il gruppo non ha né un nome né un GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" "Rifiuto di usare la directory home inappropriata `%s' per impostazione " "predefinita" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Valore predefinito non valido del campo %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "errore nel blocco del file: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "impossibile recuperare il contesto di sicurezza predefinito: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "impossibile recuperare il contesto di sicurezza di `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "impossibile impostare il contesto di sicurezza predefinito a `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "impossibile determinare il contesto di sicurezza per `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "impossibile aprire `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "impossibile fare lo stat di `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "errore nella creazione di `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "il file di backup `%s' esiste e non è un file regolare" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Errore nel cambiamento del proprietario di '%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Errore modifica della modalità di `%s': %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Errore nella lettura di `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Errore nella scrittura di `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "dimensione non corrispondente nel file di backup" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s valore `%s': `:' non permesso" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "impossibile leggere da `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "voce già presente nel file" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "impossibile scrivere su `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "nessun attributo %s per l'entità" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "voce con nome in conflitto già presente nel file" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' non permesso in password cifrate" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "errore nella cifratura della password" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "i moduli `%s' e `%s' non possono essere combinati" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "in esecuzione senza i privilegi di superutente" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "nessun file shadow presente -- disattivazione" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "errore durante la connessione al server kadm5 per il servizio `%s' nel realm " "`%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "errore nell'inizializzazione della libreria di kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "errore nell'analisi del nome utente `%s' per kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "la struttura dell'entità non ha nessun %s o attributi di %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "l'entità non ha nessun %s o attributi di %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "l'entità è stata creata senza %s o attributi di %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "errore nella lettura delle informazioni per `%s' da kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "l'entità non ha nessun attributo %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "errore nell'impostazione della password per `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Realm di kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Admin Principal di kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Password di kerberos per Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "errore nell'inizializzazione della libreria ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "impossibile impostare il protocollo LDAP alla versione %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "impossibile negoziare il TLS con il server LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "impossibile collegarsi al server LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "impossibile collegarsi al server LDAP, primo tentativo come `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "l'oggetto utente non ha nessun attributo %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "l'oggetto utente è stato creato senza `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "errore nella creazione di una voce di directory LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "errore nella modifica della voce di directory LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "errore nel rinominare la voce di directory LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "l'oggetto non ha nessun attributo %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "errore nella rimozione della voce di directory LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "l'oggetto non ha nessun attributo %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "schema di cifratura password non supportato" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "tipo di oggetto non presente nella directory LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "nessun attributo `%s' trovato" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "" "errore nell'impostazione della password nella directory LDAP per %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Nome del server LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Base DN di ricerca LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Password LDAP Bind" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Utente LDAP SASL" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Autorizzazione utente LDAP SASL" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "errore Cyrus SASL nella creazione dell'utente: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "errore Cyrus SASL nella rimozione dell'utente: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "errore nell'inizializzazione di Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "errore nella creazione della home directory per l'utente" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "errore nella rimozione della home directory per l'utente" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "errore nello spostamento della home directory per l'utente" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Errore nell'inizializzazione di %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ID %s non valido\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Ricerca del gruppo con ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Ricerca del gruppo di nome %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Ricerca dell'utente con ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Ricerca dell'utente di nome %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Voce non trovata.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Comandi eseguiti con successo\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Esecuzione dei comandi fallita.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Classi oggetto utente predefinite:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Nomi attributi dell'utente predefiniti:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Recupero attributi predefiniti dell'utente:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Copia della struttura dell'utente:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s è privo della directory home.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Errore nella rimozione di %s: %s.\n" libuser-0.60~dfsg/po/pt_BR.po0000644000175000017500000010775212226342570016075 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # ataliba , 2012 # David Barzilay , 2003, 2004 # Glaucia Freitas , 2009 # Igor Pires Soares , 2006, 2007, 2008, 2009 # Miloslav Trmač , 2011 # Pedro Macedo , 2005 # Rodrigo Padula de Oliveira , 2005, 2006 # Taylon Silmer , 2011 # Tiago Pasqualotto , 2004 # ufa , 2012 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" "fedora/language/pt_BR/)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Falha ao abandonar privilégios.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Erro interno.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s não está autorizado a alterar as informações do finger de %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Contexto de usuário desconhecido" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Não foi possível determinar o contexto padrão para /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Erro ao inicializar o PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Autenticação falhou para %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Erro interno no PAM \"%s\".\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Usuário desconhecido autenticado.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Usuário incompatível.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPÇÃO...] usuário" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Erro ao analisar argumentos: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Nenhum nome de usuário especificado.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Erro ao inicializar %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "O usuário %s não existe.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "A conta está bloqueada.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "A conta não está bloqueada.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Mínimo:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Máximo:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Aviso:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inativo:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nunca" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Última alteração:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Senha expira:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Senha inativa:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Conta expira:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Falha ao modificar a informação de envelhecimento para %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPÇÃO...] [usuário]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Nenhum nome de usuário especificado, sem nome para o uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Alterando informações do finger para %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Nome completo" #: apps/lchfn.c:146 msgid "Surname" msgstr "Sobrenome" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Nome fornecido" #: apps/lchfn.c:167 msgid "Office" msgstr "Escritório" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefone comercial" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefone residencial" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Endereço de e-mail" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Informações do finger não alteradas: erro de entrada.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Informações do finger alteradas.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Informações do finger não alteradas: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Trocando shell para %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Novo shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell não alterado: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell alterado.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPÇÃO...] grupo" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Nenhum nome de grupo especificado.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ID %s de grupo inválido\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Falha na criação do grupo: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "O grupo %s não existe.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "O grupo %s não pôde ser apagado: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Ambos -L e -U especificados.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Não foi possível definir a senha do grupo %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "O grupo %s não pôde ser bloqueado: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "O grupo %s não pôde ser desbloqueado: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "O grupo %s não pôde ser modificado: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Erro ao procurar %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nenhum nome de grupo especificado, usando %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Nenhum nome de grupo especificado, nenhum nome para o gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nenhum nome de usuário especificado, usando %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s não existe\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPÇÃO...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Erro ao abrir \"%s\": %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Erro ao criar conta para \"%s\": linha formatada inadequadamente.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ID de usuário %s inválido\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Recusando criar conta com UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Erro ao criar grupo para \"%s\" com GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "Recusando a usar o diretório home perigoso %s' para %s por padrão\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Erro ao criar diretório home para %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Erro ao definir senha inicial para %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Erro ao criar conta de usuário para %s: %s.\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Alterando senha para %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nova senha" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nova senha (confirmar)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Senhas não coincidem, tente novamente.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Alteração de senha cancelada.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Erro ao ler o descritor de arquivo %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Erro ao definir senha para o usuário %s: %s\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Erro ao definir senha para o grupo %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Senha alterada.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "O grupo %jd não existe\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Erro ao criar o grupo \"%s\": %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "A criação da conta falhou: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Erro ao criar %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "O usuário %s não pôde ser apagado: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s não tem um número gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Não existe um grupo com o GID %jd, não será removido.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "O grupo com o GID %jd não tinha um nome.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "O grupo %s não pôde ser apagado: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "erro ao remover diretório home para o usuário" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Falha ao definir a senha do usuário %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "O usuário %s não pôde ser bloqueado: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "O usuário %s não pôde ser desbloqueado: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Aviso: O grupo de ID %jd não existe\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "O usuário %s não pôde ser modificado: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "O grupo %s não pôde ser modificado: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Não há um diretório home antigo para %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Não há um novo diretório home para %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Erro ao mover %s para %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "não foi possível abrir o arquivo de configuração \"%s\": %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "" "não foi possível obter as propriedades do arquivo de configuração \"%s\": %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "o arquivo de configuração \"%s\" é muito grande" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "não foi possível acessar o arquivo de configuração \"%s\": %s" #: lib/error.c:62 msgid "success" msgstr "sucesso" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "módulo desativado pela configuração" #: lib/error.c:66 msgid "generic error" msgstr "erro genérico" #: lib/error.c:68 msgid "not enough privileges" msgstr "não há privilégios suficientes" #: lib/error.c:70 msgid "access denied" msgstr "acesso negado" #: lib/error.c:72 msgid "bad user/group name" msgstr "nome do usuário/grupo inválido" #: lib/error.c:74 msgid "bad user/group id" msgstr "id do usuário/grupo inválido" #: lib/error.c:76 msgid "user/group name in use" msgstr "nome do usuário/grupo em uso" #: lib/error.c:78 msgid "user/group id in use" msgstr "id do usuário/grupo em uso" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "erro ao manipular atributos do terminal" #: lib/error.c:82 msgid "error opening file" msgstr "erro ao abrir arquivo" #: lib/error.c:84 msgid "error locking file" msgstr "erro ao bloquear arquivo" #: lib/error.c:86 msgid "error statting file" msgstr "erro ao criar estatísticas do arquivo" #: lib/error.c:88 msgid "error reading file" msgstr "erro ao ler arquivo" #: lib/error.c:90 msgid "error writing to file" msgstr "erro ao gravar no arquivo" #: lib/error.c:92 msgid "data not found in file" msgstr "dados não encontrados no arquivo" #: lib/error.c:94 msgid "internal initialization error" msgstr "erro interno de inicialização" #: lib/error.c:96 msgid "error loading module" msgstr "erro ao carregar módulo" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "erro ao resolver símbolo em módulo" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "versões de biblioteca/módulo não compatíveis" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "desbloquear deixará o campo da senha vazio" #: lib/error.c:105 msgid "invalid attribute value" msgstr "valor de atributo inválido" #: lib/error.c:107 msgid "invalid module combination" msgstr "combinação de módulo inválida" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "erro desconhecido" #: lib/misc.c:240 msgid "invalid number" msgstr "número inválido" #: lib/misc.c:254 msgid "invalid ID" msgstr "ID inválido" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "não existe uma função de inicialização %s em \"%s\"" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "versão não compatível de módulo em \"%s\"" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "o módulo \"%s\" não define \"%s\"" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "erro ao ler atributos do terminal" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "erro ao definir atributos do terminal" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "erro ao ler do terminal" #: lib/user.c:218 msgid "name is not set" msgstr "o nome não está definido" #: lib/user.c:223 msgid "name is too short" msgstr "o nome é muito curto" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "o nome é muito longo (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "o nome contém caracteres não ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "o nome contém caracteres de controle" #: lib/user.c:249 msgid "name contains whitespace" msgstr "o nome contém espaço" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "o nome inicia com um hífen" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "o nome contém o caractere inválido \"%c\"" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "o usuário %s não possui UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "o grupo %s não possui GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "o usuário %jd não possui um nome" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "o grupo %jd não possui um nome" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "o usuário não possui nome nem UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "o grupo não possui nome nem GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Recusando a usar o diretório home perigoso %s' por padrão" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Valor padrão inválido para o campo %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "erro ao bloquear arquivo: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "não foi possível obter o contexto padrão de segurança: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "não foi possível obter o contexto de segurança de \"%s\": %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" "não foi possível determinar o contexto padrão de segurança de \"%s\": %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "não foi possível determinar o contexto de segurança para \"%s\": %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "não foi possível abrir \"%s\": %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "não foi possível criar estatísticas de \"%s\": %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "erro ao criar \"%s\": %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "o arquivo de backup \"%s\" existe e não é um arquivo normal" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Erro ao mudar o proprietário de \"%s\": %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Erro modificando o modo de `%s': %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Erro ao ler \"%s\": %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Erro ao escrever \"%s\": %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "Arquivo de backup difere no tamanho" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s de valor \"%s\": \":\" não permitido" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "não foi possível ler de \"%s\": %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "entrada já presente no arquivo" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "não foi possível gravar em \"%s\": %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "o objeto da entidade não tem um atributo %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "entrada com o nome conflitante já presente no arquivo" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "\":\" não permitido em senhas criptografadas" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "erro ao criptografar a senha" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "os módulos `%s' e `%s' não podem ser combinados" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "executando sem os privilégios de superusuário" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "arquivo shadow não está presente -- desabilitando" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "erro ao conectar ao servidor kadm5 para o serviço \"%s\" no domínio \"%s\": " "%s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "erro ao inicializar a biblioteca do kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "erro ao analisar o nome de usuário \"%s\" para o kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "a estrutura da entidade não tem atributos %s ou %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "a entidade não tem atributos %s ou %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "a entidade foi criada sem os atributos %s ou %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "erro ao ler informações para \"%s\" do kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "a entidade não tem o atributo %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "erro ao definir senha para \"%s\"" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Domínio Kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Administração Principal do Kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Senha do Kerberos para administração principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "erro ao inicializar a biblioteca ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "não foi possível definir o protocolo LDAP para a versão %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "não foi possível negociar TLS com o servidor LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "não foi possível conectar ao servidor LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "não foi possível conectar ao servidor LDAP, primeira tentativa como \"%s\": " "%s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "o objeto do usuário não tinha o atributo %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "o objeto do usuário foi criado sem \"%s\"" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "erro ao criar a entrada do diretório LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "erro ao modificar entrada de diretório LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "erro ao renomear a entrada do diretório LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "o objeto não tinha o atributo %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "erro ao apagar a entrada do diretório LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "o objeto não tem o atributo %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "esquema de criptografia de senha não suportado" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "objeto não encontrado no diretório LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "atributo \"%s\" não encontrado" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "erro ao definir senha no diretório LDAP para %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Nome do servidor LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "DN base para pesquisas LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "DN de conexão LDAP" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Senha de conexão LDAP" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Usuário SASL LDAP" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Usuário de autorização SASL LDAP" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Erro do Cyrus SASL ao criar usuário: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Erro do Cyrus SASL ao remover usuário: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "erro ao inicializar Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "erro ao criar diretório home para o usuário" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "erro ao remover diretório home para o usuário" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "erro ao mover diretório home para o usuário" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Erro ao inicializar %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ID %s inválido\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Pesquisando por grupo com ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Pesquisando por grupo de nome %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Pesquisando por usuário com ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Pesquisando por usuário de nome %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Entrada não encontrada.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Prompts bem-sucedidos.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Prompts falharam.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Classes padrões de objetos dos usuários:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Nomes padrões dos atributos dos usuários:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Obtendo atributos padrões dos usuários:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Copiando estrutura do usuário:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s não tinha um diretório home.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Erro ao apagar %s: %s.\n" libuser-0.60~dfsg/po/zh_CN.gmo0000644000175000017500000006005712226342605016227 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<> >.>?3?G?c?t??!?/??@&@>@,[@+@@@@@ A"AAA_A5yAA/A%A$$BIB%gBBBBB#BC:CWC&oCC(C(C(D.DFD'[D'D(DD/D%EEE LEYE%sEEEE"EEF"3FVFvFF.F FFF G"G1GBGXGoGGGGGGGHH&H8H RH_H nH${HHHH H HH/H%I4I7QIII/I%IJ 6J @JMJTJhJJJJJJ&J&K1=K oK&yKK&KKLL2L6LML"fLL"L"LLM M*%M PM\MqMMMM2M$MN7NNNdN}NNN@N"O *O KO$lO O%O&O'O'PAP*\PPPPPPNP$EQjQ$QQQQ-Q!R#>R"bR)R2RR'RA&ShS&S!SS#ST(TDTZTmTT&T!TT)U*U@U1\UU)U!U)U! VBV3_VVVV!V V WW+WCWTWdW wW WWWW WW X X-XFX<bXXXXX Y (Y2YNYjYYYYYYZ0ZFZYZ pZ}ZZZZ ZZ$[C[*Y[0[[[5[B%\h\\\\\$\']>]W] m]{]]]!]!]]^/^B^U^q^^^^(^^ ^ ^ __._M_e_z_#_"_%__`0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-09-22 11:49+0000 Last-Translator: Christopher Meng Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora/language/zh_CN/) Language: zh_CN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; %s 没有 gid 号码。 %s 不存在 %s 没有被授权改变 %s 的 finger 信息 %s 值 `%s':不允许 `:'帐号过期: %s 创建帐号失败:%s。 帐号被锁。 帐号没被锁。 %s 验证失败。 -L 和 -U 两者皆被指定。 不能为 /etc/passwd 设定默认的上下文 改变 %s 的 finger 信息。 为`%s'改变密码。 改变 %s 的 shell。 正在复制用户结构: 创建用户时出现 Cyrus SASL 错误:%s删除用户时出现 Cyrus SASL错误:%s天默认的用户属性名称: 默认的用户对象类别: 电子邮件地址没有发现项目。 变更 `%s' 模式出错: %s创建组群`%s': %s出错。创建 %s 失败:%s。 为`%s'创建账号时出错:行格式不正确。 创建组群'%s': %s出错。 创建组群`%s'时出错,使用 GID %jd: %s 为 %s 创建主目录时出错:%s 为 %s 创建邮件池时出错: %s 创建邮件池时出错: %s 为 %s 创建用户账号失败:%s 初始化 %s 时出错:%s 初始化 %s 出错:%s。 初始化 PAM 出错。 查找 %s 时出错:%s 将 %s 移至 %s 时出错:%s。 打开 `%s': %s时出错. 解析参数时出错:%s. 读取`%s': %s时出错从文件描述符 %d 读取错误。 删除邮件池时出错: %s为`%s'设置初始密码时出错:%s 为组群`%s'设置密码时出错:%s 为用户 %s 设置密码失败:%s。 写入`%s': %s时出错放弃特权失败. 为 %s: %s 修改老化信息失败。 为组群 %s: %s 设置密码失败。 为用户 %s 设置密码失败:%s。 Finger 信息被改变。 Finger 信息没有被改变:输入错误。 Finger 信息没有被改变:%s。 全称GECOS 信息新用户的 GECOS 信息正在获取默认的用户属性: 名组群 %jd 不存在 组群 %s 无法被删除:%s 组群 %s 无法被删除:%s。 组群 %s 无法被锁:%s 组群 %s 无法被修改:%s 组群 %s 无法被修改:%s。 组群 %s 无法被开锁:%s 组群 %s 不存在。 创建组群失败:%s GID 号码为 %jd 的组群没有组群名。 家庭电话不活跃: %ld 不活跃: 从不 内部 PAM 错误`%s'. 内部错误. 无效的 ID %s 无效默认值%s: %s无效的组群 ID %s 无效的用户 ID %s Kerberos 主管理员Kerberos 主管理员密码Kerberos 领域LDAP 关联 DNLDAP 关联密码LDAP SASL 授权用户LDAP SASL 用户LDAP 搜索基点 DNLDAP 服务器名最后一次改变: %s 至多: %ld 至多: 无 至少: %ld 强制在下次登录时修改密码名称数字从不新建 Shell新密码新密码(确认)没有指定组群名,gid %d 没有名称。 没有指定组群名,使用 %s。 没有指定的组群名。 GID 号码为 %jd 的组群不存在,无法删除。 %s 没有新的主目录。 %s 没有旧的主目录。 没有指定用户名,uid %d 没有姓名。 没有指定用户名,使用 %s。 没有指定的用户名。 办公室办公电话路径密码过期: %s 密码不活跃: %s 密码改变被取消。 密码被改变。 密码不匹配,请重试。 提示失败。 提示成功。 拒绝使用 UID 0 来创建账号。 默认拒绝使用危险主目录 `%s'默认拒绝为 %s 使用危险的主目录 `%s' 字符串正在搜索名称为 %s 的组群。 正在搜索 ID %jd 组群。 正在搜索名称为 %s 的用户。 正在搜索 ID %jd 用户。 Shell 被改变。 Shell 没有改变:%s 姓未知用户验证。 未知的用户上下文用户 %s 无法被删除:%s。 用户 %s 无法被锁:%s。 用户 %s 无法被修改:%s。 用户 %s 无法被开锁:%s。 用户 %s 不存在。 用户错配。 警告: %ld 警告:ID 为 %jd 的组群不存在。 [OPTION...][OPTION...] [用户][OPTION...] 组群[OPTION...] 用户加密密码中不允许有 `:'访问被拒绝备份文件`%s' 已存在,且不是常规文件备份文件大小与原文件不符用户/组群 ID 不对用户/组群名不对改变用户组名称改变用户的登录名新用户常用名配置文件`%s'太大无法关联到 LDAP 服务器无法关联到 LDAP 服务器,第一此作为 `%s': %s 尝试无法与 LDAP 服务器商讨 TLS无法打开配置文件`%s': %s无法读取配置文件`%s': %s无法将 LDAP 协议设为版本 %d无法打开配置文件`%s': %s无法为 `%s': %s 决定安全内容无法获取默认的安全内容:%s无法得到 `%s': %s的安全上下文无法打开“%s”:%s无法从`%s': %s中读取无法为`%s': %s 设置默认的上下文无法 stat `%s': %s无法写入`%s': %s创建一个系统组创建系统用户文件中没有发现数据以天数为单位从 1970 年 1 月 1 日起最后一次密码变更的日期密码过期多少天前提醒用户新用户的目录和文件不创建和用户同名的用户组不创建主文件夹不为用户创建主文件夹不创建邮件池不移除用户私有组,如果存在的话实体没有任何 %s 属性实体没有任何 %s 或 %s 属性实体对象没有任何 %s 属性实体结构没有任何 %s 或 %s 属性实体创建时没有包括任何 %s 或 %s 属性项目已在文件中出现文件中出现带冲突名称的条目为`%s'服务在领域`%s'中连接 kadm5 服务器时出错:%s创建“%s”时出错:%s建立 LDAP 目录项目时出错:%s为用户创建主目录时出错错误的加密密码初始化 Cyrus SASL 时出错:%s初始化 kerberos 库时出错初始化 ldap 库时出错载入模块时出错锁文件时出错锁文件时出错:%s操作终端属性时出错修改 LDAP 目录项目时出错:%s移动用户的主目录时出错打开文件时出错为 kerberos 解析用户名`%s'时出错读取文件时出错从终端上读取时出错从 kerberos 中为 `%s' 读取信息时出错。读取终端属性时出错删除 LDAP 目录项目时出错:%s。删除用户的主目录时出错将 LDAP 目录项目更名时出错:%s在模块中解析符号时出错为`%s'设置密码时出错在 LDAP 目录中为 %s 设置密码时出错:%s设置终端属性时出错开始文件时出错写入文件时出错包含用户信息记录的文件通用错误新用户组 GID新用户的名组群 %jd 没有名字组 %s 没有GID未找到组 %s新用户所属组组 %s 没有名字也没有 UID主文件夹新用户的主文件夹新用户的家庭电话号码内部初始错误无效的 ID无效属性值无效模块组合无效数字库或模块版本错配列出用户过期的参数列出指明用户组的成员而非指明用户的组成员准备添加的管理员列表准备移除的管理员列表准备添加的组成员列表准备移除的组成员列表锁定帐户锁定组密码变更的最长天数密码变更的最短天数模块 `%s' 没有定义 `%s'配置禁用了模块在`%s'中模块版本错配移动主文件夹内容名称中包含控制字符名称中包含无效字符`%c'名称中包含非 ASCII 字符名称中包含空格没有设置名称名字太长(%zu > %d)名称太短名字以连字符开头新的加密密码新的纯文本密码没有发现任何`%s' 属性没有初始功能 %s 在`%s'中没有屏蔽文件 -- 将禁用在 LDAP 目录中没有此类对象没有足够的特权没有使用超级用户的特权在执行密码过期多少天后将帐户设为不活跃对象没有任何 %s 属性对象没有任何 %s 属性仅在成员信息中显示名称,而不是 UID/GID以天数为单位从 1970 年 1 月 1 日起密码过期的日期给用户的纯文本密码供组使用的纯文本密码给用户的预哈希密码供组使用的预哈希密码提示全部信息从指定描述器读取加密密码从指定描述器读取纯文本密码移除用户主文件夹新用户的房间号设定组 GID设定用户 UID设定用户的常用名设定用户的名设定组密码而非用户密码设定用户的家庭电话号码设定用户的主要 GID设定用户的房间号设定用户 Shell设定用户的姓设定用户的电话号码新用户的 Shell成功新用户的姓新用户的电话号码“%s”和“%s”模块不能被组合新用户的 UID未知错误解锁帐户解锁组解锁将使密码域为空不支持的密码加密方案用户 %jd 没有名字用户 %s 没有 UID未找到用户 %s用户 %s 没有名字也没有 UID用户对象没有任何 %s 属性用户对象创建时没有包括`%s'用户/组群 ID 被使用用户/组群名被使用libuser-0.60~dfsg/po/as.gmo0000644000175000017500000007543112226342604015632 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----:/ //7r090R00710h1j1^2c2i2YM3M3W3oM4i4q'5q5 63,6K`6E6E687U7Q8q8S9=9B:?`:>:M:7-;Qe;%;\;:<<X=1=Z*>>r??e'@@fA"AA1BEHBJBUB;/CMkClCB&D>iDPDcD]E!qE@E7E FY F)zF>FFEFBG QG%^GKG1GHH35HiH!HHH(H>IOI~I_bJJPJK_KKLnCMM+MEM<CN}NJNlIO=O:Od/PP;QIQQDR^RfR>\S:SSfSlMTxTb3UUiVSV=V'W`hh;RiNi^i`1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Assamese (http://www.transifex.com/projects/p/fedora/language/as/) Language: as MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s ৰ কোনো gid সংখ্যা নাই । %s নাই %s ৰ finger সংক্ৰান্ত তথ্য পৰিবৰ্তন কৰাৰ অধিকাৰ %s ৰ নাই । %s মান `%s': `:' ৰ অনুমতি নাইহিচাপৰ মেয়াদপূৰ্তী: %s হিচাপ সৃষ্টি কৰোঁতে ব্যৰ্থ: %s । হিচাপ লক কৰা আছে । হিচাপ লক কৰা নাই । %s ৰ পৰিচয়প্ৰমাণ প্ৰক্ৰিয়া ব্যৰ্থ হৈছে । -L আৰু -U দুয়োটাই নিৰ্দিষ্ট কৰা হৈছে । /etc/passwd ৰ অবিকল্পিত প্ৰসঙ্গ নিৰ্ধাৰণ কৰা সম্ভৱ নহয় %s সংক্ৰান্ত finger তথ্য পৰিবৰ্তন কৰা হৈছে । %s ৰ গুপ্তশব্দ পৰিবৰ্তন কৰা হৈছে । %s ৰ শ্বেল পৰিবৰ্তন কৰা হৈছে । ব্যৱহাৰকৰোঁতাৰ গঠন নকল কৰা হৈছে: ব্যৱহাৰকৰোঁতা সৃষ্টি কৰোঁতে Cyrus SASL সমস্যা: %sব্যৱহাৰকৰোঁতাক আঁতৰুৱাৰ সময়ত Cyrus SASL ভুল: %sব্যৱহাৰকৰোঁতাৰ অবিকল্পিত বৈশিষ্ট্যৰ নাম: ব্যৱহাৰকৰোঁতাৰ অবিকল্পিত অব্জেক্ট ক্লাছ: ঈ-মেইল ঠিকনানিবেশ পোৱা নাযায় । `%s' ৰ ত্ৰুটি পৰিৱৰ্তন অৱস্থা: %s`%s' ৰ গৰাকীৰ পৰিবৰ্তনত ভুল: %s%s সৃষ্টি কৰোঁতে সমস্যা: %s । `%s' ৰ বাবে হিচাপ সৃষ্টি কৰোঁতে সমস্যা: পংক্তিটো সঠিক বিন্যাসেৰে গঠিত নহয় । `%s' সমষ্টি সৃষ্টি কৰোঁতে সমস্যা: %s `%s' ৰ বাবে, GID %jd ব্যৱহাৰ কৰি সমষ্টি সৃষ্টি কৰোঁতে সমস্যা: %s %s ৰ বাবে ঘৰৰ পঞ্জিকা সৃষ্টি কৰোঁতে সমস্যা: %s %s ৰ বাবে ব্যৱহাৰকৰোঁতাৰ হিচাপ সৃষ্টি কৰোঁতে সমস্যা:%s %s আৰম্ভ কৰোঁতে সমস্যা: %s %s আৰম্ভ কৰোঁতে সমস্যা: %s । PAM আৰম্ভ কৰোঁতে সমস্যা । %s অনুসন্ধানত সমস্যা: %s । %s ক %s লৈ নিওঁতে সমস্যা হৈছে: %s । `%s' খোলোঁতে সমস্যা: %s । তৰ্ক বিশ্লেষণ কৰোঁতে সমস্যা: %s. `%s' পঢ়োঁতে ভুল: %s%d নথিপত্ৰ বিৱৰকৰ পৰা পঢ়োতে ত্ৰুটি। %s ৰ বাবে প্ৰাৰম্ভিক গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা: %s %s সমষ্টিৰ বাবে গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা: %s । %s ব্যৱহাৰকৰোঁতাৰ বাবে গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা: %s । `%s' লিখোঁতে সমস্যা: %sঅধিকাৰ হ্ৰাসৰ প্ৰচেষ্টা ব্যৰ্থ । %s সংক্ৰান্ত পুৰনি তথ্য পৰিবৰ্তনৰ প্ৰচেষ্টা ব্যৰ্থ: %s । %s সমষ্টিৰ গুপ্তশব্দ সৃষ্টি কৰোঁতে ব্যৰ্থ: %s %s ব্যৱহাৰকৰোঁতাৰ বাবে গুপ্তশব্দ নিৰ্ধাৰণ কৰা সম্ভৱ নহয়: %s । Finger সংক্ৰান্ত তথ্য পৰিবৰ্তন কৰা হৈছে । Finger সংক্ৰান্ত তথ্য পৰিবৰ্তন কৰা নাযায়: নিবেশত ত্ৰুটি । Finger সংক্ৰান্ত তথ্য পৰিবৰ্তন কৰা নহয়: %s । সম্পূৰ্ণ নামব্যৱহাৰকৰোঁতাৰ অবিকল্পিত বৈশিষ্ট্য আহৰণ কৰা হৈছে: দিয়া নাম%jd সমষ্টিটি বৰ্তমানে নাই । %s সমষ্টি আঁতৰুৱা সম্ভৱ নহয়: %s %s সমষ্টিটি আঁতৰুৱা সম্ভৱ নহয়: %s । %s সমষ্টি লক কৰা নাযায়: %s %s সমষ্টি পৰিবৰ্তন কৰা নাযায়: %s %s সমষ্টিৰ তথ্য পৰিবৰ্তন কৰা সম্ভৱ নহয়: %s । %s সমষ্টি আন-লক কৰা নাযায়: %s %s সমষ্টি বৰ্তমানে নাই । সমষ্টি সৃষ্টি কৰোঁতে ব্যৰ্থ: %s %jd GIDসহ সমষ্টিৰ কোনো নাম উল্লিখিত নহয় । ঘৰৰ ফোননিষ্ক্ৰিয়: %ld PAM ৰ অভ্যন্তৰীণ সমস্যা `%s'. অভ্যন্তৰীণ সমস্যা । অবৈধ ID %s %s ক্ষেত্ৰত অবিকল্পিত মান বৈধ নহয়: %sসমষ্টিৰ অবৈধ ID %s অবৈধ ব্যৱহাৰকৰোঁতাৰ ID %s Kerberos Admin PrincipalAdmin Principal ৰ বাবে Kerberos গুপ্তশব্দKerberos RealmLDAP Bind DNLDAP Bind গুপ্তশব্দLDAP SASL ৰ অনুমোদন ব্যৱহাৰকৰোঁতাLDAP SASL ব্যৱহাৰকৰোঁতাLDAP Search Base DNLDAP সেৱকৰ নামসৰ্বশেষ পৰিবৰ্তন: %s সৰ্বোচ্চ: %ld সৰ্বনিম্ন: %ld কেতিয়াও নহয়নতুন শ্বেলনতুন গুপ্তশব্দনতুন গুপ্তশব্দ (দৃঢ় কৰক)সমষ্টিৰ নাম উল্লেখ কৰা নহয়, %d gid ৰ বাবে কোনো নাম লিখা নহয় । সমষ্টিৰ নাম উল্লেখ কৰা নহয়, %s ব্যৱহাৰ কৰা হৈছে । কোনো সমষ্টিৰ নাম নিৰ্ধাৰণ কৰা নহয় । %jd GIDসহ কোনো সমষ্টি বৰ্তমানে নাই, আঁতৰুৱা সম্ভৱ নহয় । %s ৰ কোনো নতুন ঘৰৰ পঞ্জিকা নাই । %s ৰ ক্ষেত্ৰত পুৰনি ঘৰৰ পঞ্জিকা নাই । কোনো ব্যৱহাৰকৰোঁতাৰ নাম নিৰ্দিষ্ট নহয়, %d uid ৰ কোনো নাম উল্লিখিত নহয় । ব্যৱহাৰকৰোঁতাৰ নাম উল্লেখ কৰা নহয়, %s ব্যৱহাৰ কৰা হৈছে । কোনো ব্যৱহাৰকৰোঁতাৰ নাম উল্লেখ কৰা নহয় । কাৰ্য্যালয়কাৰ্য্যালয়ৰ ফোনগুপ্তশব্দৰ মেয়াদপূৰ্তী: %s গুপ্তশব্দ নিষ্ক্ৰিয়: %s গুপ্তশব্দ পৰিবৰ্তন প্ৰক্ৰিয়া বাতিল কৰা হৈছে । গুপ্তশব্দ পৰিবৰ্তিত হৈছে । গুপ্তশব্দ দুটা নিমিলে, পুনঃ চেষ্টা কৰক । প্ৰম্পটসমূহ বিফল হ'ল । প্ৰম্পটসমূহ সফল হ'ল । UID 0 ব্যৱহাৰ কৰি হিচাপ সৃষ্টি কৰা ন'হ'ব । অবিকল্পিত ৰূপে বিপদজনক ঘৰৰ পঞ্জিকা `%s' ব্যৱহাৰ কৰিবলৈ নমনা হৈছেঅবিকল্পিত ৰূপে %s ৰ কাৰণে বিপদজনক ঘৰৰ পঞ্জিকা `%s' ব্যৱহাৰ কৰিবলৈ নমনা হৈছে %s সমষ্টিৰ সন্ধান কৰা হৈছে । %jd ID ৰ সমষ্টিৰ সন্ধান কৰা হৈছে । %s ব্যৱহাৰকৰোঁতাক সন্ধান কৰা হৈছে । %jd ID ৰ ব্যৱহাৰকৰোঁতাৰ সন্ধান কৰা হৈছে । শ্বেল পৰিবৰ্তিত হৈছে । শ্বেল পৰিবৰ্তিত নহয়: %s উপাধিঅজ্ঞাত ব্যৱহাৰকৰোঁতা অনুমোদিত হৈছে । ব্যৱহাৰকৰোঁতাৰ প্ৰাসঙ্গিক বিৱৰণ অজ্ঞাতব্যৱহাৰকৰোঁতা %s'ৰ হিচাপ আঁতৰুৱা সম্ভৱ নহয়: %s । %s ব্যৱহাৰকৰোঁতাক লক কৰা সম্ভৱ নহয়: %s । %s ব্যৱহাৰকৰোঁতাৰ তথ্য পৰিবৰ্তন কৰা সম্ভৱ নহয়: %s । %s ব্যৱহাৰকৰোঁতাক আন-লক কৰা সম্ভৱ নহয়: %s । %s ব্যৱহাৰকৰোঁতা বৰ্তমানে নাই । ব্যৱহাৰকৰোঁতাৰ অমিল । সতৰ্কবাৰ্তা: %ld সকিয়নি: %jd ID থকা সমষ্টি বৰ্তমানে নাই । [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' ৰ গুপুত কৰা গুপ্তশব্দত অনুমতি নাইঅনুমোদন কৰা নহয়বেক-আপ নথিপত্ৰ `%s' বৰ্তমানে উপস্থিত আছে আৰু এই কোনো সাধাৰণ নথিপত্ৰ নহয়বেক-আপ নথিপত্ৰৰ মাপত অমিলবেয়া ব্যৱহাৰকৰোঁতা/সমষ্টিৰ idবেয়া ব্যৱহাৰকৰোঁতা/সমষ্টিৰ নামবিন্যাস নথিপত্ৰ `%s' অত্যাধিক ডাঙৰLDAP সেৱকে bind কৰা সম্ভৱ নহয়LDAP সেৱকে bind কৰা সম্ভৱ নহয়, `%s' ৰূপে প্ৰথম প্ৰচেষ্টা কৰা হৈছে: %sLDAP সেৱকৰ সৈতে TLS মীমাংসা কৰা সম্ভৱ নহয়বিন্যাস নথিপত্ৰ `%s' খোলা নাযায়: %sবিন্যাস নথিপত্ৰ `%s' পঢ়া নাযায়: %sLDAP প্ৰোটোকল %d সংস্কৰণেৰ সৈতে স্থাপন কৰা নাযায়বিন্যাস নথিপত্ৰ `%s' stat কৰা নাযায়: %s`%s' ৰ বাবে সুৰক্ষাৰ পৰিবেশ নিৰ্ধাৰণ কৰিব নোৱাৰি: %sঅবিকল্পিত সুৰক্ষাৰ পৰিবেশ পোৱা নাযায়: %s`%s' ৰ বাবে প্ৰাসঙ্গিক নিৰাপত্তাৰ বিৱৰণ প্ৰাপ্ত কৰা নাযায়: %s`%s' খোলা সম্ভৱ নহয়: %s`%s'ৰ পৰা পঢ়া সম্ভৱ নহয়: %sঅবিকল্পিত প্ৰাসঙ্গিক নিৰাপত্তাৰ বিৱৰণ`%s' হিচাপে নিৰ্ধাৰণ কৰা নাযায়: %s`%s' stat কৰা নাযায়: %s`%s'লৈ লিখা নাযায়: %sনথিপত্ৰত তথ্য পোৱা নাযায়নিবেশত কোনো %s বৈশিষ্ট্য নাইপদাৰ্থত কোনো %s বা %s বৈশিষ্ট্য নাইপদাৰ্থৰ অব্জেক্টত %s বৈশিষ্ট্য নাইপদাৰ্থৰ আকৃতিত কোনো %s বা %s বৈশিষ্ট্য নাইকোনো %s বা %s বৈশিষ্ট্য নোহৱা পদাৰ্থ সৃষ্টি কৰা হৈছেনথিপত্ৰতত নিবেশ বৰ্তমানে উপস্থিত আছেযুজিয় নাম থকা প্ৰবিষ্টি ইতিমধ্যে নথিপত্ৰত উপস্থিত আছে`%s' সেৱাৰ বাবে kdam5 সেৱকৰ সৈতে সংযোগ কৰোঁতে `%s' realm ত সমস্যা হৈছে: %s`%s' সৃষ্টি কৰোঁতে সমস্যা: %sLDAP পঞ্জিকা নিবেশ সৃষ্টি কৰোঁতে সমস্যা: %sব্যৱহাৰকৰোঁতাৰ বাবে ব্যক্তিগত পঞ্জিকা সৃষ্টি কৰোঁতে সমস্যাগুপ্তশব্দ এনক্ৰিপ্ট কৰোঁতে সমস্যাCyrus SASL আৰম্ভ কৰোঁতে সমস্যা: %skerberos লাইব্ৰেৰি আৰম্ভ কৰোঁতে সমস্যাLdap লাইব্ৰেৰি আৰম্ভ কৰোঁতে সমস্যাঅংশ লোড কৰোঁতে সমস্যানথিপত্ৰ লক কৰোঁতে সমস্যানথিপত্ৰ লক কৰোঁতে সমস্যা: %sটাৰ্মিনেলৰ বৈশিষ্ট্য পৰিবৰ্তন কৰোঁতে সমস্যাLDAP পঞ্জিকা নিবেশ পৰিবৰ্তন কৰোঁতে সমস্যা: %sব্যৱহাৰকৰোঁতাৰ ব্যক্তিগত পঞ্জিকা গমন কৰোঁতে ভুলনথিপত্ৰ খোলোঁতে সমস্যা`%s' ব্যৱহাৰকৰোঁতাৰ নাম kerberos ৰ বাবে বিশ্লেষণ কৰোঁতে সমস্যানথিপত্ৰ পঢ়োঁতে সমস্যাটাৰ্মিনেলৰ পৰা পঢ়োঁতে সমস্যা`%s' ৰ বাবে kerberosৰ পৰা তথ্য পঢ়োঁতে সমস্যাটাৰ্মিনেলৰ বৈশিষ্ট্য পঢ়োঁতে সমস্যাLDAP পঞ্জিকা নিবেশ আঁতৰাওঁতে সমস্যা: %sব্যৱহাৰকৰোঁতাৰ ব্যক্তিগত পঞ্জিকা আঁতৰাওঁতে সমস্যাLDAP পঞ্জিকা নিবেশৰ নাম পৰিবৰ্তন কৰোঁতে সমস্যা: %sঅংশৰ চিহ্ন মীমাংসা কৰোঁতে সমস্যা`%s' ৰ বাবে গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা%s ৰ বাবে LDAP পঞ্জিকাত গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা: %sটাৰ্মিনেলৰ বৈশিষ্ট্য নিৰ্ধাৰণ কৰোঁতে সমস্যানথিপত্ৰ stat কৰোঁতে সমস্যানথিপত্ৰত লিখোঁতে সমস্যাসাধাৰণ সমস্যা%jd সমষ্টিৰ নাম উল্লিখিত নাই%s নামক সমষ্টিৰ ক্ষেত্ৰত GID ধাৰ্য কৰা নহয়সমষ্টিৰ নাম আৰু GID ধাৰ্য কৰা নহয়অভ্যন্তৰীণ প্ৰাৰম্ভিক সমস্যাঅবৈধ IDঅবৈধ বৈশিষ্টৰ মানঅবৈধ মডুল সংযুক্তকৰণঅবৈধ সংখ্যালাইব্ৰেৰি/অংশৰ সংস্কৰণত অমিল`%s' অংশৰ দ্বাৰা `%s' ৰ ব্যাখ্যা কৰা নাযায়বিন্যাসৰ দ্বাৰা অংশ নিষ্ক্ৰিয় হৈ গৈছে`%s' ৰ অংশ সংস্কৰণত অমিলনামত নিয়ন্ত্ৰক আখৰ লিখা হৈছেনামত অবৈধ আখৰ `%c' লিখা হৈছেনামত non-ASCII আখৰ লিখা হৈছেনামত শূণ্যস্থান আছেনাম নিৰ্ধাৰণ কৰা নহয়উল্লিখিত নাম অত্যাধিক দীঘল (%zu > %d)নাম অত্যাধিক সৰুনামৰ আৰম্ভণিত হাইফেন চিহ্ন (-) উপস্থিত আছেকোনো `%s' বৈশিষ্ট্য পোৱা নাযায়%s প্ৰাৰম্ভিক কাৰ্য `%s'-ত নাইকোনো শ্বে'ডো নথিপত্ৰ নাই -- নিষ্ক্ৰিয় কৰা হৈছেLDAP পঞ্জিকাত এই ধৰণৰ কোনো বস্তু নাইঅপৰ্যাপ্ত অধিকাৰচুপাৰ-ইউজাৰৰ অধিকাৰসহ সঞ্চালিত হোৱা নাইঅব্জেক্টত কোনো %s বৈশিষ্ট্য নাইঅব্জেক্টত %s বৈশিষ্ট্য নাইসফল`%s' আৰু `%s' মডুলসমূহ সংযুক্ত কৰিব নোৱাৰিঅজ্ঞাত সমস্যাআন-লক কৰা হ'লে গুপ্তশব্দৰ ক্ষেত্ৰ ৰিক্ত হৈ যাবেঅসমৰ্থিত গুপ্তশব্দ এনক্ৰিপছনৰ আঁচনি%jd ব্যৱহাৰকৰোঁতাৰ নাম উল্লিখিত নাই%s নামক ব্যৱহাৰকৰোঁতাৰ ক্ষেত্ৰত UID ধাৰ্য কৰা নহয়ব্যৱহাৰকৰোঁতাৰ নাম আৰু UID ধাৰ্য কৰা নহয়ব্যৱহাৰকৰোঁতাৰ অব্জেক্ট কোনো `%s' বৈশিষ্ট্য নাইব্যৱহাৰকৰোঁতাৰ অব্জেক্ট `%s' বিনা নিৰ্মিত হৈছেব্যৱহাৰকৰোঁতা/সমষ্টিৰ id বৰ্তমানে ব্যৱহৃত হৈছেব্যৱহাৰকৰোঁতা/সমষ্টিৰ নাম বৰ্তমানে ব্যৱহৃত হৈছেlibuser-0.60~dfsg/po/ru.gmo0000644000175000017500000010420212226342604015642 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<%>$?[C?3?@??@8T@=@5@2A`4A:A=A.BD=BLBFBCOCMmCC!C>C<.D&kDuD4EH=EPELEB$FZgF7F0F-+G!YG2{G'G6G" H@0HHqHPHI IUUI+I0ISJH\JUJ.JM*K7xKK7KKWLL+M<1M=nMHM>M?4NJtN+N/N3OOOoO%O,O#O-PP/P"P.PP,PQ 0Q=Q?PQ"QQQ*Q R$R>RMSRR RRRR0RJ'SFrS)SLSC0TEtTVTRU5dUU!UU9U%V2.VaVJV0V,VE(WnWW X,X/X8X;$Y#`Y+YYPYHZGYZSZIZU?[7[2["\\#\\0\"\.\L]f]j]T]9D^=~^:^0^.(_@W_D_l_HJ`N`R`V5ajacak[b_b,'c5TccB d1Md.d<d.dVeqeHfM^f7fWfAv6v'w>,w<kwDw5w>#xObx=x<x1-y&_y"y/y$y+y2*z&]z%z;z.z;{-Q{U{{.|0|%}]}= ~^J~d~v1s%+GQH,F?VIg\HJIV:<I΃Pi'|4Gل@!#b8)UP?7/Ȇ-C&IjEAE<0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Russian (http://www.transifex.com/projects/p/fedora/language/ru/) Language: ru MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); %s не имеет уровня gid. %s не существует. %s не авторизован для изменения finger информации о %s Значение %s недопустимо `%s' `:'Учетная запись действительна до: %s Ошибка создания учетной записи: %s. Учетная запись заблокирована. Учетная запись не заблокирована. Ошибка аутентификации для %s. -L и -U указаны одновременно. Не могу установить контекст по умолчанию для /etc/passwd Изменение информации finger для %s. Изменение пароля пользователя %s. Изменение оболочки для %s Копирование структуры пользователя: ошибка Cyrus SASL при создании пользователя: %sОшибка SASL при удалении пользователя: %sДНИИмена стандартных атрибутов пользователя: Стандартные классы объекта пользователя: Адрес E-MailЗапись не найдена Ошибка при изменении режима «%s»: %sОшибка при смене владельца «%s»: %sОшибка создания %s: %s. Ошибка создания учётной записи для «%s»: неверный формат строки. Ошибка создания группы `%s': %s Ошибка создания группы для «%s» с GID %jd: %s Ошибка создания домашнего каталога для %s: %s Ошибка создания почтовой очереди для %s: %s Ошибка создания почтовой очереди: %s Ошибка создания учетной записи пользователя %s: %s Ошибка при инициализации %s: %s. Ошибка инициализации %s: %s. Ошибка инициализации PAM. Ошибка поиска %s: %s Ошибка перемещения %s в %s: %s. Ошибка открытия `%s': %s Ошибка разбора аргументов: %s. Ошибка чтения `%s': %sОшибка чтения дескриптора файла %d. Ошибка при удалении почтовой очереди: %sОшибка установки начального пароля для %s: %s Ошибка установки пароля для группы %s: %s. Ошибка установки пароля для пользователя %s: %s. Ошибка при записи «%s»: %sОшибка сброса привилегий. Ошибка изменения информации о сроках для %s: %s Ошибка установки пароля для группы %s: %s Ошибка установки пароля для пользователя %s: %s. Информация finger изменена. Информация finger не изменена: ошибка ввода. Информация finger не изменена: %s. Полное имядополнительная информация GECOSвспомогательная информация для нового пользователя (номер телефона, адрес, полное имя и т.д.)Получение стандартных атрибутов пользователя: ИмяГруппа %jd не существует Группа %s не может быть удалена: %s Группа %s не может быть удалена: %s. Группа %s не может быть заблокирована: %s Группа %s не может быть изменена: %s Группа %s не может быть изменена: %s. Группа %s не может быть разблокирована: %s Группа %s не существует. Ошибка создания группы: %s Группа c GID %jd не имела имени. Домашний телефонНеактивных: %ld Неактивных: Никогда Внутренняя ошибка PAM `%s'. Внутренняя ошибка. Неверен идентификатор %s Неверное значение по умолчанию для поля %s: %sНеверен ID группы %s Неверен ID пользователя %s Kerberos Admin PrincipalПароль Kerberos для Admin PrincipalОбласть KerberosLDAP Bind DNLDAP Bind PasswordАвторизованный пользователь LDAP SASLПользователь LDAP SASLLDAP Search Base DNИмя сервера LDAPПоследнее изменение: %s Максимум: %ld Максимум: нет Минимум: %ld Должен сменить пароль при следующем входеИМЯЧИСЛОНикогдаНовая оболочкаНовый парольНовый пароль (подтвердите)Не указано имя группы, нет имени для gid %d. Не указано имя группы, используется %s. Не указано имя группы. Не существует группы с GID %jd, не удаляется. Нет нового домашнего каталога для %s. Нет старого домашнего каталога для %s. Имя пользователя не указано, нет имени для uid %d. Имя пользователя не указано, используется %s. Имя пользователя не указано. ОфисСлужебный телефонПУТЬДействие пароля завершается: %s Пароль не активен: %s Изменение пароля отменено. Пароль изменен. Пароли не совпадают, попробуйте еще раз. Запрос выполнен неудачно. Запрос выполнен удачно. Отказ в создании учетной записи с UID 0. Отказ использования небезопасного домашнего каталога «%s» по умолчаниюОтказ использования небезопасного домашнего каталога «%s» для %s по умолчанию СТРОКАПоиск группы с именем %s. Поиск группы с номером %jd. Поиск пользователя с именем %s. Поиск пользователя с номером %jd. Оболочка изменена. Оболочка не изменена: %s ФамилияАутентификация неизвестного пользователя. Неизвестный пользовательский контекстПользователь %s не может быть удален: %s. Пользователь %s не может быть заблокирован: %s. Пользователь %s не может быть изменен: %s. Пользователь %s не может быть разблокирован: %s. Пользователь %s не существует. Пользователь не совпадает. Предупреждение: %ld Предупреждение: Группа с номером %jd не существует. [ПАРАМЕТР...][ПАРАМЕТР...] [пользователь][ПАРАМЕТР...] группа[ПАРАМЕТР...] пользовательНе допускается использование `:' в пароляхдоступ запрещенрезервный файл `%s' существует и не является обычным файломнесоответствие размера файла резервной копииневерный ID пользователя/группыневерное имя пользователя/группыизменить группу, задав названиеизменить имя пользователяобычное имя пользователяфайл конфигурации `%s' слишком великневозможно подключиться к серверу LDAPневозможно подключиться к серверу LDAP, первая попытка - `%s': %sневозможно согласовать TLS с сервером LDAPневозможно открыть файл конфигурации `%s': %sневозможно прочитать файл конфигурации `%s': %sневозможно установить протокол LDAP для версии %dневозможно получить информацию о файле конфигурации `%s': %sневозможно определить контекст безопасности для `%s': %sневозможно получить контекст безопасности по умолчанию: %sневозможно получить контекст безопасности для `%s': %sневозможно открыть `%s': %sневозможно прочитать из `%s': %sневозможно задать значение контекста безопасности по умолчанию `%s': %sневозможно получить сведения о `%s': %sневозможно записать в `%s': %sсоздать системную группусоздать системного пользователяданные не найдены в файледата последнего изменения пароля в днях с 1.01.1970количество дней между завершением срока действия и показом предупреждения пользователюкаталог файлов для нового пользователяне создавать группу с именем пользователяне создавать домашний каталогне создавать домашний каталог для пользователяне отправлять почту в каталог /var/spoolне удалять собственные группы пользователей, если они имеютсяобъект не имеет атрибута %sобъект не имеет атрибутов %s или %sобъект не имеет атрибута %sструктура не имеет атрибутов %s или %sобъект был создан без атрибутов %s или %sзапись уже существует в файлезапись с конфликтующим именем уже есть в файлеошибка подключения к серверу kadm5 службы `%s' в области `%s': %sошибка создания `%s': %sошибка создания записи каталога LDAP: %sошибка создания домашнего каталога для пользователяошибка при шифровании пароляошибка инициализации Cyrus SASL: %sошибка инициализации библиотеки kerberos ошибка инициализации библиотеки ldapошибка загрузки модуляошибка блокировки файлаошибка блокировки файла: %sошибка изменения атрибутов терминалаошибка изменения записи каталога LDAP: %sошибка перемещения домашнего каталога для пользователяошибка открытия файлаошибка обработки имени пользователя `%s' для kerberosошибка чтения файлаошибка чтения с терминалаошибка чтения информации для `%s' из kerberosошибка чтения атрибутов терминалаошибка удаления записи каталога LDAP: %sошибка удаления домашнего каталога для пользователяошибка переименования записи каталога LDAP: %sошибка определения символа в модулеошибка установки пароля для `%s'ошибка установки пароля в каталоге LDAP для %s: %sошибка установки атрибутов терминалаошибка получения параметров файлаошибка записи в файлфайл с записанной информацией о пользователеобщая ошибкаgid для новой группыимя, задающееся для нового пользователягруппа %jd не имеет именигруппа %s не имеет GIDгруппа %s не найденагруппа для нового пользователягруппа не имеет имени и кода UIDдомашний каталогдомашний каталог для нового пользователядомашний номер телефона пользователявнутренняя ошибка инициализацииневерный идентификаторневерное значение аттрибутаневерный состав модуляневерный номернесоответствие версии модуля и библиотекисписок параметров, которые устаревают, для пользователясписок членов по имени группы, а не членство в группе по имени пользователясписок администраторов для добавлениясписок администраторов для удалениясписок членов группы для добавлениясписок членов группы для удалениязаблокировать учётную записьзаблокировать группумаксимум дней между сменой пароляминимум дней между сменой пароляв модуле `%s' не определено значение `%s'модуль запрещен в настройкахнесоответствие версии модуля в `%s'переместить содержимое домашнего каталогаимя содержит управляющие символыимя содержит неверный символ «%c»имя содержит не-ASCII символыимя содержит пробелыимя не установленоимя слишком длинное (%zu > %d)имя слишком короткоимя начинается с дефисановый зашифрованный парольновый простой парольне найден атрибут `%s'нет функции инициализации %s в `%s'нет файла shadow -- запрещенонет такого объекта в каталоге LDAPнедостаточно привилегийвыполняется без привилегий суперпользователяколичество дней с даты окончания срока действия пароля, которые должны пройти для того, чтобы учетная запись считалась неактивнойобъект не имел атрибута %sобъект не имеет атрибута %sсписок членов только по имени, без личного или группового идентификаторовдата окончания срока действия пароля в днях с 1.01.1970открытый пароль для пользователяне зашифрованный пароль для использования в группепредварительно зашифрованный пароль для пользователяпредварительно зашифрованный пароль для использования в группезапрашивать по всем даннымпрочесть новый шифрованный пароль, полученный от дешифровщикаввести новый пароль удалить домашний каталог пользователяномер кабинета для нового пользователяустановить GID для группыназначить идентификатор пользователяустановить общее имя пользователяустановить полученное имя пользователязадать пароль для группы вместо пароля для пользователяустановить номер домашнего телефона пользователяназначить пользователю основную группу установить номер кабинета пользователяназначить командную оболочку для пользователяустановить фамилию пользователяустановить номер телефона пользователякомандная оболочка для нового пользователявыполненофамилия пользователяномер телефона пользователямодули `%s' и `%s' не могут быть объединеныидентификатор нового пользователянеизвестная ошибкаразблокировать учётную записьразблокировать группупри разблокировании поле пароля будет очищеносхема шифрования паролей не поддерживаетсяпользователь %jd не имеет именипользователь %s не имеет UIDпользователь %s не найденпользователь не имеет имени и кода UIDобъект пользователя не имеет атрибута %sобъект пользователя был создан без `%s'ID пользователя/группы используетсяимя пользователя/группы используетсяlibuser-0.60~dfsg/po/as.po0000644000175000017500000013523012226342567015470 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Amitakhya Phukan , 2006 # Amitakhya Phukan , 2008, 2009 # Amitakhya Phukan , 2008 # Miloslav Trmač , 2011 # ngoswami , 2011 # ngoswami , 2012 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Assamese (http://www.transifex.com/projects/p/fedora/language/" "as/)\n" "Language: as\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "অধিকাৰ হ্ৰাসৰ প্ৰচেষ্টা ব্যৰ্থ ।\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "অভ্যন্তৰীণ সমস্যা ।\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s ৰ finger সংক্ৰান্ত তথ্য পৰিবৰ্তন কৰাৰ অধিকাৰ %s ৰ নাই ।\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "ব্যৱহাৰকৰোঁতাৰ প্ৰাসঙ্গিক বিৱৰণ অজ্ঞাত" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd ৰ অবিকল্পিত প্ৰসঙ্গ নিৰ্ধাৰণ কৰা সম্ভৱ নহয়\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM আৰম্ভ কৰোঁতে সমস্যা ।\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s ৰ পৰিচয়প্ৰমাণ প্ৰক্ৰিয়া ব্যৰ্থ হৈছে ।\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "PAM ৰ অভ্যন্তৰীণ সমস্যা `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "অজ্ঞাত ব্যৱহাৰকৰোঁতা অনুমোদিত হৈছে ।\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "ব্যৱহাৰকৰোঁতাৰ অমিল ।\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] user" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "তৰ্ক বিশ্লেষণ কৰোঁতে সমস্যা: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "কোনো ব্যৱহাৰকৰোঁতাৰ নাম উল্লেখ কৰা নহয় ।\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s আৰম্ভ কৰোঁতে সমস্যা: %s ।\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s ব্যৱহাৰকৰোঁতা বৰ্তমানে নাই ।\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "হিচাপ লক কৰা আছে ।\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "হিচাপ লক কৰা নাই ।\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "সৰ্বনিম্ন:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "সৰ্বোচ্চ:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "সতৰ্কবাৰ্তা:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "নিষ্ক্ৰিয়:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "কেতিয়াও নহয়" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "সৰ্বশেষ পৰিবৰ্তন:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "গুপ্তশব্দৰ মেয়াদপূৰ্তী:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "গুপ্তশব্দ নিষ্ক্ৰিয়:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "হিচাপৰ মেয়াদপূৰ্তী:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s সংক্ৰান্ত পুৰনি তথ্য পৰিবৰ্তনৰ প্ৰচেষ্টা ব্যৰ্থ: %s ।\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "কোনো ব্যৱহাৰকৰোঁতাৰ নাম নিৰ্দিষ্ট নহয়, %d uid ৰ কোনো নাম উল্লিখিত নহয় ।\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s সংক্ৰান্ত finger তথ্য পৰিবৰ্তন কৰা হৈছে ।\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "সম্পূৰ্ণ নাম" #: apps/lchfn.c:146 msgid "Surname" msgstr "উপাধি" #: apps/lchfn.c:157 msgid "Given Name" msgstr "দিয়া নাম" #: apps/lchfn.c:167 msgid "Office" msgstr "কাৰ্য্যালয়" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "কাৰ্য্যালয়ৰ ফোন" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "ঘৰৰ ফোন" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ঈ-মেইল ঠিকনা" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger সংক্ৰান্ত তথ্য পৰিবৰ্তন কৰা নাযায়: নিবেশত ত্ৰুটি ।\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger সংক্ৰান্ত তথ্য পৰিবৰ্তন কৰা হৈছে ।\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger সংক্ৰান্ত তথ্য পৰিবৰ্তন কৰা নহয়: %s ।\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s ৰ শ্বেল পৰিবৰ্তন কৰা হৈছে ।\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "নতুন শ্বেল" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "শ্বেল পৰিবৰ্তিত নহয়: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "শ্বেল পৰিবৰ্তিত হৈছে ।\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] group" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "কোনো সমষ্টিৰ নাম নিৰ্ধাৰণ কৰা নহয় ।\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "সমষ্টিৰ অবৈধ ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "সমষ্টি সৃষ্টি কৰোঁতে ব্যৰ্থ: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "%s সমষ্টি বৰ্তমানে নাই ।\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "%s সমষ্টি আঁতৰুৱা সম্ভৱ নহয়: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L আৰু -U দুয়োটাই নিৰ্দিষ্ট কৰা হৈছে ।\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s সমষ্টিৰ গুপ্তশব্দ সৃষ্টি কৰোঁতে ব্যৰ্থ: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s সমষ্টি লক কৰা নাযায়: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s সমষ্টি আন-লক কৰা নাযায়: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s সমষ্টি পৰিবৰ্তন কৰা নাযায়: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s অনুসন্ধানত সমস্যা: %s ।\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "সমষ্টিৰ নাম উল্লেখ কৰা নহয়, %s ব্যৱহাৰ কৰা হৈছে ।\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "সমষ্টিৰ নাম উল্লেখ কৰা নহয়, %d gid ৰ বাবে কোনো নাম লিখা নহয় ।\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "ব্যৱহাৰকৰোঁতাৰ নাম উল্লেখ কৰা নহয়, %s ব্যৱহাৰ কৰা হৈছে ।\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s নাই\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' খোলোঁতে সমস্যা: %s ।\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "`%s' ৰ বাবে হিচাপ সৃষ্টি কৰোঁতে সমস্যা: পংক্তিটো সঠিক বিন্যাসেৰে গঠিত নহয় ।\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "অবৈধ ব্যৱহাৰকৰোঁতাৰ ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 ব্যৱহাৰ কৰি হিচাপ সৃষ্টি কৰা ন'হ'ব ।\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' ৰ বাবে, GID %jd ব্যৱহাৰ কৰি সমষ্টি সৃষ্টি কৰোঁতে সমস্যা: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "অবিকল্পিত ৰূপে %s ৰ কাৰণে বিপদজনক ঘৰৰ পঞ্জিকা `%s' ব্যৱহাৰ কৰিবলৈ নমনা হৈছে\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s ৰ বাবে ঘৰৰ পঞ্জিকা সৃষ্টি কৰোঁতে সমস্যা: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s ৰ বাবে প্ৰাৰম্ভিক গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s ৰ বাবে ব্যৱহাৰকৰোঁতাৰ হিচাপ সৃষ্টি কৰোঁতে সমস্যা:%s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s ৰ গুপ্তশব্দ পৰিবৰ্তন কৰা হৈছে ।\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "নতুন গুপ্তশব্দ" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "নতুন গুপ্তশব্দ (দৃঢ় কৰক)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "গুপ্তশব্দ দুটা নিমিলে, পুনঃ চেষ্টা কৰক ।\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "গুপ্তশব্দ পৰিবৰ্তন প্ৰক্ৰিয়া বাতিল কৰা হৈছে ।\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "%d নথিপত্ৰ বিৱৰকৰ পৰা পঢ়োতে ত্ৰুটি।\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s ব্যৱহাৰকৰোঁতাৰ বাবে গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা: %s ।\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s সমষ্টিৰ বাবে গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা: %s ।\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "গুপ্তশব্দ পৰিবৰ্তিত হৈছে ।\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd সমষ্টিটি বৰ্তমানে নাই ।\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "`%s' সমষ্টি সৃষ্টি কৰোঁতে সমস্যা: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "হিচাপ সৃষ্টি কৰোঁতে ব্যৰ্থ: %s ।\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s সৃষ্টি কৰোঁতে সমস্যা: %s ।\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "ব্যৱহাৰকৰোঁতা %s'ৰ হিচাপ আঁতৰুৱা সম্ভৱ নহয়: %s ।\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s ৰ কোনো gid সংখ্যা নাই ।\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "%jd GIDসহ কোনো সমষ্টি বৰ্তমানে নাই, আঁতৰুৱা সম্ভৱ নহয় ।\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "%jd GIDসহ সমষ্টিৰ কোনো নাম উল্লিখিত নহয় ।\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s সমষ্টিটি আঁতৰুৱা সম্ভৱ নহয়: %s ।\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ব্যৱহাৰকৰোঁতাৰ ব্যক্তিগত পঞ্জিকা আঁতৰাওঁতে সমস্যা" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s ব্যৱহাৰকৰোঁতাৰ বাবে গুপ্তশব্দ নিৰ্ধাৰণ কৰা সম্ভৱ নহয়: %s ।\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%s ব্যৱহাৰকৰোঁতাক লক কৰা সম্ভৱ নহয়: %s ।\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%s ব্যৱহাৰকৰোঁতাক আন-লক কৰা সম্ভৱ নহয়: %s ।\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "সকিয়নি: %jd ID থকা সমষ্টি বৰ্তমানে নাই ।\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s ব্যৱহাৰকৰোঁতাৰ তথ্য পৰিবৰ্তন কৰা সম্ভৱ নহয়: %s ।\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%s সমষ্টিৰ তথ্য পৰিবৰ্তন কৰা সম্ভৱ নহয়: %s ।\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s ৰ ক্ষেত্ৰত পুৰনি ঘৰৰ পঞ্জিকা নাই ।\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s ৰ কোনো নতুন ঘৰৰ পঞ্জিকা নাই ।\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s ক %s লৈ নিওঁতে সমস্যা হৈছে: %s ।\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "বিন্যাস নথিপত্ৰ `%s' খোলা নাযায়: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "বিন্যাস নথিপত্ৰ `%s' stat কৰা নাযায়: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "বিন্যাস নথিপত্ৰ `%s' অত্যাধিক ডাঙৰ" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "বিন্যাস নথিপত্ৰ `%s' পঢ়া নাযায়: %s" #: lib/error.c:62 msgid "success" msgstr "সফল" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "বিন্যাসৰ দ্বাৰা অংশ নিষ্ক্ৰিয় হৈ গৈছে" #: lib/error.c:66 msgid "generic error" msgstr "সাধাৰণ সমস্যা" #: lib/error.c:68 msgid "not enough privileges" msgstr "অপৰ্যাপ্ত অধিকাৰ" #: lib/error.c:70 msgid "access denied" msgstr "অনুমোদন কৰা নহয়" #: lib/error.c:72 msgid "bad user/group name" msgstr "বেয়া ব্যৱহাৰকৰোঁতা/সমষ্টিৰ নাম" #: lib/error.c:74 msgid "bad user/group id" msgstr "বেয়া ব্যৱহাৰকৰোঁতা/সমষ্টিৰ id" #: lib/error.c:76 msgid "user/group name in use" msgstr "ব্যৱহাৰকৰোঁতা/সমষ্টিৰ নাম বৰ্তমানে ব্যৱহৃত হৈছে" #: lib/error.c:78 msgid "user/group id in use" msgstr "ব্যৱহাৰকৰোঁতা/সমষ্টিৰ id বৰ্তমানে ব্যৱহৃত হৈছে" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "টাৰ্মিনেলৰ বৈশিষ্ট্য পৰিবৰ্তন কৰোঁতে সমস্যা" #: lib/error.c:82 msgid "error opening file" msgstr "নথিপত্ৰ খোলোঁতে সমস্যা" #: lib/error.c:84 msgid "error locking file" msgstr "নথিপত্ৰ লক কৰোঁতে সমস্যা" #: lib/error.c:86 msgid "error statting file" msgstr "নথিপত্ৰ stat কৰোঁতে সমস্যা" #: lib/error.c:88 msgid "error reading file" msgstr "নথিপত্ৰ পঢ়োঁতে সমস্যা" #: lib/error.c:90 msgid "error writing to file" msgstr "নথিপত্ৰত লিখোঁতে সমস্যা" #: lib/error.c:92 msgid "data not found in file" msgstr "নথিপত্ৰত তথ্য পোৱা নাযায়" #: lib/error.c:94 msgid "internal initialization error" msgstr "অভ্যন্তৰীণ প্ৰাৰম্ভিক সমস্যা" #: lib/error.c:96 msgid "error loading module" msgstr "অংশ লোড কৰোঁতে সমস্যা" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "অংশৰ চিহ্ন মীমাংসা কৰোঁতে সমস্যা" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "লাইব্ৰেৰি/অংশৰ সংস্কৰণত অমিল" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "আন-লক কৰা হ'লে গুপ্তশব্দৰ ক্ষেত্ৰ ৰিক্ত হৈ যাবে" #: lib/error.c:105 msgid "invalid attribute value" msgstr "অবৈধ বৈশিষ্টৰ মান" #: lib/error.c:107 msgid "invalid module combination" msgstr "অবৈধ মডুল সংযুক্তকৰণ" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "অজ্ঞাত সমস্যা" #: lib/misc.c:240 msgid "invalid number" msgstr "অবৈধ সংখ্যা" #: lib/misc.c:254 msgid "invalid ID" msgstr "অবৈধ ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "%s প্ৰাৰম্ভিক কাৰ্য `%s'-ত নাই" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' ৰ অংশ সংস্কৰণত অমিল" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' অংশৰ দ্বাৰা `%s' ৰ ব্যাখ্যা কৰা নাযায়" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "টাৰ্মিনেলৰ বৈশিষ্ট্য পঢ়োঁতে সমস্যা" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "টাৰ্মিনেলৰ বৈশিষ্ট্য নিৰ্ধাৰণ কৰোঁতে সমস্যা" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "টাৰ্মিনেলৰ পৰা পঢ়োঁতে সমস্যা" #: lib/user.c:218 msgid "name is not set" msgstr "নাম নিৰ্ধাৰণ কৰা নহয়" #: lib/user.c:223 msgid "name is too short" msgstr "নাম অত্যাধিক সৰু" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "উল্লিখিত নাম অত্যাধিক দীঘল (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "নামত non-ASCII আখৰ লিখা হৈছে" #: lib/user.c:242 msgid "name contains control characters" msgstr "নামত নিয়ন্ত্ৰক আখৰ লিখা হৈছে" #: lib/user.c:249 msgid "name contains whitespace" msgstr "নামত শূণ্যস্থান আছে" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "নামৰ আৰম্ভণিত হাইফেন চিহ্ন (-) উপস্থিত আছে" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "নামত অবৈধ আখৰ `%c' লিখা হৈছে" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "%s নামক ব্যৱহাৰকৰোঁতাৰ ক্ষেত্ৰত UID ধাৰ্য কৰা নহয়" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "%s নামক সমষ্টিৰ ক্ষেত্ৰত GID ধাৰ্য কৰা নহয়" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "%jd ব্যৱহাৰকৰোঁতাৰ নাম উল্লিখিত নাই" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "%jd সমষ্টিৰ নাম উল্লিখিত নাই" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "ব্যৱহাৰকৰোঁতাৰ নাম আৰু UID ধাৰ্য কৰা নহয়" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "সমষ্টিৰ নাম আৰু GID ধাৰ্য কৰা নহয়" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "অবিকল্পিত ৰূপে বিপদজনক ঘৰৰ পঞ্জিকা `%s' ব্যৱহাৰ কৰিবলৈ নমনা হৈছে" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s ক্ষেত্ৰত অবিকল্পিত মান বৈধ নহয়: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "নথিপত্ৰ লক কৰোঁতে সমস্যা: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "অবিকল্পিত সুৰক্ষাৰ পৰিবেশ পোৱা নাযায়: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' ৰ বাবে প্ৰাসঙ্গিক নিৰাপত্তাৰ বিৱৰণ প্ৰাপ্ত কৰা নাযায়: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "অবিকল্পিত প্ৰাসঙ্গিক নিৰাপত্তাৰ বিৱৰণ`%s' হিচাপে নিৰ্ধাৰণ কৰা নাযায়: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' ৰ বাবে সুৰক্ষাৰ পৰিবেশ নিৰ্ধাৰণ কৰিব নোৱাৰি: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' খোলা সম্ভৱ নহয়: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' stat কৰা নাযায়: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' সৃষ্টি কৰোঁতে সমস্যা: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "বেক-আপ নথিপত্ৰ `%s' বৰ্তমানে উপস্থিত আছে আৰু এই কোনো সাধাৰণ নথিপত্ৰ নহয়" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' ৰ গৰাকীৰ পৰিবৰ্তনত ভুল: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s' ৰ ত্ৰুটি পৰিৱৰ্তন অৱস্থা: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' পঢ়োঁতে ভুল: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' লিখোঁতে সমস্যা: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "বেক-আপ নথিপত্ৰৰ মাপত অমিল" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s মান `%s': `:' ৰ অনুমতি নাই" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s'ৰ পৰা পঢ়া সম্ভৱ নহয়: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "নথিপত্ৰতত নিবেশ বৰ্তমানে উপস্থিত আছে" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s'লৈ লিখা নাযায়: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "পদাৰ্থৰ অব্জেক্টত %s বৈশিষ্ট্য নাই" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "যুজিয় নাম থকা প্ৰবিষ্টি ইতিমধ্যে নথিপত্ৰত উপস্থিত আছে" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' ৰ গুপুত কৰা গুপ্তশব্দত অনুমতি নাই" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "গুপ্তশব্দ এনক্ৰিপ্ট কৰোঁতে সমস্যা" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' আৰু `%s' মডুলসমূহ সংযুক্ত কৰিব নোৱাৰি" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "চুপাৰ-ইউজাৰৰ অধিকাৰসহ সঞ্চালিত হোৱা নাই" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "কোনো শ্বে'ডো নথিপত্ৰ নাই -- নিষ্ক্ৰিয় কৰা হৈছে" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "`%s' সেৱাৰ বাবে kdam5 সেৱকৰ সৈতে সংযোগ কৰোঁতে `%s' realm ত সমস্যা হৈছে: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "kerberos লাইব্ৰেৰি আৰম্ভ কৰোঁতে সমস্যা" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "`%s' ব্যৱহাৰকৰোঁতাৰ নাম kerberos ৰ বাবে বিশ্লেষণ কৰোঁতে সমস্যা" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "পদাৰ্থৰ আকৃতিত কোনো %s বা %s বৈশিষ্ট্য নাই" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "পদাৰ্থত কোনো %s বা %s বৈশিষ্ট্য নাই" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "কোনো %s বা %s বৈশিষ্ট্য নোহৱা পদাৰ্থ সৃষ্টি কৰা হৈছে" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "`%s' ৰ বাবে kerberosৰ পৰা তথ্য পঢ়োঁতে সমস্যা" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "নিবেশত কোনো %s বৈশিষ্ট্য নাই" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' ৰ বাবে গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Admin Principal ৰ বাবে Kerberos গুপ্তশব্দ" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "Ldap লাইব্ৰেৰি আৰম্ভ কৰোঁতে সমস্যা" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP প্ৰোটোকল %d সংস্কৰণেৰ সৈতে স্থাপন কৰা নাযায়" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP সেৱকৰ সৈতে TLS মীমাংসা কৰা সম্ভৱ নহয়" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP সেৱকে bind কৰা সম্ভৱ নহয়" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP সেৱকে bind কৰা সম্ভৱ নহয়, `%s' ৰূপে প্ৰথম প্ৰচেষ্টা কৰা হৈছে: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "ব্যৱহাৰকৰোঁতাৰ অব্জেক্ট কোনো `%s' বৈশিষ্ট্য নাই" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "ব্যৱহাৰকৰোঁতাৰ অব্জেক্ট `%s' বিনা নিৰ্মিত হৈছে" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP পঞ্জিকা নিবেশ সৃষ্টি কৰোঁতে সমস্যা: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP পঞ্জিকা নিবেশ পৰিবৰ্তন কৰোঁতে সমস্যা: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP পঞ্জিকা নিবেশৰ নাম পৰিবৰ্তন কৰোঁতে সমস্যা: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "অব্জেক্টত কোনো %s বৈশিষ্ট্য নাই" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP পঞ্জিকা নিবেশ আঁতৰাওঁতে সমস্যা: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "অব্জেক্টত %s বৈশিষ্ট্য নাই" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "অসমৰ্থিত গুপ্তশব্দ এনক্ৰিপছনৰ আঁচনি" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP পঞ্জিকাত এই ধৰণৰ কোনো বস্তু নাই" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "কোনো `%s' বৈশিষ্ট্য পোৱা নাযায়" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s ৰ বাবে LDAP পঞ্জিকাত গুপ্তশব্দ নিৰ্ধাৰণ কৰোঁতে সমস্যা: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP সেৱকৰ নাম" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind গুপ্তশব্দ" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL ব্যৱহাৰকৰোঁতা" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL ৰ অনুমোদন ব্যৱহাৰকৰোঁতা" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "ব্যৱহাৰকৰোঁতা সৃষ্টি কৰোঁতে Cyrus SASL সমস্যা: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "ব্যৱহাৰকৰোঁতাক আঁতৰুৱাৰ সময়ত Cyrus SASL ভুল: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL আৰম্ভ কৰোঁতে সমস্যা: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ব্যৱহাৰকৰোঁতাৰ বাবে ব্যক্তিগত পঞ্জিকা সৃষ্টি কৰোঁতে সমস্যা" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ব্যৱহাৰকৰোঁতাৰ ব্যক্তিগত পঞ্জিকা আঁতৰাওঁতে সমস্যা" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ব্যৱহাৰকৰোঁতাৰ ব্যক্তিগত পঞ্জিকা গমন কৰোঁতে ভুল" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s আৰম্ভ কৰোঁতে সমস্যা: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "অবৈধ ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "%jd ID ৰ সমষ্টিৰ সন্ধান কৰা হৈছে ।\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s সমষ্টিৰ সন্ধান কৰা হৈছে ।\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "%jd ID ৰ ব্যৱহাৰকৰোঁতাৰ সন্ধান কৰা হৈছে ।\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s ব্যৱহাৰকৰোঁতাক সন্ধান কৰা হৈছে ।\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "নিবেশ পোৱা নাযায় ।\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "প্ৰম্পটসমূহ সফল হ'ল ।\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "প্ৰম্পটসমূহ বিফল হ'ল ।\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "ব্যৱহাৰকৰোঁতাৰ অবিকল্পিত অব্জেক্ট ক্লাছ:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "ব্যৱহাৰকৰোঁতাৰ অবিকল্পিত বৈশিষ্ট্যৰ নাম:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "ব্যৱহাৰকৰোঁতাৰ অবিকল্পিত বৈশিষ্ট্য আহৰণ কৰা হৈছে:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "ব্যৱহাৰকৰোঁতাৰ গঠন নকল কৰা হৈছে:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s ৰ ঘৰৰ পঞ্জিকা উপস্থিত নাছিল ।\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s আঁতৰাওঁতে সমস্যা: %s ।\n" libuser-0.60~dfsg/po/de_CH.po0000644000175000017500000010741212226342567016030 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Fabian Affolter , 2009 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/" "fedora/language/de_CH/)\n" "Language: de_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Privilegien können nicht abgegeben werden.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Interner Fehler.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s ist nicht autorisiert Finger-Einstellungen von %s zu ändern\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Unbekannter Benutzerinhalt" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Kann Standard-Kontext für /etc/passwd nicht setzen\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Fehler beim Initialisieren von PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Authentifizierung fehlgeschlagen: %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Interner PAM-Fehler `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Unbekannter Benutzer authentifiziert.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Benutzer stimmt nicht überein.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] Benutzer" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Fehler beim Parsen von Argumenten: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Es wurde kein Benutzername angegeben.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Fehler beim Initialisieren von %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Benutzer %s existiert nicht.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Benutzerkonto ist gesperrt.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Benutzerkonto ist nicht gesperrt.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maximum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Warnung:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Nicht aktiv:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nie" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Letzte Änderung:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Passwort läuft ab:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Passwort nicht aktiv:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Benutzerkonto läuft ab:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Ablauf-Einstellungen konnten nicht geändert werden für %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Kein Benutzername angegeben, kein Name für uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Finger-Einstellungen für %s werden geändert.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Vollständiger Name" #: apps/lchfn.c:146 msgid "Surname" msgstr "Nachname" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Vorname" #: apps/lchfn.c:167 msgid "Office" msgstr "Büro" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefon (Arbeit)" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefon (Zuhause)" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-Mail-Adresse" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger-Informationen nicht geändert: Eingabefehler.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger-Informationen geändert.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger-Informationen nicht geändert: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Shell für %s ändern.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Neue Shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell nicht geändert: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell geändert.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] Gruppe" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Es wurde kein Gruppenname angegeben.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Ungültige Gruppen-ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Die Erzeugung der Gruppe ist fehlgeschlagen: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Gruppe %s existiert nicht.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Gruppe %s konnte nicht gelöscht werden: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Sowohl -L als auch -U angegeben.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Passwort konnte nicht gesetzt werden für Gruppe %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Gruppe %s konnte nicht gesperrt werden: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Gruppe %s konnte nicht entsperrt werden: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Gruppe %s konnte nicht modifiziert werden: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Fehler beim Nachschlagen von %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Kein Gruppenname angegeben, benutze %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Kein Gruppenname angegeben, kein Name für gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Kein Benutzername angegeben, benutze %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Fehler beim Öffnen von `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Fehler beim Erstellen des Benutzerkontos für `%s': Zeile inkorrekt " "formatiert.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Ungültige Benutzer-ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Erstellen eines Benutzerkontos mit UID 0 verweigert.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Fehler beim Erstellen der Gruppe für `%s' mit GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Fehler beim Erstellen des persönlichen Verzeichnisses für %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Fehler beim Setzen des Initialpassworts für %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Fehler beim Erstellen des Benutzerkontos für %s: %s.\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Passwort für `%s geändert.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Neues Passwort" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Neues Passwort (Bestätigen)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Passwörter stimmen nicht überein. Noch einmal eingeben.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Passwortänderung abgebrochen.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Fehler beim Erstellen des Passworts für Benutzer %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Fehler beim Erstellen des Passworts für Gruppe %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Passwort geändert.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Gruppe %jd existiert nicht\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Fehler beim Erstellen der Gruppe `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Die Erzeugung des Benutzerkontos ist fehlgeschlagen: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Fehler bei der Erzeugung von %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Benutzer %s konnte nicht gelöscht werden: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s hatte keine GID-Nummer.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Gruppe mit GID %jd existiert nicht, entferne sie nicht.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Gruppe mit GID %jd hat keinen Gruppennamen.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Gruppe %s konnte nicht gelöscht werden: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "Fehler beim Entfernen des persönlichen Verzeichnisses für Benutzer" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Passwort konnte für Benutzer %s nicht eingestellt werden: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Benutzer %s konnte nicht gesperrt werden: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Benutzer %s konnte nicht freigegeben werden: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Warnung: Gruppe mit ID %jd existiert nicht.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Benutzer %s konnte nicht geändert werden: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Gruppe %s konnte nicht modifiziert werden: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Kein altes persönliches Verzeichnis für %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Kein neues persönliches Verzeichnis für %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Fehler beim Verschieben von %s zu %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "Konfigurationsdatei `%s' konnte nicht geöffnet werden: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "stat konnte nicht ausgeführt werden für Konfigurationsdatei `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "Konfigurationsdatei `%s' ist zu gross" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "Konfigurationsdatei `%s' konnte nicht gelesen werden: %s" #: lib/error.c:62 msgid "success" msgstr "Erfolg" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "Modul durch die Konfiguration deaktiviert" #: lib/error.c:66 msgid "generic error" msgstr "Allgemeiner Fehler" #: lib/error.c:68 msgid "not enough privileges" msgstr "Keine ausreichenden Berechtigungen" #: lib/error.c:70 msgid "access denied" msgstr "Zugriff verweigert" #: lib/error.c:72 msgid "bad user/group name" msgstr "Ungültiger Benutzer/Gruppenname" #: lib/error.c:74 msgid "bad user/group id" msgstr "Ungültige Benutzer/Gruppen ID" #: lib/error.c:76 msgid "user/group name in use" msgstr "Benutzer/Gruppenname wird bereits verwendet" #: lib/error.c:78 msgid "user/group id in use" msgstr "Benutzer/Gruppen ID wird bereits verwendet" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "Fehler beim Bearbeiten der Terminalattribute" #: lib/error.c:82 msgid "error opening file" msgstr "Fehler beim Öffnen der Datei" #: lib/error.c:84 msgid "error locking file" msgstr "Fehler beim Sperren der Datei" #: lib/error.c:86 msgid "error statting file" msgstr "Fehler beim Ermitteln der Dateiinformationen" #: lib/error.c:88 msgid "error reading file" msgstr "Fehler beim Lesen der Datei" #: lib/error.c:90 msgid "error writing to file" msgstr "Fehler beim Schreiben in die Datei" #: lib/error.c:92 msgid "data not found in file" msgstr "Daten wurden in der Datei nicht gefunden" #: lib/error.c:94 msgid "internal initialization error" msgstr "Interner Fehler bei der Initialisierung" #: lib/error.c:96 msgid "error loading module" msgstr "Fehler beim Laden des Moduls" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "Fehler beim Auflösen des Symbols im Modul" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "Bibliothek/Modulversion stimmt nicht überein" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "Entsperrung würde das Passwortfeld leer machen" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "Unbekannter Fehler" #: lib/misc.c:240 msgid "invalid number" msgstr "Ungültige Nummer" #: lib/misc.c:254 msgid "invalid ID" msgstr "Ungültige ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "keine Initialisierungsfunktion %s in `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "Fehlende Übereinstimmung von Modulversionen in `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "Modul %s definiert `%s' nicht" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "Fehler beim Lesen der Terminalattribute" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "Fehler beim Einstellen der Terminalattribute" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "Fehler beim Lesen vom Terminal" #: lib/user.c:218 msgid "name is not set" msgstr "Name ist nicht gesetzt" #: lib/user.c:223 msgid "name is too short" msgstr "Name ist zu kurz" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "Name ist zu lang (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "Name enthält nicht-ASCII Zeichen" #: lib/user.c:242 msgid "name contains control characters" msgstr "Name enthält Kontrollzeichen" #: lib/user.c:249 msgid "name contains whitespace" msgstr "Name enthält Leerzeichen" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "Name beginnt mit einem Bindestrich" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "Name enthält ungültiges Zeichen `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "Benutzer %s hat keine Benutzernummer (UID)" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "Gruppe %s hat keine Gruppennummer (GID)" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "Benutzer %jd ist namenlos" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "Gruppe %jd ist namenlos" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "Benutzer ist namenlos und hat keine Benutzernummer (UID)" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "Gruppe ist namenlos und hat keine Gruppennummer (GID)" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Ungültiger Wert in Feld %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "Fehler beim Sperren der Datei: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "konnte Standard-Sicherheitskontext nicht setzen: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "konnte Sicherheitskontext `%s' nicht bekommen: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "Sicherheitskontext konnte nicht nach `%s' geschrieben werden: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "konnte Sicherheitskontext `%s' nicht bestimmen: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' konnte nicht geöffnet werden: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "stat `%s' konnte nicht ausgeführt werden: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "Fehler beim Erzeugen von `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "Backup-Datei `%s' ist vorhanden und keine reguläre Datei" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Fehler beim Ändern des Eigentümers von `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Fehler beim Lesen von `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Fehler beim Schreiben von `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "Sicherungsdateigrösse passt nicht" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s Wert`%s': `:' nicht erlaubt" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' konnte nicht gelesen werden: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "Eintrag bereits in der Datei vorhanden" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "nach `%s' konnte nicht geschrieben werden: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "Entitätsobjekt besitzt kein %s Attribut" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' nicht erlaubt in verschlüsselten Passwörtern" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "Fehler beim Verschlüsseln des Passworts" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "Keine Ausführung mit Administrator-Rechten." #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "Keine Shadow-Datei vorhanden -- Deaktiviere." #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "Fehler bei der Verbindung zum kadm5-Server für Dienst `%s' in Realm %s: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "Fehler bei der Initialisierung der Kerberos-Bibliothek" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "Fehler beim Parsen des Benutzernamens `%s' für Kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "Entitätenstruktur besitzt kein Attribut %s oder %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "Entität besitzt kein Attribut %s oder %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "Entität wurde ohne Attribut %s oder %s erstellt" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "Fehler beim Lesen der Informationen für `%s' von Kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "Entität besitzt kein Attribut %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "Fehler beim Einstellen des Passworts für `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos-Bereich" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos-Passwort für Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "Fehler bei der Initialisierung der LDAP-Bibliothek" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP-Protokoll konnte nicht auf Version %d eingestellt werden" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "TLS-Serververbindung konnte nicht ausgehandelt werden" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "Konnte nicht zum LDAP-Server verbinden" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "Konnte nicht zum LDAP-Server verbinden, erster Versuch `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "Benutzerobjekt hatte kein Attribut %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "Benutzerobjekt wurde ohne `%s' erstellt" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "Fehler beim Erstellen eines LDAP-Verzeichniseintrags: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "Fehler bei der Änderung des LDAP-Verzeichniseintrags: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "Fehler beim Umbenennen des LDAP-Verzeichniseintrags: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "Objekt hatte kein Attribut %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "Fehler beim Entfernen des LDAP-Verzeichniseintrags: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "Objekt besitzt kein Attribut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "nicht unterstütztes Passwort-Verschlüsselungsschema" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "Kein entsprechendes Objekt im LDAP-Verzeichnis vorhanden" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "kein `%s' Attribut gefunden" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "Fehler beim Einrichten des Passworts im LDAP-Verzeichnis für %s: %s." #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP-Servername" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Suche Basis-DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind-Passwort" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL-Benutzer" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL-Autorisierungsbenutzer" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL-Fehler beim Erstellen des Benutzers: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL-Fehler beim Entfernen des Benutzers: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Fehler beim Initialisieren von Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "Fehler beim Erstellen des persönlichen Verzeichnisses für Benutzer" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "Fehler beim Entfernen des persönlichen Verzeichnisses für Benutzer" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "Fehler beim Verschieben des persönlichen Verzeichnisses für Benutzer" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Fehler beim Initialisieren von %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Ungültige ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Suche nach Gruppe mit ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Suche nach Gruppe mit Namen %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Suche nach Benutzer mit ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Suche nach Benutzer mit Namen %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Eintrag wurde nicht gefunden.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Prompts erfolgreich.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Prompts fehlgeschlagen.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Standardmässige Benutzerobjekt-Klassen:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Standardmässige Benutzerattribut-Namen:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Suche nach standardmässigen Benutzerattributen:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Benutzerstrukturen kopieren:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s hatte kein persönliches Verzeichnis.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Fehler beim Entfernen von %s: %s.\n" libuser-0.60~dfsg/po/remove-potcdate.sin0000644000175000017500000000066012226342570020326 0ustar tzafrirtzafrir# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } libuser-0.60~dfsg/po/ro.gmo0000644000175000017500000001537012226342604015643 0ustar tzafrirtzafrirPk5(@_*z$ <-j) (0 Y p . ( (  .* $Y ~ " ! # #  : U ` o   %      % 2 -I #w  , "   % 2 H _ z #      + ; IUhz3@!5J#b#7+,H7h@!"$>$c06$/:T.(';.K z !!$#5T hv'   & 1 ;IBd8 97;s$/Ia$   %2L^v);C&,LG .!/D># K$6I7;*=F-9PM2A )O8 +< N10@4J"?E(%:3 5H'B%s is not authorized to change the finger info of %s Account Expires: %s Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. E-Mail AddressError changing owner of `%s': %sError creating account for `%s': line improperly formatted. Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGiven NameGroup %s could not be deleted: %s Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid group ID %s Kerberos Password for Admin PrincipalLDAP Bind PasswordLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] usererror encrypting passworderror setting password for `%s'error setting password in LDAP directory for %s: %sProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Romanian (http://www.transifex.com/projects/p/fedora/language/ro/) Language: ro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1)); %s nu este autorizat să schimbe informaţiile finger pentru %s Contul expiră: %s Contul este blocat. Contul nu este blocat. Autentificarea a eşuat pentru %s. S-a specificat atât L cât şi U. Nu se poate seta contextul implicit pentru /etc/passwd Schimbare informaţii de finger pentru %s. Schimbare parolă pentru %s. Schimbare shell pentru %s. Adresă de poştă electronicăEroare la schimbarea proprietarului pentru „%s”: %sEroare la crearea contului „%s”: linie incorect formatată. Eroare la iniţializarea %s: %s. Eroare la iniţializarea PAM. Eroare la căutarea %s: %s Eroare la deschiderea „%s”: %s. Eroare la analiza argumentelor: %s. Eroare la citirea „%s”: %sEroare la setarea parolei pentru grupul %s: %s. Eroare la setarea parolei pentru utilizatorul %s: %s. Eroare la scrierea „%s”: %sEşec în eliminarea privilegiilor. Modificarea informaţiilor de timp pentru %s a eşuat: %s Setarea parolei pentru grupul %s a eşuat: %s Setarea parolei pentru %s a eşuat: %s. Informaţiile de finger s-au schimbat. Informaţiile finger nu s-au schimbat: eroare de intrare. Informaţiile de finger nu s-au schimbat: %s. Nume completPseudonimGrupul %s nu poate fi şters: %s Grupul %s nu poate fi blocat: %s Grupul %s nu poate fi modificat: %s Grupul %s nu poate fi deblocat: %s Grupul %s nu există. Crearea grupului a eşuat: %s Telefonul de acasăInactiv: %ld Eroare internă PAM „%s”. Eroare internă. ID invalid de grup %s Parolă Kerberos pentru Admin PrincipalParolă LDAP BindUltima schimbare: %s Maxim: %ld Minim: %ld NiciodatăShell nouParolă nouăParolă nouă (confirmare)Nu s-a specificat niciun nume de grup, niciun nume pentru gid %d. Nu s-a specificat niciun nume de grup, se va folosi %s. Niciun nume de grup specificat. Niciun utilizator specificat, niciun nume pentru uid %d. Niciun nume de utilizator specificat, se va folosi %s. Niciun utilizator specificat. BirouTelefonul de la birouParola expiră: %s Parolă inactivă: %s Schimbarea parolei a fost anulată. Parola a fost schimbată. Parolele nu se potrivesc, încercaţi din nou. Shell-ul s-a schimbat. Shell-ul nu s-a schimbat: %s Nume de familieUtilizator autentificat necunoscut. Context necunoscut de utilizatorUtilizatorul %s nu există. Utilizatorul nu se potriveşte. Avertisment: %ld [OPŢIUNE..][OPŢIUNE..] [utilizator][OPŢIUNE ] grup[OPŢIUNE ] utilizatoreroare la criptarea paroleieroare la setarea parolei pentru „%s”eroare la setarea parolei pentru %s în directorul LDAP: %slibuser-0.60~dfsg/po/gu.po0000644000175000017500000013262112226342567015501 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Ankit Patel , 2004, 2005, 2006, 2007, 2008 # Miloslav Trmač , 2011 # sweta , 2008, 2009, 2010 # sweta , 2011 # sweta , 2012 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Gujarati (http://www.transifex.com/projects/p/fedora/language/" "gu/)\n" "Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "ખાસ ફાયદાઓ છોડી મૂકવામાં નિષ્ફળ.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "આંતરિક ભૂલ.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s એ %s ફીંગર જાણકારી બદલવા માટે સત્તાધિકારીત નથી\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "અજ્ઞાત વપરાશકર્તા સંદર્ભ" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd માટે મૂળભૂત સંદર્ભ સુયોજિત કરી શકતા નથી\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM નો પ્રારંભ કરવામાં ભૂલ.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s માટેનું સત્તાધિકરણ નિષ્ફળ.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "આંતરિક PAM ભૂલ `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "અજ્ઞાત વપરાશકર્તા સત્તાધિકારીત થયો.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "વપરાશકર્તા બંધબેસતો નથી.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] વપરાશકર્તા" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "દલીલોનું પદચ્છેદ કરવામાં ભૂલ: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "કોઈ વપરાશકર્તા નામ સ્પષ્ટ કરેલ નથી.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s નો પ્રારંભ કરવામાં ભૂલ: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "વપરાશકર્તા %s અસ્તિત્વમાં નથી.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "ખાતાને તાળું લગાવાયેલ છે.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "ખાતાને તાળું લગાવાયેલ નથી.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "ન્યુનતમ:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "મહત્તમ:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "ચેતવણી:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "અસક્રિય:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "ક્યારેય નહિં" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "છેલ્લો ફેરફાર:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "પાસવર્ડની મર્યાદા પૂરી થાય છે:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "પાસવર્ડ નિષ્ક્રિય છે:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "ખાતાની મર્યાદા પૂરી થાય છે:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s માટેની એજીંગ જાણકારી સુધારવામાં નિષ્ફળ: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "કોઈ વપરાશકર્તા નામ સ્પષ્ટ કરેલ નથી, uid %d માટે કોઈ નામ નથી.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s માટેની ફીંગર જાણકારી બદલી રહ્યા છીએ.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "પૂરું નામ" #: apps/lchfn.c:146 msgid "Surname" msgstr "અટક" #: apps/lchfn.c:157 msgid "Given Name" msgstr "આપેલ નામ" #: apps/lchfn.c:167 msgid "Office" msgstr "ઓફિસ" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "ઓફિસનો ફોન" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "ઘરનો ફોન" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ઈ-મેઈલ સરનામું" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "ફીંગર જાણકારી બદલાયેલ નથી: ઈનપુટ ભૂલ.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "ફીંગર જાણકારી બદલાયેલ છે.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "ફીંગર જાણકારી બદલાયેલ નથી: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s માટે શેલ બદલી રહ્યા છીએ.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "નવો શેલ" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "શેલ બદલાયેલ નથી: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "શેલ બદલાયેલ છે.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] જૂથ" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "કોઈ જૂથ નામ સ્પષ્ટ કરેલ નથી.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "અયોગ્ય જૂથ ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "જૂથ બનાવવામાં નિષ્ફળતા: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "જૂથ %s અસ્તિત્વમાં નથી.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "જૂથ %s કાઢી શકાયું નથી: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "બંને -L અને -U સ્પષ્ટ કરેલ છે.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "જૂથ %s માટે પાસવર્ડ સુયોજિત કરવામાં નિષ્ફળ: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "જૂથ %s ને તાળુ મારી શકાયું નહિં: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "જૂથ %s નું તાળુ ખોલી શકાયું નહિં: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "જૂથ %s સુધારી શકાયું નહિં: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s જોવામાં ભૂલ: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "કોઈ જૂથ નામ સ્પષ્ટ કરેલ નથી, %s વાપરી રહ્યા છીએ.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "કોઈ જૂથ નામ સ્પષ્ટ કરેલ નથી, gid %d માટે કોઈ નામ નથી.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "કોઈ વપરાશકર્તા નામ સ્પષ્ટ કરેલ નથી, %s વાપરી રહ્યા છીએ.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s અસ્તિત્વમાં નથી\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' ખોલવામાં ભૂલ: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "`%s' માટે ખાતુ બનાવવામાં ભૂલ: લીટીનું બંધારણ અયોગ્ય રીતે ઘડાયેલ છે.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "અયોગ્ય વપરાશકર્તા ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID ૦ સાથે ખાતું બનાવવાનું નકારી રહ્યા છીએ.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' માટે GID %jd સાથે જૂથ બનાવવામાં ભૂલ: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "મૂળભૂત દ્દારા %s માટે જોખમકારક ઘર ડિરેક્ટરી `%s' ને વાપરવાની ના પાડી રહ્યા છે\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s માટે ઘર ડિરેક્ટરી બનાવવામાં ભૂલ: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s માટે પ્રારંભિક પાસવર્ડ સુયોજિત કરવામાં ભૂલ: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s માટે ખાતા જાણકારી બનાવવામાં ભૂલ: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s માટે પાસવર્ડ બદલી રહ્યા છીએ.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "નવો પાસવર્ડ" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "નવો પાસવર્ડ (ખાતરી)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "પાસવર્ડો બંધબેસતા નથી, ફરીથી પ્રયત્ન કરો.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "પાસવર્ડ બદલવાનું નકારાઈ ગયું.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "ફાઇલ વર્ણનકર્તા %d માંથી વાંચતી વખતે ભૂલ.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "વપરાશકર્તા %s માટે પાસવર્ડ સુયોજિત કરવામાં ભૂલ: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "જૂથ %s માટે પાસવર્ડ સુયોજિત કરવામાં ભૂલ: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "પાસવર્ડ બદલાઈ ગયેલ છે.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "જૂથ %jd અસ્તિત્વમાં નથી\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "જૂથ `%s' બનાવવામાં ભૂલ: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "ખાતું બનાવવામાં નિષ્ફળ: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s બનાવવામાં ભૂલ: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "વપરાશકર્તા %s કાઢી શકાયો નથી: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s એ gid સંખ્યા આપતું નથી.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd વાળું કોઈ જૂથ અસ્તિત્વમાં નથી, દૂર કરતા નથી.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd વાળા જૂથ પાસે કોઈ કોઈ જૂથ નામ નથી.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "જૂથ %s કાઢી શકાયું નથી: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "વપરાશકર્તા માટે ઘર ડિરેક્ટરી દૂર કરવામાં ભૂલ" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "વપરાશકર્તા %s માટે પાસવર્ડ સુયોજિત કરવામાં નિષ્ફળ: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "વપરાશકર્તા %s ને તાળુ મારી શકાયું નથી: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "વપરાશકર્તા %s ને તાળુ ખોલી શકાયું નહિં: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "ચેતવણી: ID %jd સાથેનું જૂથ અસ્તિત્વમાં નથી.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "વપરાશકર્તા %s સુધારી શકાયો નહિં: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "જૂથ %s સુધારી શકાયું નહિં: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s માટે કોઈ જૂની ઘર ડિરેક્ટરી નથી.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s માટે કોઈ નવી ઘર ડિરેક્ટરી નથી.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s ને %s માં ખસેડતી વખતે ભૂલ: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "રુપરેખાંકન ફાઈલ `%s' ખોલી શક્યા નહિં: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "રુપરેખાંકન ફાઈલ `%s' કહી શક્યા નહિં: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "રુપરેખાંકન ફાઈલ `%s' ખૂબ મોટી છે" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "રુપરેખાંકન ફાઈલ `%s' વાંચી શક્યા નહિં: %s" #: lib/error.c:62 msgid "success" msgstr "સફળતા" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "રુપરેખાંકન દ્વારા મોડ્યુલ નિષ્ક્રિય થઈ ગયેલ છે" #: lib/error.c:66 msgid "generic error" msgstr "સામાન્ય ભૂલ" #: lib/error.c:68 msgid "not enough privileges" msgstr "કોઈ પૂરતા ફાયદાકારક ક્ષેત્રો નથી" #: lib/error.c:70 msgid "access denied" msgstr "પરવાનગી નથી" #: lib/error.c:72 msgid "bad user/group name" msgstr "ખરાબ વપરાશકર્તા/જૂથ નામ" #: lib/error.c:74 msgid "bad user/group id" msgstr "ખરાબ વપરાશકર્તા/જૂથ id" #: lib/error.c:76 msgid "user/group name in use" msgstr "વપરાશકર્તા/જૂથ નામ વપરાશમાં છે" #: lib/error.c:78 msgid "user/group id in use" msgstr "વપરાશકર્તા/જૂથ id વપરાશમાં છે" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "ટર્મિનલની લાક્ષણિકતાઓ સુધારવામાં ભૂલ" #: lib/error.c:82 msgid "error opening file" msgstr "ફાઈલ ખોલવામાં ભૂલ" #: lib/error.c:84 msgid "error locking file" msgstr "ફાઈલને તાળુ મારવામાં ભૂલ" #: lib/error.c:86 msgid "error statting file" msgstr "ફાઈલની સ્થિતિ કહેવામાં ભૂલ" #: lib/error.c:88 msgid "error reading file" msgstr "ફાઈલ વાંચવામાં ભૂલ" #: lib/error.c:90 msgid "error writing to file" msgstr "ફાઈલમાં લખવામાં ભૂલ" #: lib/error.c:92 msgid "data not found in file" msgstr "ફાઈલમાં કોઈ માહિતી મળી નથી" #: lib/error.c:94 msgid "internal initialization error" msgstr "આંતરિક પ્રારંભિક ભૂલ" #: lib/error.c:96 msgid "error loading module" msgstr "મોડ્યુલ લાવવામાં ભૂલ" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "મોડ્યુલમાં સંજ્ઞા ઉકેલવામાં ભૂલ" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "લાઈબ્રેરી/મોડ્યુલની આવૃત્તિ બંધબેસતી નથી" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "તાળું ખોલવાનું પાસવર્ડ ક્ષેત્રને ખાલી બનાવે છે" #: lib/error.c:105 msgid "invalid attribute value" msgstr "અયોગ્ય ગુણધર્મ કિંમત" #: lib/error.c:107 msgid "invalid module combination" msgstr "અયોગ્ય મોડ્યુલ સંયોજન" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "અજ્ઞાત ભૂલ" #: lib/misc.c:240 msgid "invalid number" msgstr "અયોગ્ય નંબર" #: lib/misc.c:254 msgid "invalid ID" msgstr "અયોગ્ય ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "કોઈ પ્રારંભ વિધેય %s નથી `%s' માં" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' માં મોડ્યુલની આવૃત્તિ બંધબેસતી નથી" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "મોડ્યુલ `%s' એ `%s' વ્યાખ્યાયિત કરતું નથી" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "ટર્મિનલની લાક્ષણિકતાઓ વાંચવામાં ભૂલ" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "ટર્મિનલની લાક્ષણિકતાઓ સુયોજિત કરવામાં ભૂલ" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "ટર્મિનલમાંથી વાંચવામાં ભૂલ" #: lib/user.c:218 msgid "name is not set" msgstr "નામ સુયોજિત નથી" #: lib/user.c:223 msgid "name is too short" msgstr "નામ ખૂબ નાનું છે" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "નામ ખૂબ લાંબુ છે (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "નામ બિન-ASCII અક્ષરો સમાવે છે" #: lib/user.c:242 msgid "name contains control characters" msgstr "નામ નિયંત્રક અક્ષરો સમાવે છે" #: lib/user.c:249 msgid "name contains whitespace" msgstr "નામ ખાલી જગ્યાઓ સમાવે છે" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "નામ હાયફન (~) થી શરૂ થાય છે" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "નામ અયોગ્ય અક્ષર `%c' સમાવે છે" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "વપરાશકર્તા %s ને કોઈ UID નથી" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "જૂથ %s ને કોઈ GID નથી" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "વપરાશકર્તા %jd ને કોઈ નામ નથી" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "જૂથ %jd ને કોઈ નામ નથી" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "વપરાશકર્તાને ક્યાં તો નામ કે UID નથી" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "જૂથને નહિં તો નામ કે GID છે" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "મૂળભૂત દ્દારા જોખમકારક ઘર ડિરેક્ટરી `%s' ને વાપરવાની ના પાડી રહ્યા છે" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "ક્ષેત્ર %s ની મૂળભૂત કિંમત અયોગ્ય છે: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ફાઈલને તાળુ લગાવવામાં ભૂલ: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "મૂળભૂત સુરક્ષા સંદર્ભ મેળવી શક્યા નહિં: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' નો સુરક્ષા સંદર્ભ મેળવી શક્યા નહિં: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "`%s' માં મૂળભૂત સુરક્ષા સંદર્ભ સુયોજિત કરી શક્યા નહિં: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' માટેનો સુરક્ષા સંદર્ભ નક્કી કરી શક્યા નહિં: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' ખોલી શક્યા નહિં: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' ની સ્થિતિ કહી શક્યા નહિં: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' બનાવવામાં ભૂલ: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "બેકઅપ ફાઈલ `%s' અસ્તિત્વમાં છે અને એ નિયમિત ફાઈલ નથી" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' નો માલિક બદલવામાં ભૂલ: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s' ની સ્થિતિને બદલતી વખતે ભૂલ: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' વાંચવામાં ભૂલ: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' લખવામાં ભૂલ: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "બેકઅપ ફાઈલ માપ બંધબેસતું નથી" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s કિંમત `%s': `:' પરવાનગી આપેલ નથી" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' માંથી વાંચી શક્યા નહિં: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "ફાઈલમાં પ્રવેશ પહેલાથી જ હાજર છે" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s' માં લખી શક્યા નહિં: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "એન્ટીટી ઓબ્જેક્ટ પાસે કોઈ %s લક્ષણ નથી" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "એકબીજા સાથે અથડાતા નામ સાથે નોંધણી પહેલેથી જ ફાઇલમાં હાજર છે" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' એનક્રિપ્ટ થયેલ પાસવર્ડમાં પરવાનગી આપેલ નથી" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "પાસવર્ડ એનક્રિપ્ટ કરવામાં ભૂલ" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' અને `%s' મોડ્યુલોને ભેગા કરી શકાતા નથી" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "શ્રેષ્ઠ વપરાશકર્તાની ફાયદાકારક સ્થિતિ સાથે નથી ચલાવી રહ્યા" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "કોઈ શેડો ફાઈલ હાજર નથી -- નિષ્ક્રિય કરી રહ્યા છીએ" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "kadm5 સર્વર સાથે `%s' સેવા માટે મનગમતા ક્ષેત્ર `%s' માં જોડાણ કરવામાં ભૂલ: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "કર્બરોઝ લાઈબ્રેરીનો પ્રારંભ કરવામાં ભૂલ" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "કર્બરોઝ માટે વપરાશકર્તા નામ `%s' નું પદચ્છેદ કરવામાં ભૂલ" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "એન્ટીટી સંરચના પાસે કોઈ %s અથવા %s લક્ષણો નથી" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "એન્ટીટી પાસે કોઈ %s અથવા %s લક્ષણો નથી" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "એન્ટીટી કોઈ %s અથવા %s લક્ષણો સાથે બની નથી" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "કર્બરોઝમાંથી `%s' માટે જાણકારી વાંચવામાં ભૂલ" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "એન્ટીટી પાસે કોઈ %s લક્ષણ નથી" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' માટે પાસવર્ડ સુયોજિત કરવામાં ભૂલ" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "કર્બરોઝનું મનગમતું ક્ષેત્ર" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "કર્બરોઝનો સંચાલન નિયમ" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "સંચાલન નિયમ માટે કર્બરોઝ પાસવર્ડ" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap લાઈબ્રેરીનો પ્રારંભ કરવામાં ભૂલ" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP પ્રોટોકોલને આવૃત્તિ %d સાથે સુયોજિત કરી શક્યા નહિં" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "TLS ને LDAP સર્વર સાથે અવગણી શક્યા નહિં" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP સર્વરમાં જોડાણ કરી શક્યા નહિં" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP સર્વરમાં જોડાણ કરી શક્યા નહિં, `%s' ને પ્રથમ વાર લેતાં: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "વપરાશકર્તા ઓબ્જેક્ટ પાસે કોઈ %s લક્ષણ નહતું" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "વપરાશકર્તા ઓબ્જેક્ટ કોઈ `%s' સાથે બન્યું નહતું" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP ડિરેક્ટરી પ્રવેશ બનાવવામાં ભૂલ: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP ડિરેક્ટરી પ્રવેશ સુધારવામાં ભૂલ: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP ડિરેક્ટરી પ્રવેશનું નામ બદલવામાં ભૂલ: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "ઓબ્જેક્ટ પાસે કોઈ %s લક્ષણ નહતું" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP ડિરેક્ટરી પ્રવેશ દૂર કરવામાં ભૂલ: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "ઓબ્જેક્ટ પાસે કોઈ %s લક્ષણ નથી" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "બિનઆધારભૂત પાસવર્ડ એનક્રિપ્શન યોજના" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP ડિરેક્ટરીમાં આવો કોઈ ઓબ્જેક્ટ નથી" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "કોઈ `%s' લક્ષણ મળ્યું નથી" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "LDAP ડિરેક્ટરીમાં %s માટે પાસવર્ડ સુયોજિત કરવામાં ભૂલ: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP સર્વર નામ" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP શોધનો આધાર DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP બાઈન્ડ DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP બાઈન્ડ પાસવર્ડ" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL વપરાશકર્તા" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL સત્તાધિકરણ વપરાશકર્તા" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "વપરાશકર્તા બનાવવામાં Cyrus SASL ભૂલ: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "વપરાશકર્તા દૂર કરવામાં Cyrus SASL ભૂલ: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL નો પ્રારંભ કરવામાં ભૂલ: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "વપરાશકર્તા માટે ઘર ડિરેક્ટરી બનાવવામાં ભૂલ" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "વપરાશકર્તા માટે ઘર ડિરેક્ટરી દૂર કરવામાં ભૂલ" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "વપરાશકર્તા માટે ઘર ડિરેક્ટરી ખસેડવામાં ભૂલ" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s નો પ્રારંભ કરવામાં ભૂલ: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "અયોગ્ય ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID %jd વાળા જૂથ માટે શોધ કરી રહ્યા છીએ.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s નામવાળા જૂથ માટે શોધ કરી રહ્યા છીએ.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID %jd વાળા વપરાશકર્તા માટે શોધ કરી રહ્યા છીએ.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s નામવાળા વપરાશકર્તા માટે શોધ કરી રહ્યા છીએ.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "પ્રવેશ મળ્યો નથી.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "પ્રોમ્પ્ટ કરવામાં સફળતા મળી.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "પ્રોમ્પ્ટ કરવામાં નિષ્ફળ.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "મૂળભૂત વપરાશકર્તા ઓબ્જેક્ટ વર્ગો:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "મૂળભૂત વપરાશકર્તા લક્ષણોના નામો:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "મૂળભૂત વપરાશકર્તા લક્ષણો મેળવી રહ્યા છીએ:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "વપરાશકર્તા સંરચનાની નકલ કરી રહ્યા છીએ:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s પાસે ઘર ડિરેક્ટરી નથી.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s દૂર કરવામાં ભૂલ: %s.\n" libuser-0.60~dfsg/po/en@quot.header0000644000175000017500000000226312226342570017303 0ustar tzafrirtzafrir# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # libuser-0.60~dfsg/po/de.po0000644000175000017500000011760412226342567015462 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Bernd Groh , 2002, 2003 # Claudia Krug , 2001 # Fabian Affolter , 2008, 2009 # Jens , 2009 # Laurin , 2011 # Mario Blättermann , 2011 # Miloslav Trmač , 2011 # Robert Scheck , 2005, 2007 # Roman Spirgi , 2012-2013 # Roman Spirgi , 2011, 2012 # Ronny Buchmann , 2005, 2006 # sknirT omiT , 2010 # Timo Trinks , 2007 # Verena , 2004 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: German (http://www.transifex.com/projects/p/fedora/language/" "de/)\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Privilegien können nicht abgegeben werden.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Interner Fehler.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s ist nicht autorisiert, Finger-Einstellungen von %s zu ändern\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Unbekannter Benutzerinhalt" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Vorgangskontext für /etc/passwd kann nicht gesetzt werden\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Fehler beim Initialisieren von PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Authentifizierung fehlgeschlagen: %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Interner PAM-Fehler »%s«.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Unbekannter Benutzer authentifiziert.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Benutzer stimmt nicht überein.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "Bei allen Informationen nachfragen" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "Alterungs-Parameter für den Benutzer auflisten" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "Minimale Zeitspanne in Tagen zwischen Passwortänderungen" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "TAGE" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "Maximale Zeitspanne in Tagen zwischen Passwortänderungen" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "Datum der letzten Passwortänderung in Tagen seit 1/1/70" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "Anzahl Tage nach Ablaufdatum des Passworts, an dem das Konto als inaktiv " "angesehen wird" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "Zeitraum seit dem Passwort-Ablaufdatum in Tagen seit 1/1/70" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" "Benachrichtung des Benutzers eine bestimmte Anzahl Tage vor dem Ablaufdatum" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] Benutzer" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Fehler beim Verarbeiten von Argumenten: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Es wurde kein Benutzername angegeben.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Fehler beim Initialisieren von %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Benutzer %s existiert nicht.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Benutzerkonto ist gesperrt.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Benutzerkonto ist nicht gesperrt.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maximum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Maximum:\tNicht festgelegt\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Warnung:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Nicht aktiv:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Inaktiv:\tNiemals\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Passwort muss beim nächsten Login geändert werden" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nie" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Letzte Änderung:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Passwort läuft ab:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Passwort nicht aktiv:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Benutzerkonto läuft ab:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Ablauf-Einstellungen konnten nicht geändert werden für %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [Benutzer]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Kein Benutzername angegeben, kein Name für uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Finger-Einstellungen für %s werden geändert.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Vollständiger Name" #: apps/lchfn.c:146 msgid "Surname" msgstr "Nachname" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Vorname" #: apps/lchfn.c:167 msgid "Office" msgstr "Büro" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefon (Arbeit)" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefon (Zuhause)" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-Mail-Adresse" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger-Informationen nicht geändert: Eingabefehler.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger-Informationen geändert.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger-Informationen nicht geändert: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Shell für %s wird geändert.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Neue Shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell nicht geändert: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell geändert.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid für neue Gruppe" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "NUM" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "Eine System-Gruppe erstellen" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] Gruppe" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Es wurde kein Gruppenname angegeben.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Ungültige Gruppenkennung %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Die Erzeugung der Gruppe ist fehlgeschlagen: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Gruppe %s existiert nicht.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Gruppe %s konnte nicht gelöscht werden: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "GID für Gruppe festlegen" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "Gruppe auf den vorgegebenen Namen ändern" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NAME" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "Klartext-Passwort für die Gruppen-Benutzung" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "STRING" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "Vor-verschlüsseltes Passwort (pre-hash) für die Benutzung der Gruppe" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "Hinzuzufügende Administratoren-Liste" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "Zu entfernende Administratoren-Liste" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "Hinzuzufügende Mitglieder-Liste" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "Zu entfernende Mitgliederliste" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "Gruppe sperren" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "Gruppe entsperren" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Sowohl -L als auch -U angegeben.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Passwort konnte nicht gesetzt werden für Gruppe %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Gruppe %s konnte nicht gesperrt werden: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Gruppe %s konnte nicht entsperrt werden: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Gruppe %s konnte nicht geändert werden: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Fehler beim Nachschlagen von %s: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "Auflistung von Mitgliedern einer benannten Gruppe anstelle der Gruppen-" "Mitgliedschaften des benannten Benutzer" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" "Auflistung der Mitgliedschafts-Information nach Name und nicht nach UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Kein Gruppenname angegeben, %s wird benutzt.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Kein Gruppenname angegeben, kein Name für gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Kein Benutzername angegeben, %s wird benutzt.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s existiert nicht\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "Datei mit Einträgen der Benutzerinformationen" #: apps/lnewusers.c:47 msgid "PATH" msgstr "PFAD" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "Erstelle keine Home-Verzeichnisse" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "Erstelle keine Mail-Spools" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Fehler beim Öffnen von »%s«: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Fehler beim Erstellen des Benutzerkontos für `»%s«: Zeile inkorrekt " "formatiert.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Ungültige Benutzerkennung %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Erstellen eines Benutzerkontos mit UID 0 verweigert.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Fehler beim Erstellen der Gruppe für »%s« mit GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Verwendung des unsachgemäßen Benutzerordners »%s« für %s wird standardmäßig " "abgelehnt\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Fehler beim Erstellen des persönlichen Ordners für %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Fehler beim Erstellen von Mail-Zwischenspeicher für %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Fehler beim Setzen des Initialpassworts für %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Fehler beim Erstellen des Benutzerkontos für %s: %s.\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "Setze Gruppen-Passwort anstelle Benutzerpasswort" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "Neues Klartext-Passwort" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "Neues verschlüsseltes Passwort" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "Lese neues Klartext-Passwort aus dem gegebenen Deskriptor" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "Lese neues verschlüsseltes Passwort aus dem gegebenen Deskriptor" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Passwort für »%s« geändert.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Neues Passwort" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Neues Passwort (Bestätigen)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Passwörter stimmen nicht überein. Noch einmal eingeben.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Passwortänderung abgebrochen.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Fehler beim Lesen von Dateideskriptor %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Fehler beim Erstellen des Passworts für Benutzer %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Fehler beim Erstellen des Passworts für Gruppe %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Passwort geändert.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "Erstelle einen System-Benutzer" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "GECOS-Information für neuen Benutzer" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "Home-Verzeichnis für neuen Benutzer" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "Daten-Verzeichnis für neuen Benutzer" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "Shell für neuen Benutzer" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "UID für neuen Benutzer" #: apps/luseradd.c:69 msgid "group for new user" msgstr "Gruppe für neuen Benutzer" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "Erstelle kein Home-Verzeichnis für den Benutzer" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "Erstelle keine Gruppe mit dem gleichen Namen des Benutzers" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "Gebräuchlicher Name für neuen Benutzer" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "Vorname des neuen Benutzers" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "Nachname des neuen Benutzers" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "Raum-Name für neuen Benutzer" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "Telefonnummer für neuen Benutzer" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "Private Telefonnummer für neuen Benutzer" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Gruppe %jd existiert nicht\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Fehler beim Erstellen der Gruppe »%s«: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Die Erzeugung des Benutzerkontos ist fehlgeschlagen: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Fehler bei der Erzeugung von %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Fehler beim Erstellen von Mail-Zwischenspeicher: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" "Entferne die private Gruppe des Benutzers nicht, falls der Benutzer eine hat" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "Entferne das Home-Verzeichnis des Benutzers" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Benutzer %s konnte nicht gelöscht werden: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s hatte keine GID-Nummer.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Gruppe mit GID %jd existiert nicht, wird nicht entfernt.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Gruppe mit GID %jd hat keinen Gruppennamen.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Gruppe %s konnte nicht gelöscht werden: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "Fehler beim Entfernen des persönlichen Ordners für Benutzer" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Fehler beim Entfernen von Mail-Zwischenspeicher: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS-Information" #: apps/lusermod.c:60 msgid "home directory" msgstr "Home-Verzeichnis" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "Verschiebe die Inhalte des Home-Verzeichnisses" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "Shell für Benutzer festlegen" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "UID für Benutzer festlegen" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "Primäre GID für Benutzer festlegen" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "Ändere Login-Name des Benutzers" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "Klartext-Passwort des Benutzers" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "Vor-verschlüsseltes Passwort (pre-hash) des Benutzers" #: apps/lusermod.c:75 msgid "lock account" msgstr "Konto sperren" #: apps/lusermod.c:78 msgid "unlock account" msgstr "Konto entsperren" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "Gebräuchlicher Name für den Benutzer wählen" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "Vornamen des Benutzers festlegen" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "Nachname des Benutzers festlegen " #: apps/lusermod.c:86 msgid "set room number for user" msgstr "Raum-Nummer des Benutzers festlegen" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "Telefonnummer des Benutzers festlegen" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "Private Telefonnummer des Benutzers festlegen" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Passwort konnte für Benutzer %s nicht eingestellt werden: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Benutzer %s konnte nicht gesperrt werden: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Benutzer %s konnte nicht freigegeben werden: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Warnung: Gruppe mit Kennung %jd existiert nicht.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Benutzer %s konnte nicht geändert werden: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Gruppe %s konnte nicht geändert werden: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Kein alter persönlicher Ordner für %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Kein neuer persönlicher Ordner für %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Fehler beim Verschieben von %s zu %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "Konfigurationsdatei »%s« konnte nicht geöffnet werden: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "stat konnte nicht ausgeführt werden für Konfigurationsdatei »%s«: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "Konfigurationsdatei »%s« ist zu groß" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "Konfigurationsdatei »%s« konnte nicht gelesen werden: %s" #: lib/error.c:62 msgid "success" msgstr "Erfolg" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "Modul durch die Konfiguration deaktiviert" #: lib/error.c:66 msgid "generic error" msgstr "Allgemeiner Fehler" #: lib/error.c:68 msgid "not enough privileges" msgstr "Keine ausreichenden Berechtigungen" #: lib/error.c:70 msgid "access denied" msgstr "Zugriff verweigert" #: lib/error.c:72 msgid "bad user/group name" msgstr "Ungültiger Benutzer-/Gruppenname" #: lib/error.c:74 msgid "bad user/group id" msgstr "Ungültige Benutzer-/Gruppenkennung" #: lib/error.c:76 msgid "user/group name in use" msgstr "Benutzer-/Gruppenname wird bereits verwendet" #: lib/error.c:78 msgid "user/group id in use" msgstr "Benutzer-/Gruppenkennung wird bereits verwendet" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "Fehler beim Bearbeiten der Terminalattribute" #: lib/error.c:82 msgid "error opening file" msgstr "Fehler beim Öffnen der Datei" #: lib/error.c:84 msgid "error locking file" msgstr "Fehler beim Sperren der Datei" #: lib/error.c:86 msgid "error statting file" msgstr "Fehler beim Ermitteln der Dateiinformationen" #: lib/error.c:88 msgid "error reading file" msgstr "Fehler beim Lesen der Datei" #: lib/error.c:90 msgid "error writing to file" msgstr "Fehler beim Schreiben in die Datei" #: lib/error.c:92 msgid "data not found in file" msgstr "Daten wurden in der Datei nicht gefunden" #: lib/error.c:94 msgid "internal initialization error" msgstr "Interner Fehler bei der Initialisierung" #: lib/error.c:96 msgid "error loading module" msgstr "Fehler beim Laden des Moduls" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "Fehler beim Auflösen des Symbols im Modul" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "Bibliothek-/Modulversion stimmt nicht überein" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "Entsperrung würde das Passwortfeld leer machen" #: lib/error.c:105 msgid "invalid attribute value" msgstr "Ungültiger Attributwert" #: lib/error.c:107 msgid "invalid module combination" msgstr "Ungültige Modulkombination" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "Home-Verzeichnis für neuen Benutzer" #: lib/error.c:115 msgid "unknown error" msgstr "Unbekannter Fehler" #: lib/misc.c:240 msgid "invalid number" msgstr "Ungültige Nummer" #: lib/misc.c:254 msgid "invalid ID" msgstr "Ungültige Kennung" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "Keine Initialisierungsfunktion %s in »%s«" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "Fehlende Übereinstimmung von Modulversionen in »%s«" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "Modul %s definiert »%s« nicht" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "Fehler beim Lesen der Terminalattribute" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "Fehler beim Einstellen der Terminalattribute" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "Fehler beim Lesen vom Terminal" #: lib/user.c:218 msgid "name is not set" msgstr "Name ist nicht definiert" #: lib/user.c:223 msgid "name is too short" msgstr "Name ist zu kurz" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "Name ist zu lang (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "Name enthält Nicht-ASCII-Zeichen" #: lib/user.c:242 msgid "name contains control characters" msgstr "Name enthält Kontrollzeichen" #: lib/user.c:249 msgid "name contains whitespace" msgstr "Name enthält Leerzeichen" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "Name beginnt mit einem Bindestrich" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "Name enthält ungültiges Zeichen »%c«" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "Benutzer %s hat keine Benutzerkennung" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "Benutzer %s nicht gefunden" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "Gruppe %s hat keine Gruppenkennung" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "Gruppe %s nicht gefunden" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "Benutzer %jd ist namenlos" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "Gruppe %jd ist namenlos" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "Benutzer ist namenlos und hat keine Benutzerkennung" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "Gruppe ist namenlos und hat keine Gruppenkennung" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" "Verwendung des unsachgemäßen Benutzerordners »%s« wird standardmäßig " "abgelehnt" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Ungültiger Wert in Feld %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "Fehler beim Sperren der Datei: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "Standard-Sicherheitskontext konnte nicht gesetzt werden: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "Sicherheitskontext »%s« konnte nicht ermittelt werden: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "Sicherheitskontext konnte nicht nach »%s« geschrieben werden: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "Sicherheitskontext »%s« konnte nicht bestimmt werden: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "»%s« konnte nicht geöffnet werden: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "stat »%s« konnte nicht ausgeführt werden: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "Fehler beim Erzeugen von »%s«: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "Sicherungsdatei »%s« ist vorhanden und keine reguläre Datei" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Fehler beim Ändern des Eigentümers von »%s«: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Fehler beim Ändern des Modus von `%s': %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Fehler beim Lesen von »%s«: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Fehler beim Schreiben von »%s«: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "Sicherungsdateigröße passt nicht" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s-Wert »%s«: »:« ist nicht erlaubt" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "»%s« konnte nicht gelesen werden: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "Eintrag bereits in der Datei vorhanden" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "Nach »%s« konnte nicht geschrieben werden: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "Entitätsobjekt besitzt kein %s-Attribut" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "Eintrag mit kollidierendem Namen bereits in der Datei vorhanden" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "»:« ist nicht erlaubt in verschlüsselten Passwörtern" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "Fehler beim Verschlüsseln des Passworts" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "Die Module »%s« und »%s« können nicht miteinander kombiniert werden" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "Keine Ausführung mit Administrator-Rechten." #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "Keine Shadow-Datei vorhanden -- wird deaktiviert." #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "Fehler bei der Verbindung zum kadm5-Server für Dienst »%s« in Realm %s: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "Fehler bei der Initialisierung der Kerberos-Bibliothek" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "Fehler beim Parsen des Benutzernamens »%s« für Kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "Entitätenstruktur besitzt kein Attribut %s oder %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "Entität besitzt kein Attribut %s oder %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "Entität wurde ohne Attribut %s oder %s erstellt" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "Fehler beim Lesen der Informationen für »%s« von Kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "Entität besitzt kein Attribut %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "Fehler beim Einstellen des Passworts für »%s«" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos-Passwort für Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "Fehler bei der Initialisierung der LDAP-Bibliothek" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP-Protokoll konnte nicht auf Version %d eingestellt werden" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "TLS-Serververbindung konnte nicht ausgehandelt werden" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "Verbindung zum LDAP-Server konnte nicht aufgebaut werden" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "Verbindung zum LDAP-Server konnte nicht aufgebaut werden, erster Versuch als " "»%s«: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "Benutzerobjekt hatte kein Attribut %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "Benutzerobjekt wurde ohne »%s« erstellt" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "Fehler beim Erstellen eines LDAP-Verzeichniseintrags: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "Fehler bei der Änderung des LDAP-Verzeichniseintrags: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "Fehler beim Umbenennen des LDAP-Verzeichniseintrags: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "Objekt hatte kein Attribut %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "Fehler beim Entfernen des LDAP-Verzeichniseintrags: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "Objekt besitzt kein Attribut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "Nicht unterstütztes Passwort-Verschlüsselungsschema" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "Kein entsprechendes Objekt im LDAP-Verzeichnis vorhanden" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "Kein »%s«-Attribut gefunden" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "Fehler beim Einrichten des Passworts im LDAP-Verzeichnis für %s: %s." #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP-Servername" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Basissuche-DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind-Passwort" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL-Benutzer" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL-Autorisierungsbenutzer" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL-Fehler beim Erstellen des Benutzers: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL-Fehler beim Entfernen des Benutzers: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Fehler beim Initialisieren von Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "Fehler beim Erstellen des persönlichen Ordners für Benutzer" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "Fehler beim Entfernen des persönlichen Ordners für Benutzer" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "Fehler beim Verschieben des persönlichen Ordners für Benutzer" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Fehler beim Initialisieren von %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Ungültige Kennung %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Nach Gruppe mit Kennung %jd wird gesucht.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Nach Gruppe mit Namen %s wird gesucht.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Nach Benutzer mit Kennung %jd wird gesucht.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Nach Benutzer mit Namen %s wird gesucht.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Eintrag wurde nicht gefunden.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Eingabeaufforderungen erfolgreich.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Eingabeaufforderungen fehlgeschlagen.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Standardmäßige Benutzerobjekt-Klassen:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Standardmäßige Benutzerattribut-Namen:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Nach standardmäßigen Benutzerattributen wird gesucht:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Benutzerstrukturen werden kopiert:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s hatte keinen persönlichen Ordner.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Fehler beim Entfernen von %s: %s.\n" libuser-0.60~dfsg/po/is.gmo0000644000175000017500000004674212226342604015645 0ustar tzafrirtzafrir43L85K*9$d"":Xg y</)>'h.L*c)(.(C(l.$ ! 2="W#z!#$# -G.b %  4%Ms     & 0=-T#, ,+"X{ #'8'L8t@! / Mn~"!# #8 \ u +    %! '!15!g!!!$!!8!(#"*L"*w")"*"0")(#)R#|##1###$*$!E$!g$+$.$$3%G6%~%)%&%%!&##&G&g&|&&&&(&$&').'X'k'0'!'''&(')( Q(r(3(!((( ) )6)"J)m) ))))) ) *:* Z*{*"****++/+%G+#m+ ++'++ ,&,-., \,-j,&,,,", -$*-O-d-{-:/W/<h/$//!/ 0 0<0\05x0"0 00 1.'12V1%1!111&1 2P@2"2522243!R3"t33"3#33&4C4,^45444!45965*p5(55,5(6 :6%E6k6p6(6&6(6)7*/7*Z77%7,7 77 8&868+G8s888(88 899&9 89 E9R9 g9 r9999989&9:86:2o:3:C:';B; a; l;w;;";;);<'<2><;q<E<<=!.=P=o=~= =#==,=, >-:>.h>>>>1> ??(?9?0K?|?.????! @,@?I@*@)@)@1A*:A.eA*A$AAA2BMBgB B%B,B$B3C2PC*CFCQC GD(hD:D#D(D3E/ME}EEE"E&E)FGF9`FFF4F%G.,G.[G*G.G)G9H$HHmHH H HH%HI0IAIYI sI*I#I(I IJ$:J+_JJJJJJK#,K)PK&zKK%K$K$ L/L.6LeL6tL+L LL%M,jRQY e ]~9NuF^tbACX=wyT:*M@Dq-cx}_|)21Wos%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora/language/is/) Language: is MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s var ekki með gid tölu. %s er ekki til. %s hefur ekki heimild til að breyta notandaupplýsingum %s %s gildi `%s': `:' er ekki leyfilegtAðgangurinn rennur út: %s Gat ekki búið til notanda: %s. Notandinn er læstur. Notandinn er ekki læstur. Auðkenning mistókst hjá %s. Bæði -L og -U tiltekið. Get ekki stillt sjálfgefinn öryggisham /etc/passwd Breyti upplýsingum notandans %s. Breyti lykilorði notandans %s. Skipti um skél hjá %s. Afrita notendastrúktúr: Cyrus SASL villa við að búa til notanda: %sCyrus SASL villa við að fjarlægja notandann: %sSjálfgefin heiti notandaeiginleika: Sjálfgefnar notendahlutahópar: TölvupóstfangFærslan fannst ekki. Villa við að breyta eiganda `%s': %sVilla við að búa %s til: %s. Villa við að búa til notandaaðgang fyrir `%s': rangt sniðnar upplýsingar. Gat ekki búið til hóp `%s': %s Gat ekki búið til hóp fyrir `%s' með GID %jd: %s Villa við að búa til heimasvæði fyrir %s: %s Villa við að búa til notandaaðgang fyrir %s: %s Villa við að frumstilla %s: %s Villa við að frumstilla %s: %s. Villa við frumstillingu PAM. Villa við að fletta upp %s: %s. Villa við að færa %s í %s: %s. Villa við að opna `%s': %s. Villa við að þátta viðföng: %s. Villa við lestur `%s': %sVilla við að setja lykilorð fyrir %s: %s Villa við að setja lykilorð fyrir hópinn %s: %s. Villa við að búa til lykilorð notandans %s: %s. Villa við að skrifa í `%s': %sGat ekki minnkað heimildir. Gat ekki breytt úreldingarupplýsingum notandans %s: %s Gat ekki sett lykilorð á hópinn %s: %s Gat ekki sett lykilorð notanda %s: %s. Upplýsingum notandans breytt. Upplýsingum notandans ekki breytt: villa. Upplýsingum notandans ekki breytt: %s. Fullt nafnSæki sjálfgefna notandaeiginleika: NafnHópurinn %jd er ekki til. Ekki var hægt að eyða hópnum %s: %s Ekki var hægt að eyða hóp %s: %s. Ekki var hægt að læsa hópnum %s: %s Ekki var hægt að breyta hópnum %s: %s Ekki var hægt að breyta hópnum %s: %s. Ekki var hægt að aflæsa hópnum %s: %s Hópurinn %s er ekki til. Ekki tókst að búa til hópinn: %s Hópur með GID %jd er ekki með hópheiti. HeimasímiÓvirkur: %ld Innvær PAM villa `%s'. Innvær villa. Ógilt kenni %s Ógilt sjálfgefið gildi í svæði %s: %sÓgilt hópnúmer %s Ógilt notandanúmer %s Kerberos Admin PrincipalKerberos lykilorð fyrir Admin PrincipalKerberos svæðiLDAP Bind DNLDAP lykilorðLDAP SASL AuðkennirLDAP SASL notandiLDAP Base DNLDAP þjónnSíðast breytt: %s Mest: %ld Minnst: %ld AldreiNý skelNýtt lykilorðNýtt lykilorð (staðfesta)Ekkert hópsheiti tiltekið, ekkert heiti fyrir gid %d. Ekkert hópsheiti tiltekið, nota %s. Enginn hópur tiltekinn. Enginn hópur með GID %jd er til. Fjarlægi hann ekki. Ekkert nýtt heimasvæði til fyrir notandann %s. Ekkert gamalt heimasvæði til fyrir notandann %s. Ekkert notandanafn tiltekið, ekkert heiti fyrir notandanúmer %d. Ekkert notandanafn tiltekið, nota %s. Ekkert notandanafn tiltekið. SkrifstofaVinnusímiLykilorðið rennur út: %s Lykilorðið ógilt: %s Hætt við að breyta lykilorði. Lykilorði breytt. Lykilorðin eru ekki eins. Reyndu aftur. Fyrirspurnir brugðust. Fyrirspurnir tókust. Ég neita að búa til notandaaðgang með UID 0. Neita sjálfgefið að nota hina varasömu heimamöppu `%s'Neita sjálfgefið að nota hina varasömu heimamöppu `%s' fyrir %s Leita að hóp sem heitir %s. Leita að hóp númer %jd. Leita að notanda sem heitir %s. Leita að notanda númer %jd. Skél breytt. Skél óbreytt: %s Eftirnafnóþekktur notandi auðkenndi sig. óþekktur notandaöryggishamurEkki var hægt að eyða notandanum %s: %s. Ekki var hægt að læsa notandanum %s: %s. Ekki var hægt að breyta notandanum %s: %s. Ekki var hægt að aflæsa notandanum %s: %s. Notandinn %s er ekki til. Misræmi í notanda. Aðvörun: %ld Aðvörun Hópur með auðkenni %jd er ekki til. [ROFI...][ROFI...] [notandi][ROFI...] hópur[ROFI...] notandi`:' er ekki leyfilegt í dulkóðuðu lykilorðiaðgangi hafnaðafritið `%s' er til og er ekki venjuleg skrástærðarmunur á afritumógildur notandi/hópnúmerógildur notandi/hópurstillingaskráin `%s' er of stórgat ekki tengst LDAP þjónigat ekki tengst LDAP þjóni, fyrsta tilraun gerð sem `%s': %sgat ekki samið um TLS við LDAP þjóninngat ekki opnað stillingaskrána `%s': %sgat ekki lesið stillingaskrána `%s': %sgat ekki stillt LDAP prótókollsútgáfuna á %dgat ekki fundið stillingaskrána `%s': %sgat ekki skilgreint öryggisham fyrir `%s': %sgat ekki sett sjálfgefinn öryggisham: %sgat ekki lesið öryggisham `%s': %sgat ekki opnað `%s': %sgat ekki lesið úr `%s': %sgat ekki sett sjálfgefinn öryggisham í `%s': %sgat ekki fundið `%s': %sgat ekki ritað í `%s': %sgögnin fundust ekki í skránnihluturinn hafði engann %s eiginleikahluturinn hefur engann %s eða %s eiginleikahluturinn er ekki með %s eiginleikahlutstrúkúrinn hefur engann %s eða %s eiginleikahluturinn var búinn til án %s eða %s eiginleikafærslan er þegar til staðar í skránnifærsla sem stangast á við heitið er þegar til staðar í skránnivilla við að tengjast kadm5 þjóni fyrir þjónustuna `%s' í svæði `%s': %svilla við að búa til `%s': %svilla við að búa til LDAP færslu: %svilla við að búa til nýtt heimasvæði fyrir notandannvilla við að dulrita lykilorðiðVilla við að frumstilla Cyrus SASL: %svilla við að frumstilla kerberos aðgerðasafniðvilla við að frumstilla ldap aðgerðasafniðvilla við að lesa eininguvilla við að læsa skrávilla við að læsa skrá: %sgat ekki breytt eiginleikum skjásvilla við að breyta LDAP færslu: %svilla við að færa heimasvæði notandavilla við opnun skráarvilla við að þátta notandaheitið `%s' fyrir kerberosvilla við að lesa skrávilla við lestur frá skjávilla við að lesa upplýsingar um `%s úr kerberosvilla við að lesa einigleika skjásvilla við að fjarlægja færslu úr LDAP: %svilla við að fjarlægja heimasvæði notandavilla við að endurnefna LDAP færslu: %svilla við að fjarlægja merkingu úr eininguvilla við að setja lykilorð fyrir `%s'villa við að setja lykilorð í LDAP skrá fyrir %s: %svilla við að setja skjáeiginleikavilla við að lesa skrávilla við að rita skráalmenn villahópurinn %jd hefur ekkert heitihópurinn %s hefur ekkert GIDhópurinn hefur hvorki heiti eða GIDvilla við að frumstillinguógilt auðkenniÓgilt gildi eiginleikaÓgild samsetning einingaógilt númerútgáfumismunur eininga eða skráarsafnaeiningin `%s' skilgreinir ekki `%s'slökkt er á einingunni skv. stillingumútgáfumismunur eininga í `%s'heitið inniheldur stjórntáknheitið inniheldur ógilt tákn `%c'heitið inniheldur stafi sem ekki eru ASCIIheitið inniheldur orðabilheitið er ekki stilltheitið er of langt (%zu > %d)heitið er of stuttheitið byrjar á bandstrikienginn `%s' eiginleiki fannstekkert frumstillingastef %s í `%s'engin shadow skrá til staðar -- afvirkienginn slíkur hlutur í LDAP skránumer ekki með nægar heimildirer ekki keyrandi með rótarheimildumhluturinn hefur engann %s eiginleikahluturinn hefur engann %s eiginleikatókstEkki er hægt að blanda '%s' og '%s' einingumóþekkt villaef tekið er úr lás verður lykilorðasviðið tómtdulkóðunarskema lykilorðs er ekki þekktnotandinn %jd hefur ekkert heitinotandinn %s hefur ekkert UIDnotandinn hefur hvorki heiti eða UIDnotandahluturinn hafði engann %s eiginleikanotandahluturinn var búinn til án `%s'notandanúmer/hópnúmer er þegar í notkunnotandi/hópur er þegar í notkunlibuser-0.60~dfsg/po/te.gmo0000644000175000017500000007332312226342605015636 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----:///Gu0-0>03*1:^1=191b2et2B2J3[h3r3o74w4k5&595B5Z/6966IV7a7`8uc8I8@#91d9B9H92":HU:.:r:`@;];M;1M<L<n<f;=~=L!>nn>O>-?wM??!?9@:A@9|@>@G@9=A wA<AUA(+BTB'mBBBCB)CK?CVCC7eDD0DJD+1E*]E!E'EEE%F"6F1YFIFgF`=G@GVGQ6HNHtHwLIXIJ1dDd;dQekele]dffzIgdgP)hzhf iMqi>iiDj:cjdj>kBkJ[k>k%kQ lJ]l`l> m^HmWmgmOgn.n?n5&oZ\oBoSoXNpGpAp|1q\q\ r$hrjr"rslsUtR^thtfuufviiv>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Telugu (http://www.transifex.com/projects/p/fedora/language/te/) Language: te MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s gid సంఖ్యను కలిగిలేదు. %s లేదు %s యొక్క ఫింగర్ సమాచారాన్ని మార్చుటకు %s అధికారంలేదు %s విలువ `%s': `:' అనుమతించబడలేదుఖాతా గతించినది: %s ఖాతా సృష్టీకరణ విఫలం: %s. ఖాతా స్థంభించినది. ఖాతా స్థంభించబడలేదు. %s కు దృవీకరణ విఫలమైనది. -L మరియు -U తెలుపబడినవి. /etc/passwd కు సిద్ద సందర్భాన్ని అమర్చలేము %s కొరకు ఫింగర్ సమాచారం మార్చబడుతోంది. %s అనుమతిపదం మారుస్తుంది. %s కొరకు షెల్ ను మారుస్తోంది. వినియోగదారుని ఆకృతిని నకలుతీయుట: వినియోగదారుని సృష్టించుటలో సైరస్ SASL దోషం: %sవినియోగదారుని తోలగించుటలో సైరస్ SASL దోషం: %sసిద్ద వినియోగదారుని యాట్రిబ్యూట్సు పేరులు: సిద్ద వినియోగదారుని ఆబ్జక్టు క్లాసులు: ఇ-టపా చిరునామాప్రవేశం కనిపించలేదు. `%s' యొక్క దోష మార్పు రీతి: %s`%s' యొక్క యజమానిని మార్చుటలో దోషం: %s%s సృష్టించుటలో దోషం: %s `%s' కు ఖాతా సృష్టించుటలో దోషం:పంక్తి సరిగా కూర్చబడలేదు. సమూహం %s సృష్టించుటలో దోషం: %s `%s' కు GID %jd తో సమూహం సృష్టించుటలో దోషం: %s %s కు నివాస సంచయం సృష్టించుటలో దోషం: %s %s కు వినియోగదారుని ఖాతా సృష్టించుటలో దోషం: %s %s ను సిద్దీకరించుటలో దోషం: %s %s సంస్థాపించుటలో దోషం: %s. PAM సంస్థాపనలో దోషం. %s లో దోషాన్ని చూస్తోంది:%s %s నుండి %s కు కదులుటలో దోషం: %s. `%s' తెరువుటలో దోషం:%s. మూలకాల పార్సింగ్ లో దోషం: %s. `%s' చదువుటలో దోషం: %sఫైల్ డిస్క్రిప్టార్ %d నుండి చదువుటలో దోషం. %s కు తోలి అనుమతిపదం అమర్చుటలో దోషం: %s %s సమూహం కు అనుమతిపదం అమరికలో దోషం: %s %s కు అనుమతిపదం అమరికలో దోషం: %s `%s' వ్రాయుటలో దోషం: %sఅనుమతినిరాకరణ లో విఫలమైంది. %s యొక్క వయోసమాచారాన్ని మార్చుటలో విఫలం: %s సమూహం %s కు అనుమతిపదం అమర్చుటలో విఫలం: %s %s వినియోగదారునికి అనుమతిపదం అమర్చుటలో విఫలం: %s. ఫింగర్ సమాచారం మార్చబడినది. ఫింగర్ సమాచారం మార్చబడలేదు: ప్రవేశ దోషం. ఫింగర్ సమాచారం మార్చబడలేదు:%s. పుర్తి పేరుసిద్ద వినియోగదారుని యాట్రిబ్యూట్సు పొందుట: ఇచ్చిన పేరుసమూహం %jd లేదు %s సముహం తొలగింపలేము: %s %s సమూహం తొలగింపబడడు: %s. సమూహం %s లాక్ చేయలేము:%s సమూహం %s మార్పుచేయలేము:%s సమూహం %s మార్పు చేయబడలేదు: %s. సమూహం %s లాక్ తీయలేము:%s సమూహం%s లేదు. సమూహ సృష్టీకరణ విఫలం:%s GID %jd తో ఉన్న సమూహం పేరుకలిగిలేదు. నివాస దూర్వాణిఅచేతనం: %ld లోపలి PAM దోషం `%s'. లోపలి దోషం. సరిగాని ID %s %s కు సరికాని సిద్దవిలువ : %sసరిగాని సమూహ ID %s వినియోగదారుని ID %s సరిగా లేదు కెర్బ్రోస్ ఎడ్మిన్ ప్రిన్సిపల్ఎడ్మిన్ ప్రిన్సిపల్ కొరకు కెర్బ్రోస్ అనుమతిపదంకేర్బ్రోస్ రియాల్ముLDAP బైండ్ DNLDAP బైండ్ అనుమతిపదంLDAP SASL దృవీకరించు వినియోగదారిLDAP SASL వినియోగదారిLDAP సెర్చు ఆధారం DNLDAP సేవిక పేరుచివరి మార్పు: %s గరిష్ఠము: %ld కనిష్ఠము: %ld ఎప్పటికి కాదుక్రొత్త షెల్క్రొత్త అనుమతిపదంక్రొత్త అనుమతిపదం (నిశ్చయం)సమూహం పేరు తెలుపబడలేదు,gid%d కి పేరు లేదు. సమూహం పేరు తెలుపబడలేదు, %s ఉపయోగించి. సముహం పేరు తెలుపబడలేదు. GID %jd తో ఏ సమూహం లేదు,తొలగించవద్దు. %s కు క్రొత్త నివాస సంచయము లేదు. %s కు పురాతన నివాస సంచయము లేదు. వినియోగదారి పేరు తెలుపలేదు,uid %d కు పేరు లేదు. వినియోగదారుని పేరు తెలుపబడలేదు,%s ఉపయోగించి. వినియోగదారుని పేరు తెలుపబడలేదు. కార్యాలయముకార్యాలయ దూర్వాణిఅనుమతుపదం గతించినది: %s అనుమతిపదం అచేతనం: %s అనుమతిపదం మార్పు రద్దుచేయబడింది. అనుమతిపదం మార్చబడినది. అనుమతిపదం సరితూగలేదు,మరలా ప్రయత్నించండి. ప్రాంమ్ట్సు విఫలం. ప్రాంమ్ట్సు సఫలం. UID 0 తో ఖాతా సృష్టించుటకు తిరస్కరిస్తోంది. ప్రమాదకరమైన నివాస సంచయం `%s' అప్రమేయంగా వుపయోగించుటకు తిరస్కరించుతోందిప్రమాదకరమైన డైరెక్టరీ `%s'ను %s కొరకు అప్రమేయంగా వుపయోగించుట తిరస్కరించుతోంది %s పేరుగల సమూహం కొరకు వెతుకులాట. ID %jd తో సమూహం కొరకు వెతుకులాట. %s పేరుగల వినియోగదారుని కొరకు వెతుకులాట. ID %jd తో వినియోగదారుని కోరకు వెతుకులాట. షెల్ మార్చబడినది. షెల్ మార్చబడలేదు:%s ఉపనామముతెలియని వినియోగదారుడు దృవీకరించబడ్డాడు. తెలియని వినియోగదారుని సందర్భం%s వినియోగదారుడు తొలగింపబడడు: %s. వినియోగదారుడు %s లాక్ చేయబడలేడు: %s. వినియోగదారుడు %s మార్పు చేయబడలేడు: %s. వినియోగదారుడు %s లాక్ చేయబడలేడు: %s. %s వినియోగదారుడు లేడు. వినియోగదారుని అసమానత. హెచ్చరిక: %ld హెచ్చరిక: ID %jd తొ సమూహం లేదు. [OPTION...][OPTION...] [వినియోగదారి][OPTION...] సమూహం[OPTION...] వినియోగదారుడుఎన్క్రిప్టెడ్ సంకేతపదమునందు `:' అనుమతించబడలేదుఅనుమతి నిరాకరించబడింది`%s' బ్యాకప్ దస్త్రం ఉంది అది నిత్యదస్త్రంకాదుబ్యాకప్ దస్త్ర పరిమాణ అసమానతచెడ్డ వినియోగదారుని/సమూహం ఇడిచెడ్డ వినియోగదారుని/సమూహం పేరుఆకృతీకరణ దస్త్రం `%s' చాలా పెద్దదిLDAP సేవికకు కట్టుబడి ఉండలేముLDAP సేవిక కు కట్టుబడి ఉండలేము,మొదటి ప్రయత్నంగా `%s': %sLDAP సేవిక తో TLS ను నెగొషియేట్ చేయలేము`%s' ఆకృతీకరణ దస్త్రం ను తెరువలేదు: %sఆకృతీకరణ ఫైలు `%s' ను చదవలేదు: %sవిడుదల %d కు LDAP నియమంను వ్యవస్థాపించలేము`%s' ఆకృతీకరణ దస్త్రం ను ప్రారంభింపలేదు: %s`%s' యొక్క రక్షణ సందర్బంను పొందలేము: %sసిద్ద రక్షణ సందర్బంను వ్యవస్థింపలేము: %s`%s' యొక్క రక్షణ సందర్బంను పొందలేము: %s`%s' ను తెరువలేము: %s`%s' నుండి చదవలేము : %s`%s' కు సిద్ద రక్షణ వ్యవస్థను అమర్చలేము: %s`%s' ను ప్రారంభింపలేము: %s `%s' కు వ్రాయలేము : %sదస్త్రంలో సమాచారం కనబడుటలేదుఎంటిటి యాట్రిబ్యూట్ %s ను కలిగి లేదుఎంటిటి %s లేక %s యాట్రిబ్యూట్సు కలిగి లేదుప్రవేశపెట్టిన ఆబ్జక్టు యాట్రిబ్యూట్ %s ని కలిగి లేదుఎంటిటి ఆకృతి %s లేక %s యాట్రిబ్యూట్సు కలిగి లేదుఎంటిటి %s లేక %s యాట్రిబ్యూట్సు లేకుండానే సృష్టించబడిందిప్రవేశం దస్త్రంలో ఉంచబడిందివిభేదిస్తున్న పేరుతో ప్రవేశం యిప్పటికే ఫైలునందు వుంది`%s' రియల్ము లో `%s' సేవ కొరకు kadm5 అనుసంధానంలో దోషం: %s`%s' ను సృష్టించలేము: %sLDAP పదకోశ ప్రవేశం సృష్టీకరణలో దోషం: %sవినియోగదారుని కొరకు నివాస సంచయం సృష్టించుటలో దోషంఅనుమతిపదం ను ఎన్క్రిప్టు చేయడం లో దోషంసైరస్ SASL సిద్దీకరించుటలో దోషం: %sకేర్బ్రోస్ లైబ్రరి సిద్దికరణలో దోషంఎల్ డాప్ లైబ్రరి సంస్థాపనలో దోషంగుణకం లోడింగ్ లో దోషందస్త్రం లాకింగ్ లో దోషందస్త్రం లాకింగ్ లో దోషం: %sటెర్మినల్ యాట్రిబ్యూట్సు నిర్దేశంలో దోషంLDAP పదకోశ ప్రవేశం మార్చుటలో దోషం: %sవినియోగదారుని కొరకు నివాస సంచయం కదుల్చుటలో దోషందస్త్రం తెరుచుటలో దోషంకేర్బ్రోస్ కోరకు వినియోగదారుని పేరు `%s' పార్శింగ్ లో దోషందస్త్రం చదువుటలో దోషంటెర్మినల్ నుండి చదువుటలో దోషంకేర్బ్రోస్ నుండి `%s' కొరకు సమాచారాన్ని చదువుటలో దోషంటెర్మినల్ యాట్రిబ్యూట్సు చదువుటలో దోషంLDAP పదకోశ ప్రవేశం తొలగించుటలో దోషం: %sవినియోగదారుని కొరకు నివాస సంచయం తొలగించుటలో దోషంLDAP పదకోశ ప్రవేశం తిరిగి నామకరణం చేయుటలో దోషం: %sగుణకం లో గర్తును పరిష్కరించుటలో దోషం`%s' కు అనుమతిపదం అమర్చుటలో దోషం%s కోరకు LDAP పదకోశం లో అనుమతిపదం వ్యవస్థాపించుటలో దోషం: %sటెర్మినల్ యట్రిబ్యూట్సు అమరికలో దోషందస్త్రం ప్రారంభించుటలో దోషందస్త్రం వ్రాయుటలో దోషంసాధారణ దోషంసమూహం %jd పేరు ని కలిగి లేదుసమూహం %s GID ని కలిగి లేదుసమూహం పేరును కాని GID ని కాని కలిగి లేదుఅంతర్గత సిద్దీకరణ దోషంసరికాని IDచెల్లని యాట్రిబ్యూట్ విలువచెల్లని మాడ్యూల్ యుగళంసరికాని సంఖ్యలైబ్రరి/గుణకం విడుదలలో అసమానత`%s' గుణకం `%s'న్ని నిర్ధారించదుఆకృతీకరణ చేత గుణకం అచేతనంచేయబడింది`%s' లో గుణక విడుదల అసమానతపేరు కంట్రోల్ అక్షరాలను కలిగి ఉందిపేరు సరిగాని అక్షరం `%c' కలిగి ఉందిపేరు ASCII అక్షరాలు కానివాటిని కలిగి ఉందిపేరు తెల్ల ఖాళీలను కలిగి ఉందిపేరు పెట్టబడలేదుపేరు పెద్దదిగా ఉంది(%zu > %d)పేరు చిన్నదిగా ఉందిపేరు హైఫన్ తో ప్రారంభింపబడుతుంది`%s' యాట్రిబ్యూట్ కనబడలేదు`%s' లో క్రియాశీల %s సిద్దీకరణ లేదుషాడో ఫైల్ లేదు -- అచేతనం చేయబడిందిLDAP లో అటువంటి ఆబ్జక్టు లేదుసరిపోయిన అధికారాలు లేవుసూపర్ యూజర్ అదికారాలతో నిష్పాదనము జరుగుటలేదుఆబ్జక్టు %s యాట్రిబ్యూట్ కలిగిలేదుఆబ్జక్టు %s యాట్రిబ్యూట్ కలిగిలేదుసమర్ధంవంతంగా`%s' మరియు `%s' మాడ్యూళ్ళను సమ్మేళనం చేయలేముతెలియని దోషంఅన్ లాకింగ్ అనుమతిపదం స్థలాన్ని ఖాళీచేస్తుందిమద్దతీయని సంకేతపదపు ఎన్క్రిప్షన్ పథకమువినియోగదారుడు %jd పేరు కలిగి లేడువినియోగదారుడు %s UID ని కలిగి లేడువినియోగదారుడు పేరుకాని UID ని కలిగి లేడువినియోగదారుని ఆబ్జక్టు %sని కలిగి లేదువినియోగదారుని ఆబ్జక్టు `%s' లేకనే సృష్టించబడిందివినియోగదారుని/సమూహం ఐడి ఉపయోగంలోఉందివినియోగదారుని/సమూహం పేరు ఉపయోగంలోఉందిlibuser-0.60~dfsg/po/Makefile.in.in0000644000175000017500000004040712226342570017172 0ustar tzafrirtzafrir# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public # License but which still want to provide support for the GNU gettext # functionality. # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. # # Origin: gettext-0.18.2 GETTEXT_MACRO_VERSION = 0.18 PACKAGE = @PACKAGE@ VERSION = @VERSION@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datarootdir = @datarootdir@ datadir = @datadir@ localedir = @localedir@ gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ # We use $(mkdir_p). # In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as # "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, # @install_sh@ does not start with $(SHELL), so we add it. # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake # versions, $(mkinstalldirs) and $(install_sh) are unused. mkinstalldirs = $(SHELL) @install_sh@ -d install_sh = $(SHELL) @install_sh@ MKDIR_P = @MKDIR_P@ mkdir_p = @mkdir_p@ GMSGFMT_ = @GMSGFMT@ GMSGFMT_no = @GMSGFMT@ GMSGFMT_yes = @GMSGFMT_015@ GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) MSGFMT_ = @MSGFMT@ MSGFMT_no = @MSGFMT@ MSGFMT_yes = @MSGFMT_015@ MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) XGETTEXT_ = @XGETTEXT@ XGETTEXT_no = @XGETTEXT@ XGETTEXT_yes = @XGETTEXT_015@ XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: all-@USE_NLS@ all-yes: stamp-po all-no: # Ensure that the gettext macros and this Makefile.in.in are in sync. CHECK_MACRO_VERSION = \ test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \ || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \ exit 1; \ } # $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no # internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because # we don't want to bother translators with empty POT files). We assume that # LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. # In this case, stamp-po is a nop (i.e. a phony target). # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent # invocations of "make" will do nothing. This timestamp would not be necessary # if updating the $(CATALOGS) would always touch them; however, the rule for # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot @$(CHECK_MACRO_VERSION) test ! -f $(srcdir)/$(DOMAIN).pot || \ test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) @test ! -f $(srcdir)/$(DOMAIN).pot || { \ echo "touch stamp-po" && \ echo timestamp > stamp-poT && \ mv stamp-poT stamp-po; \ } # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. # The determination of whether the package xyz is a GNU one is based on the # heuristic whether some file in the top level directory mentions "GNU xyz". # If GNU 'find' is available, we avoid grepping through monster files. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f -size -10000000c -exec grep 'GNU @PACKAGE@' /dev/null '{}' ';' 2>/dev/null; \ else \ LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null; \ fi; \ } | grep -v 'libtool:' >/dev/null; then \ package_gnu='GNU '; \ else \ package_gnu=''; \ fi; \ if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ else \ msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ fi; \ case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ *) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --package-name="$${package_gnu}@PACKAGE@" \ --package-version='@VERSION@' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ esac test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } # This rule has no dependencies: we don't need to update $(DOMAIN).pot at # every "make" invocation, only create it when it is missing. # Only "make $(DOMAIN).pot-update" or "make dist" will force an update. $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update # This target rebuilds a PO file if $(DOMAIN).pot has changed. # Note that a PO file is not touched if it doesn't need to be changed. $(POFILES): $(srcdir)/$(DOMAIN).pot @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ if test -f "$(srcdir)/$${lang}.po"; then \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) \ && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot;; \ esac; \ }; \ else \ $(MAKE) $${lang}.po-create; \ fi install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ for file in Makevars; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ for file in $(DISTFILES.common) Makevars.template; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f stamp-poT rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f stamp-po $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(MAKE) update-po @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: stamp-po $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ if test -f $(srcdir)/$(DOMAIN).pot; then \ dists="$$dists $(DOMAIN).pot stamp-po"; \ fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ for i in 0 1 2 3 4 5 6 7 8 9; do \ if test -f $(srcdir)/ChangeLog.$$i; then \ dists="$$dists ChangeLog.$$i"; \ fi; \ done; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir) || exit 1; \ else \ cp -p $(srcdir)/$$file $(distdir) || exit 1; \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for creating PO files. .nop.po-create: @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ exit 1 # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ *) \ $(MSGMERGE) $(MSGMERGE_OPTIONS) --lang=$$lang -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ esac; \ }; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: # Recreate Makefile by invoking config.status. Explicitly invoke the shell, # because execution permission bits may not work on the current file system. # Use @SHELL@, which is the shell determined by autoconf for the use by its # scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient. Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ && @SHELL@ ./config.status $(subdir)/$@.in po-directories force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: libuser-0.60~dfsg/po/fr.gmo0000644000175000017500000007107012226342604015631 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<>>A>/%?U?(q??!?&? ?@ @.a@$@/@*@=A?NAA3A-AA B7#B>[B)BPB7CKMC?C?C7D@QD,D-D(D-E1DE/vE0E-E7F8=FDvFGFKG.OG*~GCGAGK/H {H8H*H I I(I8HIII/I0I1J.8J.gJ4JJ(J8KIK\KlKKKK.KKL!"L5DL zLLL$LLL M!M?MOMaM=qMMMM!MM#M1N1KN}N?N)N(O;/O5kO"OOOO!OP'*PRP>jPPP+PHPQGQQ Q#Q&Q* R$7R/\RR"RR3R4S29S8lSS%SS2T 4T@TZTmT2TTCT2 U>U%^UU4U U5U%*VWPV0V@V?W9ZWXWGW@5XBvX$X0XPY8`Y)YYY&YG#ZJkZ=Z>Z+3[/_[*[F[\%!\'G\5o\0\(\?\e?]/]D]C^(^^0^<^8^#._&R_,y_8_F_C&`%j`F`$`$`F!a3haEaEaH(b1qb=bQb93c2mc&c3ccd$dBd_d{dddd!d8e=e ]e$ie&ee5e9ea6f$f$f&f& g0gFg>\g>g/g' h12h/dh,h2hEh:iVioii$iii!j3(j1\j'jj3j\k!akk5kAk&l$@l&el$l l=l<m)Mm'wmmm'm$n:&n?an)n.n"n+o3Io}oo$o,o?o3pMp]pvp4p;p q!q@q[q){q2q,q2r0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: French (http://www.transifex.com/projects/p/fedora/language/fr/) Language: fr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); %s n'avait pas de numéro GID. %s n'existe pas %s n'est pas autorisé à modifier les informations finger de %s %s valeur « %s » : « : » non autoriséExpiration du compte : %s La création du compte a échoué : %s Le compte est verrouillé. Le compte n'est pas verrouillé. Échec de l'authentification pour %s. Aussi bien -L que -U indiqués. Impossible de définir le contexte par défaut pour /etc/passwd Modification des informations finger pour %s. Changement du mot de passe pour %s. Modifier l'interpréteur de commandes pour %s. Copie de la structure de l'utilisateur : Erreur Cyrus SASL lors de la création de l'utilisateur : %sErreur Cyrus SASL lors de la suppression de l'utilisateur : %sJOURSNoms des attributs des utilisateurs par défaut : Classes d'objet d'utilisateur par défaut : Adresse électroniqueEntrée non trouvée. Erreur lors du changement de mode de « %s » : %sErreur lors du changement du propriétaire de « %s » : %sErreur lors de la création de %s : %s. Erreur lors de la création d'un compte pour « %s » : ligne mal formatée. Erreur lors de la création du groupe « %s » : %s Erreur lors de la création du groupe pour« %s » avec le GID %jd : %s Erreur lors de la création du dossier personnel pour %s : %s Erreur lors de la création du spool de courriel pour %s : %s Erreur lors de la création du spool de courriel : %s Erreur lors de la création du compte utilisateur pour %s : %s Erreur lors de l'initialisation de %s : %s Erreur lors de l'initialisation de %s : %s. Erreur lors de l'initialisation de PAM. Erreur lors de la vérification de %s : %s. Erreur lors du déplacement de %s vers %s : %s. Erreur lors de la lecture de « %s » : %s. Erreur lors de l'analyse des paramètres : %s. Erreur lors de la lecture de « %s » : %sErreur de lecture depuis le descripteur de fichier %d. Erreur lors de la suppression du spool de courriel : %sErreur lors de la définition du mot de passe initial pour %s : %s Erreur lors de la définition du mot de passe pour le groupe %s : %s. Erreur lors de la définition du mot de passe pour l'utilisateur %s : %s. Erreur lors de l'écriture de « %s » : %sÉchec lors de l'abandon des privilèges. Impossible de modifier les informations d'expiration pour %s : %s Erreur lors de la définition du mot de passe du groupe %s : %s Erreur lors de la définition du mot de passe pour l'utilisateur %s : %s. Informations finger modifiées. Informations finger non modifiées : erreur de saisie. Informations finger non modifiées : %s. Nom completinformations GECOSinformations GECOS du nouvel utilisateurObtention des attributs des utilisateurs par défaut : PrénomLe groupe %jd n'existe pas Le groupe %s ne peut pas être supprimé : %s Le groupe %s ne peut pas être supprimé : %s. Le groupe %s ne peut pas être verrouillé : %s Le groupe %s ne peut pas être modifié : %s Le groupe %s n'a pas pu être modifié : %s. Le groupe %s ne peut pas être déverrouillé : %s Le groupe %s n'existe pas. La création du groupe a échoué : %s Le groupe avec le GID %jd n'avait pas de nom de groupe. Téléphone privéInactif : %ld Inactif : jamais Erreur PAM interne « %s ». Erreur interne. ID %s invalide Valeur par défaut du champs %s invalide : %sID groupe %s invalide ID utilisateur %s invalide Administrateur principal KerberosMot de passe Kerberos pour l'administrateur principalZone KerberosDN de liaison LDAPMot de passe LDAP BindUtilisateur d'autorisation LDAP SASLUtilisateur LDAP SASLDN de la base de recherche LDAPNom du serveur LDAPDernière modification : %s Maximum : %ld Maximum : aucun Minimum : %ld Le mot de passe doit être modifié à la prochaine connexionNOMNUMJamaisNouvel interpréteur de commandesNouveau mot de passeNouveau mot de passe (confirmation)Aucun nom de groupe indiqué, aucun nom pour %d. Aucun nom de groupe indiqué, utilisation de %s. Aucun nom de groupe indiqué. Aucun groupe avec le GID %jd n'existe. Suppression impossible. Aucun nouveau dossier personnel pour %s. Aucun ancien dossier personnel pour %s. Aucun nom d'utilisateur indiqué, aucun nom pour l'UID %d. Aucun nom d'utilisateur indiqué, utilisation de %s. Aucun nom d'utilisateur indiqué. BureauTéléphone professionnelCHEMINExpiration du mot de passe : %s Mot de passe inactif : %s Modification du mot de passe annulée. Mot de passe modifié. Les mots de passe ne sont pas identiques, essayez de nouveau. Invites échouées. Invites réussies. Création du compte avec l'UID 0 refusée. Utilisation par défaut du répertoire personnel dangereux `%s' refuséeUtilisation par défaut du répertoire personnel dangereux `%s' pour %s refusée STRINGRecherche du groupe appelé %s. Recherche du groupe avec l'ID %jd. Recherche de l'utilisateur nommé %s. Recherche de l'utilisateur avec l'ID %jd. Interpréteur de commande modifié. Interpréteur de commandes non modifié : %s. NomUtilisateur inconnu authentifié. Contexte utilisateur inconnuL'utilisateur %s n'a pas pu être supprimé : %s. L'utilisateur %s n'a pas pu être verrouillé : %s L'utilisateur %s n'a pas pu être modifié : %s. L'utilisateur %s n'a pas pu être déverrouillé : %s. L'utilisateur %s n'existe pas. Non correspondance de l'utilisateur. Avertissement : %ld Avertissement : le groupe d'ID %jd n'existe pas. [OPTION...][OPTION...] [utilisateur][OPTION...] groupe[OPTION...] utilisateur« : » non permis dans le mot de passe chiffréaccès refuséle fichier de sauvegarde « %s » existe et il n'est pas standardincohérence de la taille du fichier de sauvegardeID utilisateur/groupe incorrectnom d'utilisateur/de groupe incorrectmodifier le nom du groupemodifier l'identifiant de connexion de l'utilisateurnom commun du nouvel utilisateurle fichier de configuration « %s » est trop grandimpossible de se lier au serveur LDAPimpossible de se lier au serveur LDAP, première tentative en tant que « %s » : %simpossible de négocier TLS avec le serveur LDAPimpossible d'ouvrir le fichier de configuration « %s » : %simpossible de lire le fichier de configuration « %s » : %simpossible de régler le protocole LDAP sur la version %dimpossible d'exécuter la fonction stat sur le fichier de configuration « %s » : %simpossible de déterminer le contexte de sécurité de « %s » : %simpossible d'obtenir le contexte de sécurité par défaut : %simpossible d'obtenir le contexte de sécurité de « %s » : %simpossible d'ouvrir « %s » : %simpossible de lire à partir de « %s » : %simpossible de définir le contexte de sécurité par défaut à « %s » : %simpossible d'exécuter la fonction stat « %s » : %simpossible d'écrire sur « %s » : %scréer un groupe systèmecréer un utilisateur systèmedonnées non trouvées dans le fichierdate du dernier changement de mot de passe en jours depuis le 1/1/1970.nombre de jours avant expiration pour commencer à prévenir l'utilisateurrépertoire contenant les fichiers pour le nouvel utilisateurne pas créer de groupe portant le même nom que l'utilisateurne pas créer les répertoires utilisateursne pas créer de répertoire pour l'utilisateurne pas créer les conteneurs de messageriene pas supprimer le groupe privé de l'utilisateur si celui-ci en a unl'entité n'a pas d'attribut %sl'entité n'a pas d'attribut %s ou %sl'objet d'entité n'a pas d'attribut %sla structure de l'entité n'a pas d'attribut %s ou %sl'entité a été créée sans attribut %s ou %sentrée déjà présente dans le fichierentrée avec un nom en conflit déjà présente dans le fichiererreur lors de la connexion au serveur kadm5 pour le service « %s » dans la zone « %s » : %serreur lors de la création de « %s » : %serreur lors de la création d'une entrée dans l'annuaire LDAP : %sErreur lors de la création du dossier personnel pour l'utilisateurerreur lors du chiffrage du mot de passeErreur lors de l'initialisation Cyrus SASL : %serreur lors de l'initialisation de la bibliothèque kerberoserreur lors de l'initialisation de la bibliothèque LDAPerreur lors du chargement du moduleerreur lors du verrouillage du fichiererreur lors du verrouillage du fichier : %serreur lors de la modification des attributs du terminalerreur lors de la modification de l'entrée dans l'annuaire LDAP : %sErreur lors du déplacement du dossier personnel pour l'utilisateurerreur lors de l'ouverture du fichiererreur lors de l'analyse du nom d'utilisateur « %s » pour kerberoserreur lors de la lecture du fichiererreur de lecture depuis le terminalerreur lors de la lecture des informations de kerberos pour « %s »erreur lors de la lecture des attributs du terminalerreur lors de la suppression de l'entrée dans l'annuaire LDAP : %sErreur lors de la suppression du dossier personnel pour l'utilisateurerreur lors du changement du nom de l'entrée dans l'annuaire LDAP : %serreur lors de la conversion du symbole en moduleerreur lors de la définition du mot de passe pour « %s »erreur lors de la définition du mot de passe dans l'annuaire LDAP pour %s : %s.erreur lors de la configuration des attributs du terminalimpossible d'appliquer la fonction stat au fichiererreur lors de l'écriture sur fichierfichier contenant les informations des utilisateurserreur génériquegid du nouveau groupeprénom du nouvel utilisateurle groupe %jd n'a pas de nomle groupe %s n'a pas de GIDgroupe %s introuvablegroupe du nouvel utilisateurle groupe n'a ni nom ni GIDrépertoire utilisateurrépertoire du nouvel utilisateurnuméro de téléphone du domicile du nouvel utilisateurerreur d'initialisation interneID invalidela valeur de l'attribut est invalidel'association des modules est invalidenuméro invalideincohérence de version du module/de la bibliothèqueafficher les informations d'expiration pour l'utilisateurafficher les utilisateurs d'un groupe nommé au lieu des appartenances de groupe de l'utilisateurliste des administrateurs à ajouterliste des administrateurs à retirerliste des membres du groupe à ajouterliste des membres du groupe à retirerverrouiller le compteverrouiller le groupenombre de jours maximum entre deux changements de mot de passenombre de jours minimum entre deux changements de mot de passele module « %s » ne définit pas « %s »module désactivé par la configurationincohérence de version du module dans « %s »déplacer le contenu du répertoire utilisateurle nom contient des caractères de contrôlele nom contient un caractère incorrect « %c »le nom contient des caractères qui ne sont pas des caractères ASCIIle nom contient des espacesle nom n'est pas définile nom est trop long (%zu > %d)le nom est trop courtle nom commence par un trait d'unionnouveau mot de passe chiffrénouveau mot de passe en clairaucun attribut « %s » trouvéaucune fonction d'initialisation %s dans « %s »pas de fichier shadow présent -- désactivation.objet non présent dans l'annuaire LDAPpermissions insuffisantesexécution sans les permissions du superutilisateurnombre de jours après l'expiration du mot de passe déclenchant la désactivation du comptel'objet n'avait pas d'attribut %sl'objet n'a pas d'attribut %safficher les appartenances par nom et non par UID/GIDdate de l'expiration du mot de passe en jours depuis le 1/1/1970.mot de passe en clair de l'utilisateurmot de passe en clair pour le groupemot de passe chiffré de l'utilisateurmot de passe chiffré pour le groupedemander toutes les informationslire les mots de passe chiffrés depuis le descripteur donnélire les mots de passe en clair depuis le descripteur donnésupprimer le répertoire de l'utilisateurnuméro de pièce du nouvel utilisateurmodifier le GID du groupemodifier l'UID de l'utilisateurmodifier le nom commun de l'utilisateurmodifier le prénom de l'utilisateurmodifier le mot de passe du groupe et non de l'utilisateurmodifier le numéro de téléphone du domicile de l'utilisateurmodifier le GID primaire de l'utilisateurmodifier le numéro de pièce de l'utilisateurmodifier le shell de l'utilisateurmodifier le nom de famille de l'utilisateurmodifier le numéro de téléphone de l'utilisateurshell du nouvel utilisateurréussinom de famille du nouvel utilisateurnuméro de téléphone du nouvel utilisateurles modules « %s » et « %s » ne peuvent pas être associésuid du nouvel utilisateurerreur inconnuedéverrouiller le comptedéverrouiller le groupele déverrouillage viderait le champ du mot de passeméthode de chiffrement du mot de passe non prise en chargel'utilisateur %jd n'a pas de noml'utilisateur %s n'a pas d'UIDutilisateur %s introuvablel'utilisateur n'a ni nom ni UIDl'objet utilisateur n'a pas d'attribut %sl'objet utilisateur a été créé sans « %s »ID utilisateur/groupe en cours d'utilisationnom d'utilisateur/de groupe en cours d'utilisationlibuser-0.60~dfsg/po/hi.po0000644000175000017500000013166412226342567015474 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Rajesh Ranjan , 2007 # Miloslav Trmač , 2011 # Rajesh Ranjan , 2009 # Rajesh Ranjan , 2004, 2005, 2006, 2008, 2009, 2011, 2012 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/fedora/language/" "hi/)\n" "Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "विशेषाधिकार हटाने में असफल.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "आंतरिक त्रुटि.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s की पहचान को बदलने के लिए %s अधिकृत नहीं है\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "अज्ञात उपयोक्ता संदर्भ" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd के लिए मूलभूत संदर्भ व्यवस्थित नहीं कर सकता\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM प्रारंभिकीकरण त्रुटि.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s के लिए सत्यापन असफल.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "आंतरिक PAM त्रुटि`%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "अज्ञात उपयोक्ता सत्यापित.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "उपयोक्ता बेमेल.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[विकल्प...] उपयोक्ता" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "तर्कों को विश्लेषण करने में त्रुटि: %s।\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "कोई उपयोक्ता नाम निर्दिष्ट नहीं किया गया.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr " %s के प्रारंभिकीकरण में त्रुटि: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s उपयोक्ता जीवंत नहीं है.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "लेखा तालकित है.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "लेखा तालकित नहीं है.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "न्यूनतम:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "अधिकतम:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "चेतावनी:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "निष्क्रिय:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "कभी नहीं" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "अंतिम बदलाव:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "शब्दकूट अंत:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "शब्दकूट निष्क्रिय:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "लेखा अंत:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s के लिए पुरानी जानकारी रूपांतरित करने में असफल: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[विकल्प...] [उपयोक्ता]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "कोई उपयोक्ता नाम निर्दिष्ट नहीं किया गया,uid %d के लिए नाम नहीं है.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s के लिए फिंगर जानकारी बदली जा रही है.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "पूरा नाम" #: apps/lchfn.c:146 msgid "Surname" msgstr "उपनाम" #: apps/lchfn.c:157 msgid "Given Name" msgstr "दिया नाम" #: apps/lchfn.c:167 msgid "Office" msgstr "कार्यालय" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "कार्यालय दूरभाष" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "घर दूरभाष" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ई-डाक पता" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "फिंगर जानकारी नहीं बदली गई: निवेश त्रुटि.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "फिंगर जानकारी बदली गई.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "फिंगर जानकारी नहीं बदली गई: %s।\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s के लिए शैल बदला जा रहा है.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "नया शैल" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "शैल नहीं बदला गया:%s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "शैल बदला गया.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[विकल्प...] समूह" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "कोई समूह नाम निर्दिष्ट नहीं किया गया.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "अमान्य समूह ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "समूह निर्माण असफल: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "%s समूह उपस्थित नहीं है.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "समूह %s को विलोपित नहीं कर सका: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L और -U दोनों निर्दिष्ट है. \n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s समूह के लिए शब्दकूट जमावट असफल: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s समूह को तालकित नहीं किया जा सकता: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s समूह को अतालकित नहीं किया जा सकता: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s समूह को परिवर्तित नहीं किया जा सका: %ss\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s देखने में त्रुटि: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "%s के प्रयोग से कोई समूह नाम निर्दिष्ट नहीं किया गया.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "कोई समूह नाम निर्दिष्ट नहीं किया गया, gid %d के लिए कोई नाम नहीं है.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "%s के प्रयोग से कोई उपयोक्ता नाम निर्दिष्ट नहीं किया गया.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s मौजूद नहीं है\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[विकल्प...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' खोलने में त्रुटि: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "`%s' के लिए लेखा बनाने में त्रुटि: लाइन सही तरीके से संरूपित नहीं किया गया.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "अमान्य उपयोक्ता ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 से लेखा बनाने के लिए इंकार कर रहा है\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' के लिए GID %jd से समूह बनाने में त्रुटि: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "ख़तरनाक घर निर्देशिका `%s' को %s के लिए तयशुदा रूप से प्रयोग के लिए अस्वीकृत कर रहा है\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s के लिए घर निर्देशिका बनाने में त्रुटि: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s के लिए प्रारंभिक शब्दकूट जमा करने में त्रुटि: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s के लिए उपयोक्ता लेखा बनाने में त्रुटि: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s के लिए शब्दकूट बदला जा रहा है.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "नया शब्दकूट" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "नया शब्दकूट (निश्चित करें)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "शब्दकूट मिल नहीं रहे,पुन:प्रयास करें.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "शब्दकूट बदलाव रद्द किया गया.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "विवरणकर्ता %d से फ़ाइल पढ़ने में त्रुटि.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s उपयोक्ता के लिए शब्दकूट जमावट त्रुटि: %s।\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s समूह के लिए शब्दकूट जमावट त्रुटि: %s।\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "शब्दकूट बदला गया.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd समूह उपस्थित नहीं है.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "`%s' समूह बनाने में त्रुटि: %s.\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "लेखा बनावट असफल: %s।\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s बनाने में त्रुटि: %s।\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "उपयोक्ता %s को विलोपित नहीं कर सका: %s।\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s के gid अंक नहीं है.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd के साथ कोई जीवंत समूह मौजूद है, नहीं हटा रहे हैं.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd समूह का कोई समूह नाम नहीं है.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "समूह %s को विलोपित नहीं कर सका: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "उपयोक्ता के लिए घर निर्देशिका हटाने में त्रुटि" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s उपयोक्ता के लिए शब्दकूट जमावट असफल: %s।\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%s उपयोक्ता को तालकित नहीं कर सका: %s।\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%s उपयोक्ता को अतालकित नहीं कर सका: %s।\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "चेतावनी: ID %jd के साथ समूह मौजूद नहीं है.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s उपयोक्ता को परिवर्तित नहीं कर सका: %s।\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%s समूह को परिवर्तित नहीं कर सका: %s।\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s की कोई पुरानी घर निर्देशिका नहीं है.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s की कोई नई घर निर्देशिका नहीं है.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s से %s को चलाने में त्रुटि: %s।\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "`%s' विन्यास फाइल खोल नहीं सका: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "`%s' विन्यास फाइल स्टेट नहीं कर सका: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "`%s' विन्यास फाइल काफी बड़ा है" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "`%s' विन्यास फाइल पढ़ नहीं सका: %s" #: lib/error.c:62 msgid "success" msgstr "सफल" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "विन्यास से मॉड्यूल असमर्थ किया गया" #: lib/error.c:66 msgid "generic error" msgstr "जेनेरिक त्रुटि" #: lib/error.c:68 msgid "not enough privileges" msgstr "अधिकार काफी नहीं हैं" #: lib/error.c:70 msgid "access denied" msgstr "अभिगम निषेध" #: lib/error.c:72 msgid "bad user/group name" msgstr "बुरा उपयोक्ता/समूह नाम" #: lib/error.c:74 msgid "bad user/group id" msgstr "बुरा उपयोक्ता/समूह id" #: lib/error.c:76 msgid "user/group name in use" msgstr "उपयोक्ता/समूह नाम प्रयोग में है" #: lib/error.c:78 msgid "user/group id in use" msgstr "उपयोक्ता/समूह id प्रयोग में है" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "टर्मिनल गुण से छेड़छाड़ करने में त्रुटि" #: lib/error.c:82 msgid "error opening file" msgstr "फाइल खुलने में त्रुटि" #: lib/error.c:84 msgid "error locking file" msgstr "फाइल तालकित करने में त्रुटि" #: lib/error.c:86 msgid "error statting file" msgstr "फाइल स्थाई करने में त्रुटि" #: lib/error.c:88 msgid "error reading file" msgstr "फाइल पढ़ने में त्रुटि" #: lib/error.c:90 msgid "error writing to file" msgstr "फाइल को लिखने में त्रुटि" #: lib/error.c:92 msgid "data not found in file" msgstr "फाइल में आंकडा नहीं मिला" #: lib/error.c:94 msgid "internal initialization error" msgstr "आंतरिक प्रारंभिकीकरण त्रुटि" #: lib/error.c:96 msgid "error loading module" msgstr "मॉड्यूल भारित करने में त्रुटि" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "मॉड्यूल में प्रतीक वियोजन करने में त्रुटि" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "लाइब्रेरी/मॉड्यूल संस्करण बेमेल" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "अतालाकित करना शब्दकूट क्षेत्र को खाली रखेगा." #: lib/error.c:105 msgid "invalid attribute value" msgstr "अवैध गुण मान" #: lib/error.c:107 msgid "invalid module combination" msgstr "अवैध मॉड्यूल संयोग" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "अज्ञात त्रुटि" #: lib/misc.c:240 msgid "invalid number" msgstr "अमान्य संख्या" #: lib/misc.c:254 msgid "invalid ID" msgstr "अमान्य ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "%s फलन प्रारंभिकीकरण, '%s' में नहीं है" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' में मॉड्यूल संस्करण मेल नहीं खाता" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' मौड्यूल `%s' को परिभाषित नहीं करता है" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "टर्मिनल गुण पढने में त्रुटि" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "टर्मिनल गुण जमावट में त्रुटि" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "टर्मिनल से पढ़ने में त्रुटि" #: lib/user.c:218 msgid "name is not set" msgstr "नाम नहीं जमा है" #: lib/user.c:223 msgid "name is too short" msgstr "नाम बहुत छोटा है" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "नाम काफी लंबा है (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "नाम में गैर-ASCII अक्षर समाहित हैं" #: lib/user.c:242 msgid "name contains control characters" msgstr "नाम में नियंत्रण संप्रतीक समाहित है" #: lib/user.c:249 msgid "name contains whitespace" msgstr "नाम में रिक्तस्थान समाहित है" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "नाम हाइफन से शुरू होता है" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "नाम में अनुचित अक्षर `%c' समाहित है" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "उपयोक्ता के पास %s कोई UID नहीं है." #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "समूह के पास %s कोई GID नहीं है" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "उपयोक्ता %jd के पास कोई नाम नहीं है" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "समूह %jd का कोई नाम नहीं है" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "उपयोक्ता के पास कोई नाम या UID नहीं है" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "समूह के पास न तो नाम है न GID." #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "ख़तरनाक घर निर्देशिका `%s' को तयशुदा रूप से प्रयोग के लिए अस्वीकृत कर रहा है" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s क्षेत्र का अवैध मूलभूत मान: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "%s फाइल तालकित करने में त्रुटि" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "मूलभूत सुरक्षा संदर्भ व्यवस्थित पा नहीं सका: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' का सुरक्षा संदर्भ पा नहीं सका: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "`%s' में मूलभूत सुरक्षा संदर्भ व्यवस्थित नहीं कर सका: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' का सुरक्षा संदर्भ निर्धारित नहीं कर सका: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' खोल नहीं सका: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' stat नहीं कर सका: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' बनाने में त्रुटि: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "`%s' बैकअप फाइल जीवंत है और एक नियमित फाइल नहीं है" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' के स्वामित्व बदलाव में त्रुटि: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s' मोड बदलने में त्रुटि: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' पढ़ने में त्रुटि: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' लिखने में त्रुटि: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "बैकअप फाइल आकार मेल नहीं खाया" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s मान `%s': `:' नहीं अनुमति प्राप्त" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' से पढ़ नहीं सका: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "फाइल में प्रविष्टि पहले से है" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s' को लिख नहीं सका: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "एंटिटी वस्तु का %s गुण नहीं है " #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "फाइल में विरोधी नाम के साथ प्रविष्टि पहले से मौजूद है" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' गोपित कूटशब्द में अनुमति प्राप्त नहीं" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "शब्दकूट गोपन में त्रुटि " #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' और `%s' मॉड्यूल को जोड़ा नहीं जा सकता है" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "सुपरयूजर विशेषाधिकार से निष्पादन नहीं कर रहा है" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "कोई शेडो फाइल नहीं है -- असमर्थ कर रहा है" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "`%s' सेवा के लिए `%s' क्षेत्र में kadm5 सर्वर से संबंधित करने में त्रुटि: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "करबरोस लाइब्रेरी प्रारंभिकीकरण त्रुटि" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "करबरोस के लिए `%s' उपयोक्ता नाम पद व्याख्या करने में त्रुटि" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "एंटिटी संरचना में %s या %s गुण नहीं हैं" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "एंटिटी में %s या %s गुण नहीं हैं" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "एंटिटी की बनावट %s या %s गुण के बिना की गई " #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "करबरोस से `%s' के लिए जानकारी पढ़ने में त्रुटि" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "एंटिटी में %s गुण नहीं है" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' के लिए शब्दकूट जमावट त्रुटि" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "करबरोस क्षेत्र" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "करबरोस प्रधान प्रशासक" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "प्रधान प्रशासक के लिए करबरोस शब्दकूट" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap क्रमादेश प्रारंभिकीकरण त्रुटि" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "%d संस्करण को LDAP प्रोटोकॉल सेट नहीं कर सका " #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP सर्वर से TLS संबंधित नहीं कर सका" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP सर्वर से जुड नहीं सका" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP सर्वर से जुड नहीं सका, पहले `%s' रूप में प्रयास करें: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "उपयोक्ता वस्तु का %s गुण नहीं था" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "उपयोक्ता वस्तु को `%s' के बिना बनाया गया था" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP निर्देशिका प्रविष्टि बनाने में त्रुटि: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP निर्देशिका प्रविष्टि रूपांतरित करने में त्रुटि: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP निर्देशिका प्रविष्टि के पुनर्नामकरण में त्रुटि: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "वस्तु में %s गुण नहीं था" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP निर्देशिका प्रविष्टि को हटाने में त्रुटि: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "वस्तु में %s गुण नहीं है" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "असमर्थित कूटशब्द गोपन योजना" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP निर्देशिका में ऐसे कुछ वस्तु नहीं है" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "कोई `%s' गुण नहीं मिला" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s के लिए LDAP निर्देशिका में शब्दकूट जमावट त्रुटि: %s " #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP सर्वर नाम " #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP खोज आधार DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP बंधन DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP बंधन शब्दकूट" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL उपयोक्ता" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL प्राधिकरण उपयोक्ता" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "%s उपयोक्ता बनाने में सायरस SASL त्रुटि" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "%s उपयोक्ता हटाने में सायरस SASL त्रुटि" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "%s सायरस SASL प्रारंभिकीकरण त्रुटि" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "उपयोक्ता के लिए घर निर्देशिका बनाने में त्रुटि" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "उपयोक्ता के लिए घर निर्देशिका हटाने में त्रुटि" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "उपयोक्ता के लिए घर निर्देशिका चलाने में त्रुटि" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s प्रारंभिकीकरण त्रुटि: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "अमान्य ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID %jd से समूह की खोज हो रही है.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s नामित समूह के लिए खोज हो रही है.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID %jd से उपयोक्ता के लिए खोज हो रही है.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s नामित उपयोक्ता के लिए खोज हो रही है.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "प्रविष्टि नहीं मिली.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "प्रांप्ट सफल हुआ.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "प्रांप्ट विफल हुआ.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "मूलभूत उपयोक्ता वस्तु वर्गों:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "मूलभूत उपयोक्ता गुण नाम:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "मूलभूत उपयोक्ता गुण ले रहे हैं:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "उपयोक्ता संरचना प्रतिलिपि कर रहा है:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s की कोई घर निर्देशिका नहीं है.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s हटाने में त्रुटि: %s।\n" libuser-0.60~dfsg/po/ta.po0000644000175000017500000013442212226342570015465 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Arun Prakash , 2012 # Felix , 2006 # Felix I , 2011, 2012 # I felix , 2007 # Jayaradha N , 2004 # Jayaradha N , 2004, 2005, 2006 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Tamil (http://www.transifex.com/projects/p/fedora/language/" "ta/)\n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "சலுகைகள் வழங்கபடாதது கைவிடப்படுகிறது.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "உள்ளார்ந்த பிழை.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s க்கு %s இன் தகவலை மாற்ற அனுமதி இல்லை\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "தெரியாத பயனர் தொடர்பு" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd முன்னிருப்பு சூழலை அமைக்க முடியவில்லை\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM துவக்குவதில் பிழை.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s உறுதிப்படுத்தல் தவறானது.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "உள்ளார்ந்த PAM பிழை `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "தெரியாத பயனர் அங்கீரித்தல்.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "பயனர் பொறுத்தம் இல்லை.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] பயனர்" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "அளவுருக்கள் பகுப்பதில் பிழை: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "பயனர் பெயர் எதுவும் குறிப்பிடப்படவில்லை.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%sஐ துவங்குவதில் பிழை: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "பயனர்%s இல்லை.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "கணக்கு பூட்டப்பட்டது.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "கணக்கு பூட்டப்படவில்லை.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "குறைந்தபட்சம்:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "அதிகபட்சம்:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "எச்சரிக்கை:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "செயலிழக்கப்பட்டது:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "எப்போதும் இல்லை" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "கடைசி மாற்றம்:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "கடவுச்சொல் முடிவுற்றது:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "செயலிழக்கப்பட்ட கடவுச்சொல் :\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "கணக்கு முடிவுற்றது:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "பழைய செய்தியை %sக்கு மாற்ற முடியவில்லை: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "பயனர் பெயர் எதுவும் குறிப்பிடவில்லை, பயனர் குறியீடு %dக்கு பெயர் இல்லை.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%sக்கு தகவல் மாற்றப்படுகிறது.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "முழுப்பெயர்" #: apps/lchfn.c:146 msgid "Surname" msgstr "துணைப்பெயர்" #: apps/lchfn.c:157 msgid "Given Name" msgstr "கொடுத்த பெயர்" #: apps/lchfn.c:167 msgid "Office" msgstr "அலுவலகம்" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "அலுவலக தொலைபேசி " #: apps/lchfn.c:185 msgid "Home Phone" msgstr "வீட்டு தொலைபேசி " #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "மின்அஞ்சல் முகவரி" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "தகவல் மாற்றவில்லை: உள்ளீடு பிழை.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "தகவல் மாற்றப்பட்டது.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "தகவல் மாற்ற முடியவில்லை.%s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%sக்கு ஷெல் மாற்றப்படுகிறது.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "புதிய ஷெல் " #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "ஷெல் மாற்றப்படவில்லை: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "ஷெல் மாற்றப்பட்டது.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] குழு" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "குழுப் பெயர் எதுவும் குறிப்பிடவில்லை\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "தவறான குழு ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "குழு உருவாக்க முடியவில்லை: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "குழு %s இல்லை.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "குழு %sஐ அழிக்க முடியவில்லை: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "இரண்டும் -L மற்றும் -U குறிப்பிடப்பட்டது.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "குழு %sக்கான கடவுச்சொல்லை அமைக்க முடியவில்லை: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "குழு%s ஐ பூட்ட முடியவில்லை: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "குழு %s ஐ பூட்டு நீக்க முடியவில்லை: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "குழு %s ஐ மாற்ற முடியவில்லை: %s.\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%sஇல் பிழை தேடுதல்: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "%s ஐ பயன்படுத்தி, குழுப் பெயர் குறிப்பிடவில்லை .\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "குழுப் பெயர் குறிப்பிடப்படவில்லை, குழு குறியீடுக்கு பெயர் இல்லை%d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "%s பயன்படுத்தி, பயனர் பெயர் எதுவும் குறிப்பிடப்படவில்லை.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s இல்லை.\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' ஐ திறப்பதில் பிழை: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "'%s'க்கு கணக்கு உருவாக்குவதில் பிழை. வரி ஒழுங்கின்றி வடிவமைக்கப்பட்டுள்ளது.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "தவறான பயனர் குறியீடு %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 உடன் கணக்கு உருவாக்க மறுக்கப்படுகிறது.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s'க்கு GID %jd: உடன் குழு உருவாக்கவதில் பிழை %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "அபாயகரமான இல்ல அடைவு `%s' க்கு %sஐ முன்னிப்பாக பயன்படுத்த மறுக்கிறது\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%sக்கு இல்ல அடைவை உருவாக்குவதில் பிழை: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%sக்கு ஆரம்ப கடவுச்சொல் அமைப்பதில் பிழை: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%sக்கு பயனர் கணக்கு உருவாக்குவதில் பிழை: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%sக்கு கடவுச்சொல்லை மாற்றுகிறது.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "புதிய கடவுச்சொல்" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "புதிய கடவுச்சொல் (உறுதிப்படுத்துதல்)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "கடவுச்சொல் பொருந்தவில்லை. மீண்டும் முயற்சி செய்யவும்.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "மாற்றிய கடவுச்சொல் ரத்து செய்யப்பட்டது.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Error reading from file descriptor %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "பயனர் %sக்கு கடவுச்சொல் அமைப்பதில் பிழை: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "குழு %sக்கு கடவுச்சொல் அமைப்பதில் பிழை: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "கடவுச்சொல் மாற்றப்பட்டது.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "குழு %jd இல்லை \n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "குழு `%s' அமைப்பதில் பிழை: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "கணக்கு உருவாக்க முடியவில்லை: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%sஐ உருவாக்குவதில் பிழை: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "பயனர் %sஐ அழிக்க முடியாது: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%sக்கு ஒரு gid எண் இல்லை.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "%jd GID எனக்கொண்ட குழு இல்லை, நீக்கப்படவில்லை.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd உடன் உள்ள குழுவுக்கு குழுப்பெயர் இல்லை.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "குழு %sஐ அழிக்க முடியவில்லை: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "பயனருக்காக இல்ல அடைவை நீக்குவதில் பிழை" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "பயனர் %sக்கு கடவுச்சொல் அமைக்க முடியவில்லை: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "பயனர்%s ஐ பூட்ட இயலவில்லை: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "பயனர்%s இன் பூட்டை நீக்க முடியவில்லை: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "எச்சரிக்கை: குழு குறியீடு %jd இல்லை.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "பயனர்%s ஐ மாற்ற முடியவில்லை: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "குழுவை %s ஐ மாற்ற முடியவில்லை: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "பழைய இல்ல அடைவு எதுவும் இல்லை %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%sக்கு புதிய இல்ல அடைவு இல்லை.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr " %s இலிருந்து %sக்கு நகர்த்துவதில் பிழை: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "கட்டமைப்பு கோப்பு `%s'ஐ திறக்க முடியவில்லை: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "கட்டமைப்பு கோப்பு `%s'ஐ ஆரம்பிக்க முடியவில்லை: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "கட்டமைப்பு கோப்பு `%s' மிகப் பெரியது" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "கட்டமைக்கப்பட்ட கோப்பு `%s'ஐ வாசிக்க முடியவில்லை: %s" #: lib/error.c:62 msgid "success" msgstr "வெற்றி" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "கட்டமைப்பால் தொகுதி செயல்நீக்கப்பட்டது" #: lib/error.c:66 msgid "generic error" msgstr "உற்பத்தி பிழை" #: lib/error.c:68 msgid "not enough privileges" msgstr "போதிய சலுகைகள் இல்லை" #: lib/error.c:70 msgid "access denied" msgstr "அனுமதி மறுக்கப்பட்டது" #: lib/error.c:72 msgid "bad user/group name" msgstr "தவறான பயனர்/குழுப் பெயர்" #: lib/error.c:74 msgid "bad user/group id" msgstr "தவறான பயனர்/குழு குறியீடு" #: lib/error.c:76 msgid "user/group name in use" msgstr "பயனர்/குழு பெயர் பயனில் உள்ளது" #: lib/error.c:78 msgid "user/group id in use" msgstr "பயனர்/குழு குறியீடு பயனில் உள்ளது" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "முனையம் கூறுகளை கணக்கிடும் போது பிழை" #: lib/error.c:82 msgid "error opening file" msgstr "கோப்பினை திறக்கும் போது பிழை" #: lib/error.c:84 msgid "error locking file" msgstr "கோப்பினை பூட்டும் போது பிழை" #: lib/error.c:86 msgid "error statting file" msgstr "கோப்பின் நிலையில் பிழை" #: lib/error.c:88 msgid "error reading file" msgstr "கோப்பினை வாசிப்பதில் பிழை" #: lib/error.c:90 msgid "error writing to file" msgstr "கோப்பில் எழுதுவதில் பிழை" #: lib/error.c:92 msgid "data not found in file" msgstr "கோப்பில் தகவல் இல்லை" #: lib/error.c:94 msgid "internal initialization error" msgstr "உள்ளார்ந்த துவக்க பிழை" #: lib/error.c:96 msgid "error loading module" msgstr "தொகுதி ஏற்றும் போது பிழை" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "தொகுதியில் சின்னத்தை சரி செய்யும் போது பிழை" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "நூலகம்/தொகுதி பதிப்பு பொறுத்தம் இல்லை" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "பூட்டு நீக்குதல் கடவுச்சொல் புலத்தை வெறுமையாக்கும்" #: lib/error.c:105 msgid "invalid attribute value" msgstr "தவறான அளவுரு மதிப்புதவறான அற" #: lib/error.c:107 msgid "invalid module combination" msgstr "தவறான தொகுதி கலவைதவறான " #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "தெரியாத பிழை" #: lib/misc.c:240 msgid "invalid number" msgstr "தவறான எண்" #: lib/misc.c:254 msgid "invalid ID" msgstr "தவறான குறியீடு" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "`%s'இல் துவக்க செயல்பாடு %s இல்லை" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s'இல் தொகுதி பதிப்பு பொருந்தவில்லை" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "தொகுதி `%s' யானது `%s'ஐ குறிப்பிடவில்லை" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "முனையம் கூறுகளை வாசிப்பதில் பிழை" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "முனையம் கூறுகளை அமைப்பதில் பிழை" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "முனையத்திலிருந்து வாசிப்பதில் பிழை" #: lib/user.c:218 msgid "name is not set" msgstr "பெயர் அமைக்கவில்லை" #: lib/user.c:223 msgid "name is too short" msgstr "பெயர் மிகச் சிறியதாக உள்ளது" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "பெயர் மிக நீளமாக உள்ளது (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "பெயர் ASCII அல்லாத எழுத்தை கொண்டுள்ளது" #: lib/user.c:242 msgid "name contains control characters" msgstr "பெயர் கட்டுப்பாட்டு எழுத்துகளை கொண்டுள்ளது" #: lib/user.c:249 msgid "name contains whitespace" msgstr "பெயர் வெற்றிடத்தை கொண்டுள்ளது" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "பெயர் இடைக்கோட்டினால் ஆரம்பமாகிறது" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "பெயர் தவறான எழுத்து `%c' ஐ கொண்டுள்ளது" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "பயனர் %sம் UID இல்லை" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "குழு %sம் GID இல்லை" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "பயனர் %jd க்கு பெயர் இல்லை" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "குழு %jd க்கு பெயர் இல்லை" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "பயனரிடம் பெயர் அல்லது UID இல்லை" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "குழுவில் ஒரு பெயர் அல்லது ஒரு GID இல்லை" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "அபாயகரமான இல்ல அடைவு `%s'ஐ முன்னிப்பாக பயன்படுத்த மறுக்கிறது" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "புலத்தின் தவறான முன்னிருப்பு மதிப்பு %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "கோப்பினை பூட்டுவதில் பிழை : %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "முன்னிருப்பு பாதுகாப்பு சூழலை பெற முடியவில்லை:%s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s'இன் பாதுகாப்பு சூழலை பெற முடியவில்லை: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "`%s' க்கு முன்னிருப்பு பாதுகாப்பு சூழலை அமைக்க முடியவில்லை: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s'இன் பாதுகாப்பு சூழலை குறிப்பிட முடியவில்லை: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' ஐ திறக்க முடியவில்லை: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "'%s' வரையறுக்க முடியவில்லை: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s'ஐ உருவாக்குவதில் பிழை : %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "பின்சேமிப்பு கோப்பு %s' உள்ளது, ஆனால் அது இயல்பான கோப்பில்லை" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' இன் உரிமையாளரை மாற்றுவதில் பிழை: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "'%s' பிழை மாற்றும் விதம்: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "வாசிப்பதில் பிழை `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "'%s' எழுதுவதில் பிழை :%s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "பின்சேமிப்பு கோப்பின் அளவு தவறானது" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s மதிப்பு `%s': `:' அனுமதிக்கப்படுவதில்லை" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s'இலிருந்து வாசிக்க முடியவில்லை: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "உள்ளீடு ஏற்கனவே கோப்பில் உள்ளது" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s'க்கு எழுத முடியவில்லை: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "உருப்படியில் %s கூறுகள் இல்லை" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "முரண்படும் பெயருடன் உள்ள உள்ளீடு ஏற்கனவே கோப்பில் உள்ளது" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' மறைகுறியாக்கப்பட்ட கடவுச்சொல்லில் அனுமதிக்கப்படுவதில்லை" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "கடவுச்சொல்லை குறிமுறையாக்குவதில் பிழை" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' மற்றும் `%s' தொகுதிகளை கலக்க முடியாது" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "சிறப்பு பயனர் சலுகைகளை செயல்படுத்தவில்லை" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "நிழல் கோப்பு இல்லை - செயல்நீக்கப்படுகிறது" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "realm`%s' இல் சேவை `%s' காக kadm5 சேவையகத்தில் இணைப்பதில் பிழை: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "kerberos நுலகத்தின் துவக்குவதில் பிழை" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "kerberosக்கு `%s' பயனர் பெயர் பகுப்பதில் பிழை" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "உருப்படி வடிவத்தில் %s அல்லது %s கூறுகள் இல்லை" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "உருப்படியில் %s அல்லது %s கூறுகள் இல்லை" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "உருப்படி %s அல்லது %s கூறுகளால் உருவாக்கப்படவில்லை" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "kerberos இலிருந்து `%s' க்காக தகவல் வாசிப்பதில் பிழை" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "உருப்படியில் %s கூறுகள் இல்லை" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s'க்கு கடவுச்சொல் அமைப்பதில் பிழை" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos நிர்வாக தலைமை" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos கடவுச்சொல் நிர்வாக தலைமை" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap நூலகத்தை துவக்குவதில் பிழை" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP நெறிமுறையைப் பதிப்பு %dக்காக அமைக்க முடியவில்லை" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "TLS யுடன் LDAP சேவையகத்தை கேட்க முடியாது" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP சேவையகத்துடன் பிணைக்க முடியவில்லை" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP சேவையகத்துடன் பிணைக்க முடியவில்லை, முதல் முயற்சி `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "பயனர் பொருளில் %s கூறு இல்லை" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "பயனர் பொருள் `%s' இல்லாமல் உருவாக்கப்பட்டது" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP அடைவு உள்ளீட்டை உருவாக்கும் போது பிழை: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP அடைவு உள்ளீட்டை மாற்றும் போது பிழை: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP அடைவு உள்ளீடுகளை பெயர் மாற்றுவதில் பிழை: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "பொருளில் %s கூறுகள் இல்லை" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP அடைவு உள்ளீட்டை நீக்கும் போது பிழை: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "பொருளுக்கு %s கூறு இல்லை" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "துணைபுரியாத கடவுச்சொல் மறைக்குறியாக்க திட்டம்" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP அடைவில் பொருள் எதுவும் இல்லை" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "`%s' கூறு இல்லை" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "LDAP அடைவில் %s க்கு கடவுச்சொல் அமைப்பதில் பிழை: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP சேவையக பெயர்" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP தேடல் தளம் DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP பிணைத்தல் DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP பிணைத்தல் கடவுச்சொல்" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL பயனர்" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL அனுமதிக்கப்பட்ட பயனர்" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL பயனர் உருவாக்குவதில் பிழை: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL பயனரை நீக்குவதில் பிழை: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL துவக்குவதில் பிழை: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "பயனருக்காக இல்ல அடைவை உருவாக்குவதில் பிழை" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "பயனருக்காக இல்ல அடைவை நீக்குவதில் பிழை" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "பயனருக்காக இல்ல அடைவை நகர்த்துவதில் பிழை" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "துவக்குவதில் பிழை %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "தவறான குறியீடு %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "குறியீடு %jd ஐ கொண்ட குழுவை தேடுகிறது.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "குழுப்பெயர் %sஐ தேடுகிறது.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "%jd பயனர் குறியீட்டை தேடுகிறது .\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "" "பயனர் பெயர் %sஐ தேடுகிறது.\n" "\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "உள்ளீடு இல்லை.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "வெற்றிகரமாக கண்டுபிடித்தது.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "கண்டுபிடிக்க முடியவில்லை.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "முன்னிருப்பு பயனர் பொருள் வகுப்புகள்:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "முன்னிருப்பு பயனர் கூறுகளின் பெயர்கள்:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "முன்னிருப்பு பயனர் கூறுகளை பெறுகிறது :\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "பயனர் வடிவத்தை நகலெடுக்கிறது:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%sஇல் இல்ல அடைவு இல்லை.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "பிழை %sஐ நீக்குகிறது : %s.\n" libuser-0.60~dfsg/po/ja.gmo0000644000175000017500000007421312226342604015616 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<*>>L>/C? s?5?1?4?%1@DW@O@0@.ALA&lA4A1AA&B8(BaB4wB9B$B CU)C)COCMCMGDGDGD%ECEaE|E1E E#E FX/FFFMFUG9sG G(G/GB'H8jH(H<H/ I9III'YI/II'I6I9J9NJ6J5J?J)5K/_KBKK KKLL8L9ILLL L2LM"M 7MXMuMMMM MM M3M-N4N;NBNUNkNAN4N1OH2OF{OCOFP4MP1P PPP PP4QLQRlQQQ7QWRcqR R,R& S,3S&`SSSS%S*S9T<KT6TBT)U.,U [U5hUUUU!U@ V$JVfoV3V+ W+6W3bW-W!W-W8XcMXCX7X7-YKeY=Y?YI/Z?yZZ$ZQZ0L[!}[*['[9[3,\K`\E\<\0/]?`]']c]7,^Gd^I^P^GG_6_N_V`6l`Z`K`?Ja$aGa/a$'b!Lb@nb6bNbH5c$~cMc?c<1dPnd?dBdHBeHe<eAfISf9f*fBg3Egyggg)g0g1h$Oh>thh6h* i4i Pi]i0yii=iEi>jjk-"k-Pk!~k!k'k*k9l9Ol2l6l*l-m.Lm{m$m#mm0m!-nOn,nn-nDnSobo6{o]o4p4EpUzp3p$q-)q0Wq6q0qQqQBr<r$r&r#s'As!is]s0s5t*Pt'{t!t*t!tuu$5uDZuu'u'u' vE4vHzv3v0v1(w>Zw@wEw5 x4Vx0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Japanese (http://www.transifex.com/projects/p/fedora/language/ja/) Language: ja MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; %s には GID 番号がありません。 %s は存在しません。 %s は %s の finger 情報を変更するのに認可されていません %s 値 `%s': `:' は許可されていませんアカウント期限切れ: %s アカウントの作成に失敗しました: %s。 アカウントはロックされています。 アカウントはロックされていません。 %s の認証に失敗しました。 -L と -U の両方のオプションが指定されています。 /etc/passwd 用のデフォルトのコンテキストが設定できません %s用のfinger情報を変更しています。 %s のパスワード変更中にエラー。 %s 用にシェルを変更中 ユーザー構造体をコピー中: ユーザーの作成中に Cyrus SASL エラー: %sユーザーの削除で Cyrus SASL エラー: %s日数デフォルトユーザー属性名: デフォルトユーザーオブジェクトクラス: メールアドレスエントリーは見つかりませんでした。 エラー: `%s' のモードを変更できません: %s `%s' の所有者変更に失敗: %s%s の作成に失敗: %s。 %s 用のアカウント作成に失敗: 不正な書式が含まれています。 グループ `%s' の作成に失敗: %s %s 用にGID %jd でグループ作成中にエラーが発生しました: %s %s 用の新規ホームディレクトリー作成に失敗しました: %s %s のメールスプールの作成中にエラーが発生しました: %s メールスプールの作成中にエラーが発生しました: %s %s 用のユーザーアカウント作成に失敗しました: %s。 %s の初期化に失敗: %s %s の初期化に失敗: %s PAM の初期化に失敗 %s の検索に失敗: %s %s を %s に移動できませんでした: %s %s の読み込みエラー: %s 引数の構文解析に失敗: %s `%s'の読み込みに失敗: %sエラー: ファイルディスクリプター %d から読み込みできません。 メールスプールの削除中にエラーが発生しました: %s%s 用の初期パスワード設定中にエラーが発生しました: %s グループ %s のパスワード設定中にエラーが発生しました: %s 。 ユーザー %s のパスワード設定に失敗: %s。 `%s'の書き込みに失敗: %s特権の停止に失敗しました。 %s の情報の更新に失敗しました: %s グループ %s のパスワード設定に失敗しました: %s ユーザーのパスワード設定に失敗 %s: %s。 Finger情報が変更されました。 Finger情報は変更されていません: 入力エラー Finger情報は変更されていません: %s フルネームGECOS の情報新しいユーザーのゲコス情報デフォルトユーザー属性を取得中: 名グループ %jd は存在しません グループ %s は削除できませんでした: %s グループ %s は削除できませんでした: %s。 グループ %s はロックされませんでした: %s グループ %s は修正できませんでした: %s グループ %s は修正できませんでした:%s グループ %s はロック解除できませんでした: %s グループ %s は存在しません。 グループの作成に失敗しました: %s GID %jd のグループにはグループ名がありません。 自宅電話番号無効: %ld 無効化: なし 内部PAMエラー `%s' 内部エラーです。 無効な ID %s 領域 %s の値は無効なデフォルト値です : %s無効なグループID: %s 無効なユーザーID %s kerberos管理プリンシパル管理プリンシパルのkerberosパスワードkerberosレルムLDAP バインド DNLDAP バインドパスワードLDAP SASL 認証ユーザーLDAP SASL ユーザーLDAP 検索ベース DNLDAP サーバー名最終更新: %s 最大: %ld 最大値: なし 最小: %ld 次回ログイン時に必ずパスワード変更名前番号なし新規のシェル新規パスワード新規パスワード(確認)グループ名は未指定です。gid %d の名前は未設定 グループ名は未指定です。%s を使用中 グループ名は指定されていません。 GID %jd のグループが存在しないため、削除しません。 %s には新しいホームディレクトリーはありません。 %s には古いホームディレクトリーがありません。 ユーザー名が未指定で、uid %dの名前がありません。 ユーザー名が未指定です。%s を使用中 ユーザー名が指定されていません。 勤務先勤務先電話番号パスパスワード期限切れ: %s パスワード無効: %s パスワード変更は取り消されました。 パスワード変更済み。 パスワードが一致しません。もう一度やり直してください。 指示失敗。 指示成功。 UID:0 でのアカウント作成を拒否中です。 デフォルトで危険なホームディレクトリ `%s' の使用を拒否中ですデフォルトで %s 用の危険なホームディレクトリー %s の使用を拒否中です 文字列名前が %s のグループを検索中。 ID %jd のグループを検索中。 名前が %s のユーザーを検索中。 ID %jd のユーザーを検索中。 シェル変更済み シェル変更不可能: %s 姓不明なユーザー認証です。 不明なユーザーのコンテキストユーザー %s は削除できませんでした: %s。 ユーザー %s はロックできませんでした: %s。 ユーザー %s は編集できませんでした: %s ユーザー %s はロック解除できませんでした: %s。 ユーザー %s は存在しません。 ユーザーが一致しませんでした。 警告: %ld 警告: グループ ID %jd は存在しません。 [オプション...][OPTION...] [ユーザー][OPTION...] グループ[オプション...] ユーザー`:' は暗号化パスワードでは許可されていませんアクセスが拒否されましたバックアップファイル `%s' は存在しますが通常のファイルではありません。バックアップファイルサイズの不一致正しくないユーザー/グループ ID正しくないユーザー/グループ名グループを指定された名前に変更するユーザーのログイン名を変更する新しいユーザーの一般名設定ファイル `%s' が大きすぎますLDAP サーバーとバインドできませんでしたLDAP サーバーとバインドできませんでした。最初に `%s' として試みます: %sLDAP サーバーと TLS ネゴシエートできませんでした設定ファイル `%s' を開けませんでした: %s設定ファイル `%s' を開けませんでした: %sLDAP プロトコルをバージョン %d に設定できませんでした設定ファイル `%s' を stat できませんでした: %s`%s' のセキュリティー情報を決定できません: %sデフォルトのセキュリティー情報を取得できません: %s`%s' のセキュリティー情報を取得できません: %s`%s' を開けません: %s`%s' から読みこめません: %s`%s' にデフォルトのセキュリティー情報を設定できません: %s`%s' の stat 情報を取得できません: %s`%s' に書き込めません: %sシステムグループを作成しますシステムユーザーを作成するデータはファイルに見つかりませんでしたパスワード変更日 (1970/1/1 からの日数)ユーザーに警告を開始する、パスワード失効までの日数新しいユーザー向けファイルを持つディレクトリーユーザーと同じ名前のグループを作成しないホームディレクトリーを作成しないユーザーのホームディレクトリーを作成しないメールスプールを作成しないユーザーがプライベートグループを持っていても、それを削除しません。エンティティーには %s 属性はありませんエンティティーには %s および %s 属性はありません。エンティティーオブジェクトには %s 属性はありませんエンティティー構造体には %s および %s 属性はありません。エンティティーは %s や %s 属性なしで作成されましたエントリーはファイルにすでにあります競合する名前のエントリーはすでにファイル内にありますレルム `%s' のサービス `%s' で kadm5 サーバーに接続できません: %s`%s' の作成中にエラーが発生しました: %sLDAP ディレクトリーエントリーの作成中にエラーが発生しました: %sユーザー用のホームディレクトリー作成に失敗しましたパスワードの暗号化中にエラーが発生しましたCyrus SASL の初期化に失敗: %skerberosライブラリーの初期化でエラーが発生しましたLDAP ライブラリーの初期化でエラーモジュールのロードに失敗ファイルのロックに失敗ファイルのロック中にエラーが発生しました: %s端末属性の取得にエラーが発生しましたLDAP ディレクトリーエントリーを変更するときにエラー: %sユーザーのホームディレクトリー移動に失敗しましたファイルの読み込みに失敗kerberosのユーザー名 `%s' で構文解析エラーが発生しましたファイルの読み込み中にエラーが発生しました端末から読み込み中にエラーが発生しましたkerberosから `%s' の情報を読み込み中にエラーが発生しました端末属性の読み込み中にエラーが発生しましたLDAP ディレクトリーエントリーの削除でエラー: %sユーザーのホームディレクトリー削除に失敗しましたLDAP ディレクトリーエントリーの名前変更でエラー: %sモジュールのシンボル解決に失敗しました。`%s' のパスワード設定中にエラーが発生しました%s の LDAP ディレクトリーのパスワード設定でエラー: %s端末属性の設定中にエラーが発生しましたファイルの stat 情報取得に失敗ファイルへの書き込み中にエラーが発生しましたユーザー情報レコードを持つファイル一般エラー新しいグループの GID新しいユーザーの名グループ %jd にはありません。グループ %s には GID がありません。グループ %s が見つかりませんでした新しいユーザーのグループグループには名前もしくは GID がありません。ホームディレクトリー新しいユーザーのホームディレクトリー新しいユーザーの自宅電話番号内部の初期化に失敗無効な ID無効な属性の値です無効なモジュールの組み合わせです無効な番号ライブラリー/モジュールバージョンの不一致ユーザーのエージングパラメーターを一覧表示する指定された名前のユーザーがメンバーであるグループの代わりに、指定された名前のグループのメンバーを一覧表示します追加する管理者の一覧削除する管理者の一覧追加するグループメンバーの一覧削除するグループメンバーの一覧アカウントをロックするグループをロックしますパスワード変更後の有効日数パスワード変更間隔の最小日数モジュール `%s' が `%s' を定義していませんモジュールが設定で無効になっています。`%s' のモジュールバージョンの不一致ホームディレクトリーの内容を移動する名前が制御文字を含んでいます名前に無効な文字 `%c' があります名前に ASCII 以外の文字があります名前に空白があります名前が設定されていません名前が長すぎます (%zu > %d)名前が短すぎます名前がハイフンから始まっています新しい暗号文パスワード新しい平文パスワード`%s' 属性は見つかりませんでした`%s' の関数 %s で初期化できませんshadow ファイルはありません -- 無効になっていますLDAP ディレクトリーにはそのようなオブジェクトはありません権限がありませんスーパーユーザー特権で実行できませんパスワード失効後、アカウントが無効であるとみなされるまでの日数オブジェクトには %s 属性はありませんオブジェクトには %s 属性はありません名前かつ/または UID/GID によりメンバー情報のみを一覧表示するパスワード失効日 (1970/1/1 からの日数)ユーザーの平文パスワードグループに用いる平文パスワードユーザーのハッシュ済みパスワードグループに用いるハッシュ化パスワードすべての情報について入力確認する指定された記述子から新しい暗号パスワードを読み込みます指定された記述子から新しい平文パスワードを読み込みますユーザーのホームディレクトリーを削除する新しいユーザーの部屋番号グループの GID を設定しますユーザーの UID を設定するユーザーの一般名を設定するユーザーの名を設定するユーザーのパスワードの代わりにグループのパスワードを設定しますユーザーの自宅電話番号を設定するユーザーのプライマリー GID を設定するユーザーの部屋番号を設定するユーザーのシェルを設定するユーザーの姓を設定するユーザーの電話番号を設定する新しいユーザーのシェル成功新しいユーザーの姓新しいユーザーの電話番号`%s' と `%s' のモジュールは組み合わせできません。新しいユーザーの UID不明なエラーが発生しましたアカウントをロック解除するグループをロック解除しますロックを解除するとパスワード領域は空になりますサポートされていないパスワード暗号化スキームですユーザー %jd には 名前がありません。ユーザー %s には UID がありません。ユーザー %s が見つかりませんでしたユーザーには名前もしくは UID がありません。ユーザーオブジェクトには %s 属性はありませんユーザーオブジェクトは `%s' なしで生成されましたユーザー/グループ ID は使われていますユーザー/グループ名は使われていますlibuser-0.60~dfsg/po/zh_TW.gmo0000644000175000017500000006162512226342605016263 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<#> >,>$?@?T?p????,??@2@J@/j@/@@@@A"A+6A.bAAEA&A>B+]B+B$B4B"C%2C!XCzC,C&C$C"D/6D#fD.D1D1D"E@E(WE%E+EE2E"#FFF MFZF%wFFFFFFG/G$OGtGG'G GGGGH )H!7HYHpHH#HH HHHI#I7ILI`IrII!IIII I II8I.+JZJ3wJJJ5J1KMK mK wKKKKKK"KKL$!L5FLA|LL LL#M"*MMMaMwM(~MM"M"M"N.)NXNsNN*N NNNN(O 7O,DOqOOOOOP!P9PIXP&P"P"P+Q+;Q(gQ&Q(QQQ+R"CRfRRRR8R-R!)S0KS|S!SSBS T$TBT#_T&TT-TOT"AU,dU*UU)U+V'.VVVrV V$V,V*W,W9HWW!W3W$W,X*FX5qX'X&X6X$-Y!RYtY$Y YYYYZZ*Z@Z `ZjZ!ZZ ZZZZ[[Q=[[[[[ \ \!\!A\c\\\\\ \ ]*]=]P] h]u]]]]%]#]$^ ;^'H^9p^^^2^, _8_Q_p_$__-_-_)`E`a`u```*`$`a1aPaiaaaaaa%ab *b7bGb!Wbybbbb"bc,$c Qc"rc0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora/language/zh_TW/) Language: zh_TW MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; %s 沒有群組 ID (gid) 號碼。 %s 不存在 並未授權 %s 修改 %s 的 finger 資訊 %s 值「%s」:不允許有「:」帳號過期: %s 帳號建立失敗:%s。 帳號已鎖住。 帳號未鎖住。 %s 認證時失敗。 -L 與 -U 兩者皆指定。 無法為 /etc/passwd 設定預設的情境 修改 %s 的 finger 資訊。 更改 %s 的密碼。 變更 %s 的 shell。 正在複製使用者結構: 建立使用者時發生 Cyrus SASL 錯誤:%s移除使用者時發生 Cyrus SASL 錯誤:%sDAYS預設使用者特性名稱: 預設使用者物件類別: 電子郵件位址找不到條目。 變更「%s」的模式時發生錯誤:%s改變「%s」的擁有者時發生錯誤:%s建立 %s 發生錯誤:%s。 建立「%s」的帳號時發生錯誤:含有不當格式的列。 建立「%s」群組發生錯誤:%s 為「%s」建立群組時 (使用 GID %jd) 發生錯誤:%s 建立 %s 的家目錄時發生錯誤:%s 為 %s 建立郵件池時發生錯誤:%s 建立郵件池時發生錯誤:%s 建立 %s 的使用者帳號時發生錯誤:%s。 初始化 %s 時發生錯誤:%s 初始化 %s 時發生錯誤:%s。 初始化 PAM 時發生錯誤。 查詢 %s 時發生錯誤:%s 將 %s 移動至 %s 時發生錯誤:%s。 開啟「%s」時發生錯誤:%s。 解析引數時發生錯誤:%s。 讀取「%s」時發生錯誤:%s從檔案描述元 %d 讀取時發生錯誤。 移除郵件池時發生錯誤:%s為 %s 設定初始密碼時發生錯誤:%s 為群組 %s 設定密碼時發生錯誤:%s。 為使用者 %s 設定密碼發生錯誤:%s。 寫入「%s」時發生錯誤:%s無法卸下特權。 修改 %s 的過時資訊時失敗:%s 設定 %s 群組的密碼失敗:%s 為 %s 使用者設定密碼失敗:%s。 finger 的資訊已變更。 finger 的資訊未變更:輸入發生錯誤。 finger 的資訊未變更:%s。 全名GECOS 資訊新使用者的 GECOS 資訊正在取得預設使用者特性: 名字%jd 群組不存在 無法刪除 %s 群組:%s 無法刪除 %s 群組:%s。 無法鎖定 %s 群組:%s %s 群組無法修改:%s 無法修改 %s 群組:%s。 %s 群組無法被解除鎖定:%s %s 群組不存在。 群組建立失敗:%s GID %jd 的群組沒有群組名稱。 住家電話失效: %ld 失效: 永不 內部 PAM 錯誤「%s」。 內部錯誤。 無效 ID %s 欄位 %s 的預設值無效:%s無效的群組 ID %s 無效的使用者 ID %s Kerberos Admin PrincipalAdmin Principal 的 Kerberos 密碼Kerberos 領域LDAP Bind DNLDAP Bind 密碼LDAP SASL 認證使用者LDAP SASL 使用者LDAP Search Base DNLDAP 伺服器名稱上次更改: %s 最大值: %ld 最大值: 無 最小值: %ld 下次登入時必須更改密碼NAMENUM永不新的 shell新密碼新密碼 (確認)沒有指定群組名稱,GID %d 沒有指定名稱。 沒有指定群組名稱,所以使用 %s。 沒有指定群組名稱。 GID %jd 的群組不存在,所以無法移除。 %s 沒有新的家目錄。 %s 沒有舊的家目錄。 沒有指定使用者名稱,uid %d 沒有名稱。 沒有指定使用者名稱,所以使用 %s。 沒有指定使用者名稱。 辦公室辦公電話PATH密碼過期: %s 密碼失效: %s 取消密碼變更。 密碼已變更。 密碼不符,請再試一次。 提示失敗。 提示成功。 拒絕建立 UID 為 0 的帳號。 預設情況下拒絕使用危險的「%s」家目錄預設狀況下拒絕為 %2$s 使用危險的「%1$s」家目錄 STRING搜尋名稱為 %s 的群組。 搜尋 ID 為 %jd 的群組。 搜尋名稱為 %s 的使用者。 搜尋 ID 為 %jd 的使用者。 shell 已變更。 shell 未變更:%s 姓氏不明的使用者通過身份認證。 不明的使用者情境無法刪除 %s 使用者:%s。 無法鎖定 %s 使用者:%s。 無法修改 %s 使用者:%s。 無法被解除 %s 使用者的鎖定:%s。 使用者 %s 不存在。 使用者不符。 警告: %ld 警告:ID 為 %jd 的群組不存在。 [選項...][選項...] [使用者][選項...] 群組[選項...] 使用者加密的密碼中不允許使用「:」拒絕存取備份檔「%s」已存在且非一般檔案備份檔案的大小不符不當的使用者/群組 ID不當的使用者/群組名稱變更群組以擁有名字改變使用者的登入名稱新使用者的通用名稱組態檔「%s」過大無法綁定至 LDAP 伺服器第一次以「%s」嘗試時,無法連接綁定至 LDAP 伺服器:%s無法以 TLS 與 LDAP 伺服器協商無法開啟組態檔「%s」:%s無法讀取組態檔「%s」:%s無法將 LDAP 通訊協定設定為 %d 版無法取得組態檔「%s」的狀態:%s無法判定「%s」的安全情境:%s無法取得預設的安全情境:%s無法取得「%s」的安全情境:%s無法開啟「%s」:%s無法從「%s」讀取:%s無將預設安全情境設為「%s」:%s無法取得「%s」的狀態:%s無法寫入「%s」:%s建立系統群組建立系統使用者檔案裡找不到資料上次密碼更動的日期,日子是從 1/1/70 算起在過期之前開始警告使用者的天數新使用者的含檔案家目錄不要用與使用者相同的名稱建立群組不要建立家目錄不要為使用者建立家目錄不要建立郵件池不要移除使用者的私人群組,如果使用者擁有的話實體沒有 %s 特性實體沒有 %s 或 %s 特性實體物件沒有 %s 特性實體結構沒有 %s 或 %s 特性建立的實體沒有 %s 或 %s 特性條目已存在檔案中名稱產生衝突的條目已存在檔案中為「%s」服務於「%s」領域連接至 kadm5 伺服器時發生錯誤:%s建立「%s」時發生錯誤:%s建立 LDAP 目錄條目時發生錯誤:%s為使用者建立家目錄時發生錯誤加密密碼時發生錯誤初始化 Cyrus SASL 時發生錯誤:%s初始化 kerberos 函式庫時發生錯誤初始化 ldap 函式庫時發生錯誤載入模組時發生錯誤鎖定檔案時發生錯誤鎖定檔案時發生錯誤:%s處理終端機特性時發生錯誤修改 LDAP 目錄條目時發生錯誤:%s為使用者移動家目錄時發生錯誤開啟檔案時發生錯誤為 kerberos 解析使用者名稱「%s」時發生錯誤讀取檔案時發生錯誤從終端機讀取時發生錯誤從 kerberos 讀取「%s」的資訊時發生錯誤讀取終端機特性時發生錯誤移除 LDAP 目錄條目時發生錯誤:%s為使用者移除家目錄時發生錯誤為 LDAP 目錄條目重新命名時發生錯誤:%s解析模組裡的符號時發生錯誤設定「%s」的密碼時發生錯誤在 LDAP 目錄設定 %s 的密碼時發生錯誤:%s設定終端機特性時發生錯誤取得檔案狀態時發生錯誤寫入檔案時發生錯誤含有使用者資訊記錄的檔案一般錯誤新群組的 GID新使用者的名字群組 %jd 沒有名稱群組 %s 沒有 GID找不到 %s 群組新使用者的群組群組沒有名稱也沒有 GID家目錄新使用者的家目錄新使用者的家用電話號碼內部初始化錯誤無效的 ID無效的特性值無效的模組組合無效的號碼函式庫/模組版本不符列出使用者的過時參數列出已命名群組的成員,而不是已命名使用者的群組成員關係要加入的管理員清單要移除的管理員清單要加入的群組成員清單要移除的群組成員清單鎖住帳號鎖住群組密碼更動之間的最大天數密碼更動之間的最小天數模組「%s」未定義「%s」模組已由組態停用「%s」中模組版本不符移動家目錄內容名稱包含控制字元名稱包含無效字元「%c」名稱包含非 ASCII 的字元名稱包含空白名稱尚未設定名稱過長 (%zu > %d)名稱過短名稱以連字號開頭新的加密密碼新的明文密碼找不到「%s」特性「%2$s」內無初始函式 %1$s 於shadow 檔案不存在 -- 停用中在 LDAP 目錄中沒有這項物件權力不足非以超級使用者的特權執行中當帳號在密碼過期日後多少天才被視為失效物件沒有 %s 特性物件沒有 %s 特性僅依名稱列出成員資訊,而不是 UID/GID密碼過期日,日子是從 1/1/70 算起使用者的明文密碼群組要使用的明文密碼使用者的預先雜湊密碼群組要使用的預先雜湊密碼提示請求所有資訊從給定的描述元讀取新的加密密碼從給定的描述元讀取新的明文密碼移除使用者的家目錄新使用者的房間號碼設定群組的 GID設定使用者的 UID設定使用者的通用名稱設定使用者的名字設定群組密碼而不是使用者密碼設定使用者的家用電話號碼設定使用者的主要 GID設定使用者的房間號碼設定使用者的 shell設定使用者的姓氏設定使用者的電話號碼新使用者的 shell成功新使用者的姓氏新使用者的電話號碼無法組合「%s」與「%s」模組新使用者的 UID不明錯誤解除帳號鎖解除群組鎖解鎖會讓密碼欄成為空白不支援的密碼加密方案使用者 %jd 沒有名稱使用者 %s 沒有 UID找不到使用者 %s使用者沒有名稱也沒有 UID使用者物件沒有 %s 特性使用者物件在無「%s」情況下建立使用者/群組 ID 已被使用使用者/群組名稱已被使用libuser-0.60~dfsg/po/nb.po0000644000175000017500000011244712226342567015471 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Espen Stefansen , 2007 # Kjartan Maraas , 2012-2013 # Kjartan Maraas , 2001 # Kjartan Maraas , 2011 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-05-13 09:35+0000\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora/" "language/nb/)\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Feil under frislipp av privilegier.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Intern feil.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s er ikke autorisert for å endre finger-informasjon for %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Ukjent brukerkontekst" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Kan ikke sette forvalgt kontekst for /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Feil under initiering av PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Autentisering feilet for %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Intern PAM-feil «%s».\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Ukjent bruker autentisert.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Feil med bruker\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "spør etter all informasjon" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "vis aldringsparametere for bruker" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "minste antall dager mellom passordbytte" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "DAGER" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "maksimalt antall dager mellom passordbytte" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "dato for siste passordbytte i dager siden 1.1.1970" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "antall dager etter passordutløp før kontoen betraktes som inaktiv" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "passordutløpsdato i dager siden 1.1.1970" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "dager før utløp før varsling til bruker startes" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ALTERNATIV...] bruker" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Feil under lesing av argumenter: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Brukernavn ikke spesifisert.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Feil under initiering av %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Bruker %s eksisterer ikke.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Konto er låst.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Konto er ikke låst.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maksimum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Maksimum:»Ingen\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Advarsel:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inaktiv:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Inaktiv:»Aldri\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Må bytte passord ved neste pålogging" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Aldri" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Siste Endring:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Passord Utløper:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Passord inaktivt:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Konto utgår:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Kunne ikke endre aldringsinformasjon for %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ALTERNATIV...] [bruker]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Brukernavn ikke spesifisert. Fant ikke navn for uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Endrer finger-informasjon for %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Fullt navn" #: apps/lchfn.c:146 msgid "Surname" msgstr "Etternavn" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Gitt navn" #: apps/lchfn.c:167 msgid "Office" msgstr "Kontor" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefon, arbeid" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefon, hjemme" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-postadresse" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "finger-informasjon ikke endret: feil i inndata.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "finger-informasjon endret.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "finger-informasjon ikke endret: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Endrer skall for %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nytt skall" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Skallet ble ikke endret: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Skall endret.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "GID for ny gruppe" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "TALL" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "lag en systemgruppe" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ALTERNATIV...] gruppe" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Ingen gruppenavn spesifisert.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Ugyldig gruppe-ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Oppretting av gruppe feilet: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Gruppe %s eksisterer ikke.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Kunne ikke slette gruppe %s: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "sett GID for gruppe" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "endre gruppe til gitt navn" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NAVN" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "klartekstpassord for bruk med gruppen" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "STRENG" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "forhånds-hashet passord for bruk med gruppen" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "liste med administratorer som skal legges til" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "liste med administratorer som skal fjernes" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "liste med gruppemedlemmer som skal legges til" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "liste med gruppemedlemmer som skal fjernes" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "lås gruppe" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "lås opp gruppe" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Både -L og -U spesifisert.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Kunne ikke sette passord for gruppe %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Kunne ikke låse gruppe %s: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Kunne ikke låse opp gruppe %s: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Kunne ikke endre gruppe %s: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Feil under oppslag av %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "liste med medlemmer av en navngitt gruppe i stedet for gruppemedlemskap for " "navngitt bruker" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "vis kun informasjon om listemedlemskap med navn, og ikke UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Ingen gruppenavn spesifisert, bruker %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Ingen gruppenavn spesifisert. Fant ikke navn for gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Brukernavn ikke spesifisert, bruker %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s eksisterer ikke\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "fil med brukerinformasjonsposter" #: apps/lnewusers.c:47 msgid "PATH" msgstr "STI" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "ikke lag hjemmekataloger" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "ikke lag e-postkøer" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ALTERNATIV...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Feil under åpning av «%s»: %s\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "Feil under oppretting av konto for «%s»: linjen er ikke riktig formattert.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Ugyldig bruker-ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Nekter oppretting av konto med UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Feil under oppretting av gruppe for «%s» med GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "Nekter å bruke farlig hjemmekatalog «%s» for %s som forvalg\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Feil under oppretting av hjemmekatalog for %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Feil ved oppretting av e-postkø for %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Feil under setting av passord for %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Feil under oppretting av brukerkonto for %s: %s.\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "sett gruppepassord i stedet for brukerpassord" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "nytt vanlig passord" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "nytt kryptert passord" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "les klartekstpassord fra oppgitt deskriptor" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "les nytt kryptert passord fra oppgitt deskriptor" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Endrer passord for %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nytt passord" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nytt passord (bekreft)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Passordene er ikke like. Prøv igjen.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Endring av passord avbrutt.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Feil ved lesing fra fildeskriptor %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Feil under setting av passord for bruker %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Feil under setting av passord for gruppe %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Passord endret.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "lag en systembruker" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "GECOS-informasjon for ny bruker" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "hjemmekatalog for ny bruker" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "katalog med filer for ny bruker" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "skall for ny bruker" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "UID for ny bruker" #: apps/luseradd.c:69 msgid "group for new user" msgstr "gruppe for ny bruker" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "ikke lag hjemmekatalog for bruker" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "ikke lag gruppe med samme navn som bruker" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "fullt navn for bruker" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "fornavn for bruker" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "etternavn for bruker" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "romnummer for ny bruker" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "telefonnummer for ny bruker" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "hjemmetelefon for ny bruker" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Gruppe %jd eksisterer ikke\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Feil under oppretting av gruppe «%s»: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Feil under oppretting av konto: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Feil under oppretting av %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Feil ved oppretting av e-postkø: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "ikke fjern brukers private gruppe hvis bruker har en" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "fjern brukers hjemmekatalog" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Bruker %s kunne ikke slettes: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s hadde ikke gid-nummer.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Det finnes ingen gruppe med GID %jd, fjernes ikke.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Gruppe med GID %jd hadde ikke et gruppenavn.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Gruppe %s kunne ikke slettes: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "feil under fjerning av hjemmekatalog for bruker" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Feil ved fjerning av e-postkø: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS-informasjon" #: apps/lusermod.c:60 msgid "home directory" msgstr "hjemmekatalog" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "flytt innhold i hjemmekatalog" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "sett skall for bruker" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "sett UID for bruker" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "sett primær GID for bruker" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "bytt brukernavn for bruker" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "klartekstpassord for bruker" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "forhånds-hashet passord for bruker" #: apps/lusermod.c:75 msgid "lock account" msgstr "lås konto" #: apps/lusermod.c:78 msgid "unlock account" msgstr "lås opp konto" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "sett fullt navn for bruker" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "sett fornavn for bruker" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "sett etternavn for bruker" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "sett romnummer for bruker" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "sett telefonnummer for bruker" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "sett hjemmetelefon for bruker" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Feil under setting av passord for bruker %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Bruker %s kunne ikke låses: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Bruker %s kunne ikke låses opp: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Advarsel: Gruppe med ID %jd eksisterer ikke\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Bruker %s kunne ikke endres: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Gruppe %s kunne ikke endres: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Ingen gammel hjemmekatalog for %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Ingen ny hjemmekatalog for %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Feil under flytting av %s til %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "kunne ikke åpne konfigurasjonsfil «%s»: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "kunne ikke kjøre stat på konfigurasjonsfil «%s»: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "konfigurasjonsfil «%s» er for stor" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "kunne ikke lese konfigurasjonsfil «%s»: %s" #: lib/error.c:62 msgid "success" msgstr "suksess" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modul deaktivert av konfigurasjon" #: lib/error.c:66 msgid "generic error" msgstr "vanlig feil" #: lib/error.c:68 msgid "not enough privileges" msgstr "ikke tilstrekkelige privilegier" #: lib/error.c:70 msgid "access denied" msgstr "tilgang nektet" #: lib/error.c:72 msgid "bad user/group name" msgstr "ugyldig bruker-/gruppenavn" #: lib/error.c:74 msgid "bad user/group id" msgstr "ugyldig bruke-/gruppe-ID" #: lib/error.c:76 msgid "user/group name in use" msgstr "bruker-/gruppenavn i bruk" #: lib/error.c:78 msgid "user/group id in use" msgstr "bruker-/gruppe-ID i bruk" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "feil ved manipulering av terminalattributter" #: lib/error.c:82 msgid "error opening file" msgstr "feil under åpning av fil" #: lib/error.c:84 msgid "error locking file" msgstr "feil under låsing av fil" #: lib/error.c:86 msgid "error statting file" msgstr "feil under kjøring av stat() på fil" #: lib/error.c:88 msgid "error reading file" msgstr "feil under lesing av fil" #: lib/error.c:90 msgid "error writing to file" msgstr "feil under skriving til fil" #: lib/error.c:92 msgid "data not found in file" msgstr "data ikke funnet i fil" #: lib/error.c:94 msgid "internal initialization error" msgstr "intern feil under initiering" #: lib/error.c:96 msgid "error loading module" msgstr "feil under lasting av modul" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "feil under søk etter symbol i modul" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "feil med bibliotek-/modulversjon" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "hvis du låser opp vil passord-feltet stå tomt" #: lib/error.c:105 msgid "invalid attribute value" msgstr "ugyldig verdi for attributt" #: lib/error.c:107 msgid "invalid module combination" msgstr "ugyldig kombinasjon av moduler" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "hjemmekatalog for ny bruker" #: lib/error.c:115 msgid "unknown error" msgstr "ukjent feil" #: lib/misc.c:240 msgid "invalid number" msgstr "ugyldig nummer" #: lib/misc.c:254 msgid "invalid ID" msgstr "ugylig ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "ingen initieringsfunksjon %s i `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "feil modulversjon i `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modul «%s» definerer ikke «%s»" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "feil under lesing av terminalattributter" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "feil under setting av terminalattributter" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "feil ved lesing fra terminal" #: lib/user.c:218 msgid "name is not set" msgstr "navnet er ikke satt" #: lib/user.c:223 msgid "name is too short" msgstr "navnet er for kort" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "navnet er for langt (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "navnet inneholder ikke-ASCII tegn" #: lib/user.c:242 msgid "name contains control characters" msgstr "navnet inneholder kontrolltegn" #: lib/user.c:249 msgid "name contains whitespace" msgstr "navnet inneholder tomrom" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "navnet starter med bindestrek" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "navnet inneholder ugyldig tegn «%c»" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "bruker %s har ingen UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "bruker %s ble ikke funnet" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "gruppe %s har ingen GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "gruppen %s ble ikke funnet" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "bruker %jd har ikke navn" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "Gruppe %jd har ikke navn" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "bruker har hverken navn eller en UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "gruppen har hverken et navn eller en GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Nekter å bruke farlig hjemmekatalog «%s» som forvalg" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Ugyldig standardverdi for felt %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "feil under låsing av fil: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "kunne ikke finne forvalgt sikkerhetskontekst: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "fant ikke sikkerhetskontekst for «%s»: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "kunne ikke sette forvalgt sikkerhetskontekst til «%s»: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "kan ikke bestemme sikkerhetskontekst for «%s»: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "kunne ikke åpne `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "kunne ikke kjøre stat på `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "feil under oppretting av `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "sikkerhetskopien «%s» eksisterer og er ikke en vanlig fil" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Feil under endring av eierskap for «%s»: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Feil ved bytte av modus for «%s»: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Feil under lesing av `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Feil under skriving av `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "feil størrelse på sikkerhetskopi" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s verdi «%s»: «:» ikke tillatt" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "kunne ikke lese fra `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "oppføringen er allerede i filen" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "kunne ikke skrive til «%s»: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "entitetsobjekt har ingen %s-attributt" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "oppføring med navnekonflikt finnes allerede i filen" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "«:» er ikke tillatt i krypterte passord" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "feil under kryptering av passord" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "modulene «%s» og «%s» kan ikke brukes sammen" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "kjører ikke med superbruker-privilegier" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "ingen skyggefil finnes -- deaktiverer" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "feil under tilkobling til kadm5-tjeneren for tjeneste «%s» i område «%s»: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "feil under initiering av kerberos-biblioteket" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "feil under lesing av brukernavn «%s» for kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "entitetsstruktur har ingen %s eller %s-attributter" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entitet har ingen %s eller %s-attributter" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entiteten ble opprettet uten %s- eller %s-attributter" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "feil under lesing av informasjon for `%s' fra kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entiteten har ingen %s-attributt" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "feil under setting av passord for «%s»" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos-område" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos-passord for Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "feil under initiering av ldap-bibliotek" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "kunne ikke sette LDAP-protokoll til versjon %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "kunne ikke forhandle TLS med LDAP-tjener" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "kunne ikke binde til LDAP-tjener" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "kunne ikke binde til LDAP-tjener, prøvde først som «%s»: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "bruker-objektet hadde ingen %s-attributt" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "brukerobjektet ble opprettet uten `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "feil under oppretting av LDAP-katalogoppføring: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "feil under endring av LDAP-katalogoppføring: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "feil under endring av navn på LDAP-katalogoppføring: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "objektet hadde ingen %s-attributt" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "feil under fjerning av LDAP-katalogoppføring: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "objektet har ikke attributt %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "ikke støttet schema for kryptering av passord" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "ingen slike objekter i LDAP-katalogen" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "ingen `%s'-attributt funnet" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "Feil under setting av passord i LDAP-katalog for %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Navn på LDAP-tjener" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind-passord" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL-bruker" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL-autorisasjonsbruker" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Feil i Cyrus SASL under oppretting av bruker: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Feil i Cyrus SASL ved fjerning av bruker: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "feil ved initiering av Cyrus SASL: %s." #: python/admin.c:518 msgid "error creating home directory for user" msgstr "feil under oppretting av hjemmekatalog for bruker" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "feil under fjerning av hjemmekatalog for bruker" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "feil under flytting av hjemmekatalog for bruker" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Feil under initiering av %s: %s.\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Ugylig ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Søker etter gruppe med ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Søker etter gruppe med navn %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Søker etter bruker med ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Søker etter bruker ved navn %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Oppføring ikke funnet.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Spørring fullført.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Spørring feilet.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Standardklasser for brukerobjekter:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Standardnavn for brukerattributter:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Henter standard brukerattributter:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kopierer brukerstruktur:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s hadde ingen hjemmekatalog.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Feil under fjerning av %s: %s.\n" libuser-0.60~dfsg/po/vi.gmo0000644000175000017500000003355612226342605015650 0ustar tzafrirtzafrir      &$Af""5DV<n)'4Mi*)( 5(Qz.$ ! #"$Fk % )FUiz  -#+J,i" .#A'e"!#'#Ko  1,@(^*)&AX!s!+.G0x&!#2E&\($)!0=!n& 3!,Nb x  &"Fi%# ''=e $ " $ % !F! `!!#!!!#!"&")E"/o"1"4"#!#<#FQ#'#3##$-$!H$j$#$$0$3$<%\%5q%$%.%%% !&2/&b&%g&,&&&"&'$'%='c' r''''''#'( "(.(A(;`()((%(# )D0)2u)() ))$)'*%F*l*3****#+*+>+.C+/r+5+4+& ,4,S,!d,,,,V,.-J-#h-1-0-8-(.!C.e....(.2.8,/>e/E/%/H0Y0.u0!0'0#01%1;1&U15|14117142K2.f2#242*2"3:<3#w33333-3##4,G4$t4+44455%$5*J5$u555545+%6+Q6 }6 6:6A6,7.?7>wKmxY{g * J3|hO+;?P85Me} 0/9s=^Qi&E6,I nWf]UbT:pkN!~uvV2"CoBX14.tR\j )ZlqdLzc`yS_<GD-FA[7Hr$ %#@(a'%s did not have a gid number. Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Failed to drop privileges. Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %s could not be deleted: %s. Group %s could not be modified: %s. Group %s does not exist. Home PhoneInternal PAM error `%s'. Internal error. Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Refusing to create account with UID 0. Searching for group named %s. Searching for user named %s. Shell changed. SurnameUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] useraccess deniedbackup file `%s' exists and is not a regular filebad user/group idbad user/group namecould not bind to LDAP servercould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not set LDAP protocol to version %dcouldn't open `%s': %scouldn't read from `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating home directory for usererror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing home directory for usererror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorinternal initialization errorlibrary/module version mismatchmodule disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too shortno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown erroruser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora/language/vi/) Language: vi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; %s không phải là số GID. Tài khoản hết hiệu lực: %s Thất bại tạo tài khoản: %s. Tài khoản bị khóa. Tài khoản không bị khóa. Lỗi xác thực cho %s. Chưa xác định cả -L và -U. Đổi thông tin finger cho %s. Thay đổi mật khẩu của %s. Đổi Shell của %s. Sao chép cấu trúc người dùng: Lỗi Cyrus SASL tạo người dùng: %sLỗi Cyrus SASL loại bỏ người dùng: %sTên thuộc tính người dùng mặc định: Lớp đối tượng người dùng mặc định: Địa chỉ E-MailKhông tìm thấy mục nhập. Lỗi tạo %s: %s. Lỗi tạo tài khoản cho `%s':định dạng dòng không đúng. Lỗi tạo thư mục home cho %s: %s Lỗi tạo tài khoản người dùng cho %s: %s Lỗi khởi tạo %s: %s Lỗi khởi động %s: %s. Lỗi khởi động PAM. Lỗi chuyển %s thành %s: %s. Lỗi mở `%s': %s. Lỗi phân tích đối số: %s. Lỗi đọc `%s': %sLỗi đặt mật khẩu ban đầu cho %s: %s Lỗi thiết lập mật khẩu cho nhóm %s: %s. Lỗi thiết lập mật khẩu cho người dùng %s: %s. Lỗi bỏ quyền. Lỗi đặt mật khẩu cho người dùng %s: %s. Đã thay đổi thông tin finger. Thông tin finger không đổi: lỗi input. Thông tin finger không đổi: %s. Họ và tênLấy thuộc tính người dùng mặc định: TênNhóm %s không thể bị xóa: %s. Nhóm %s không thể bị thay đổi: %s. Nhóm %s không tồn tại. Điện thoại NhàLỗi nội tại của PAM `%s'. Lỗi nội tại. Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserNgười dùng LDAP SASLLDAP Search Base DNTên Server LDAPLần thay đổi cuối cùng: %s Không bao giờShell mớiMật khẩu mớiXác nhận mật khẩu mớiChưa xác định tên nhóm, không có tên cho gid %d. Chưa xác định tên nhóm, dùng %s. Chưa xác định tên nhóm. %s không có thư mục home mới. %s không có thư mục home cũ. Chưa xác định tên người dùng, không có tên cho uid %d. Chưa xác định tên người dùng, dùng %s. Chưa xác định tên người dùng. Văn phòngĐiện thoại Văn phòngMật khẩu hết hiệu lực: %s Mật khẩu không hoạt động: %s Hủy bỏ thay đổi mật khẩu. Đã thay đổi mật khẩu. Mật khẩu không khớp, vui lòng thử lại. Từ chối tạo tài khoản cho UID 0. Đang tìm nhóm tên %s. Đang tìm người dùng tên %s. Đã đổi Shell. HọNgười dùng %s không thể bị xóa: %s. Người dùng %s không thể bị khóa: %s. Người dùng %s không thể bị thay đổi: %s. Người dùng %s không thể bị mở khóa: %s. Người dùng %s không tồn tại. Không khớp người dùng. [TÙY_CHỌN...][TÙY_CHỌN...] [người_dùng][TÙY_CHỌN...] nhóm[TÙY CHỌN...] người_dùngtruy cập bi từ chốitập tin sao lưu `%s' tồn tại nhưng không phải là tập tin bình thườngID người dùng/nhóm saitên người dùng/nhóm saikhông thể gắn vào LDAP serverkhông thể thỏa thuận TLS với LDAP serverkhông thể mở tập tin cấu hình `%s': %skhông thể đặt giao thức LDAP cho phiên bản %dkhông thể mở `%s': %skhông thể đọc từ `%s': %skhông thể stat() `%s': %skhông thể ghi vào `%s': %skhông tìm thấy dữ liệu trong tập tinthực thể không có thuộc tính %sthực thể không có thuộc tính %s hoặc %sđối tượnc thực thể không có thuộc tính %scấu trúc thực thể không có thuộc tính %s hoặc %sthực thể được tạo mà không có thuộc tính %s hoặc %smục nhập đã có trong tập tinlỗi kết nối kadm5 server cho dịch vụ `%s' trong realm `%s': %skhông thể tạo `%s': %slỗi tạo thư mục home cho người dùnglỗi khởi tạo Cyrus SASL: %slỗi khởi tạo thư viện kerberoslỗi khởi tạo thư viện ldaplỗi nạp modulelỗi khóa tập tinlỗi khóa tập tin: %slỗi thao tác thuộc tính terminallỗi hiệu chỉnh mục nhập thư mục LDAP: %slỗi di chuyển thư mục home cho người dùnglỗi mở tập tinlỗi phân tích tên người dùng `%s' cho kerberoslỗi đọc tập tinlỗi đọc từ terminallỗi đọc thông tin cho `%s' từ kerberoslỗi đọc thuộc tính terminallỗi loại bỏ thư mục home cho người dùnglỗi phân giải ký hiệu trong modulelỗi đặt mật khẩu cho `%s'lỗi đặt mật khẩu trong thư mục LDAP cho %s: %slỗi đặt thuộc tính terminallỗi stat() tập tinlỗi ghi tập tinlỗi thườnglỗi khởi tạo nội tạikhông khớp phiên bản thư viện/modulemodule bị tắt bởi cấu hìnhkhông khớp phiên bản module trong `%s'tên chứa ký tự điều khiểntên chứa ký tự không hợp lệ `%c'tên chứa ký tự phi ASCIItên chứa khoảng trắngchưa đặt têntên quá ngắnkhông tìm thấy thuộc tính `%s'không có hàm khởi tạo %s trong `%s'không có tập tin shadow -- tắtkhông có đối tượng đó trong thư mục LDAPkhông đủ quyền truy cậpkhông thực thi với quyền siêu người dùngđối tượng không có thuộc tính %sđối tượng không có thuộc tính %sthành cônglỗi lạđối tượng người dùng không có thuộc tính %sđối tượng người dùng được tạo mà không có `%s'ID người dùng/nhóm đang được dùngtên người dùng/nhóm đang được dùnglibuser-0.60~dfsg/po/zh_CN.po0000644000175000017500000010777512226342570016075 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Christopher Meng , 2013 # Leah Liu , 2008, 2009 # Leah Liu , 2005 # Tommy He , 2012 # Mike Manilone , 2011 # Miloslav Trmač , 2011 # Sarah Wang , 2003, 2004 # Tommy He , 2012 # Tony Fu , 2004 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-09-22 11:49+0000\n" "Last-Translator: Christopher Meng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora/" "language/zh_CN/)\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "放弃特权失败.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "内部错误.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s 没有被授权改变 %s 的 finger 信息\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "未知的用户上下文" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "不能为 /etc/passwd 设定默认的上下文\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "初始化 PAM 出错。\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s 验证失败。\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "内部 PAM 错误`%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "未知用户验证。\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "用户错配。\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "提示全部信息" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "列出用户过期的参数" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "密码变更的最短天数" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "天" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "密码变更的最长天数" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "以天数为单位从 1970 年 1 月 1 日起最后一次密码变更的日期" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "密码过期多少天后将帐户设为不活跃" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "以天数为单位从 1970 年 1 月 1 日起密码过期的日期" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "密码过期多少天前提醒用户" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] 用户" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "解析参数时出错:%s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "没有指定的用户名。\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "初始化 %s 出错:%s。\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "用户 %s 不存在。\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "帐号被锁。\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "帐号没被锁。\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "至少:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "至多:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "至多:\t无\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "警告:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "不活跃:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "不活跃:\t从不\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "强制在下次登录时修改密码" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "从不" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "最后一次改变:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "密码过期:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "密码不活跃:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "帐号过期:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "为 %s: %s 修改老化信息失败。\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [用户]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "没有指定用户名,uid %d 没有姓名。\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "改变 %s 的 finger 信息。\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "全称" #: apps/lchfn.c:146 msgid "Surname" msgstr "姓" #: apps/lchfn.c:157 msgid "Given Name" msgstr "名" #: apps/lchfn.c:167 msgid "Office" msgstr "办公室" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "办公电话" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "家庭电话" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "电子邮件地址" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger 信息没有被改变:输入错误。\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger 信息被改变。\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger 信息没有被改变:%s。\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "改变 %s 的 shell。\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "新建 Shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell 没有改变:%s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell 被改变。\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "新用户组 GID" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "数字" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "创建一个系统组" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] 组群" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "没有指定的组群名。\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "无效的组群 ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "创建组群失败:%s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "组群 %s 不存在。\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "组群 %s 无法被删除:%s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "设定组 GID" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "改变用户组名称" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "名称" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "供组使用的纯文本密码" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "字符串" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "供组使用的预哈希密码" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "准备添加的管理员列表" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "准备移除的管理员列表" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "准备添加的组成员列表" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "准备移除的组成员列表" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "锁定组" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "解锁组" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr " -L 和 -U 两者皆被指定。\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "为组群 %s: %s 设置密码失败。\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "组群 %s 无法被锁:%s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "组群 %s 无法被开锁:%s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "组群 %s 无法被修改:%s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "查找 %s 时出错:%s \n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "列出指明用户组的成员而非指明用户的组成员" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "仅在成员信息中显示名称,而不是 UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "没有指定组群名,使用 %s。\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "没有指定组群名,gid %d 没有名称。\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "没有指定用户名,使用 %s。\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s 不存在\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "包含用户信息记录的文件" #: apps/lnewusers.c:47 msgid "PATH" msgstr "路径" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "不创建主文件夹" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "不创建邮件池" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "打开 `%s': %s时出错.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "为`%s'创建账号时出错:行格式不正确。\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "无效的用户 ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "拒绝使用 UID 0 来创建账号。\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "创建组群`%s'时出错,使用 GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "默认拒绝为 %s 使用危险的主目录 `%s'\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "为 %s 创建主目录时出错:%s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "为 %s 创建邮件池时出错: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "为`%s'设置初始密码时出错:%s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "为 %s 创建用户账号失败:%s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "设定组密码而非用户密码" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "新的纯文本密码" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "新的加密密码" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "从指定描述器读取纯文本密码" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "从指定描述器读取加密密码" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "为`%s'改变密码。\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "新密码" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "新密码(确认)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "密码不匹配,请重试。\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "密码改变被取消。\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "从文件描述符 %d 读取错误。\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "为用户 %s 设置密码失败:%s。\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "为组群`%s'设置密码时出错:%s\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "密码被改变。\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "创建系统用户" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "新用户的 GECOS 信息" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "新用户的主文件夹" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "新用户的目录和文件" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "新用户的 Shell" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "新用户的 UID" #: apps/luseradd.c:69 msgid "group for new user" msgstr "新用户所属组" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "不为用户创建主文件夹" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "不创建和用户同名的用户组" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "新用户常用名" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "新用户的名" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "新用户的姓" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "新用户的房间号" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "新用户的电话号码" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "新用户的家庭电话号码" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "组群 %jd 不存在\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "创建组群'%s': %s出错。\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "创建帐号失败:%s。\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "创建 %s 失败:%s。\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "创建邮件池时出错: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "不移除用户私有组,如果存在的话" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "移除用户主文件夹" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "用户 %s 无法被删除:%s。\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s 没有 gid 号码。\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID 号码为 %jd 的组群不存在,无法删除。\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID 号码为 %jd 的组群没有组群名。\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "组群 %s 无法被删除:%s。\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "删除用户的主目录时出错" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "删除邮件池时出错: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS 信息" #: apps/lusermod.c:60 msgid "home directory" msgstr "主文件夹" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "移动主文件夹内容" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "设定用户 Shell" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "设定用户 UID" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "设定用户的主要 GID" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "改变用户的登录名" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "给用户的纯文本密码" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "给用户的预哈希密码" #: apps/lusermod.c:75 msgid "lock account" msgstr "锁定帐户" #: apps/lusermod.c:78 msgid "unlock account" msgstr "解锁帐户" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "设定用户的常用名" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "设定用户的名" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "设定用户的姓" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "设定用户的房间号" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "设定用户的电话号码" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "设定用户的家庭电话号码" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "为用户 %s 设置密码失败:%s。\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "用户 %s 无法被锁:%s。\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "用户 %s 无法被开锁:%s。\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "警告:ID 为 %jd 的组群不存在。\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "用户 %s 无法被修改:%s。\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "组群 %s 无法被修改:%s。\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s 没有旧的主目录。\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s 没有新的主目录。\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "将 %s 移至 %s 时出错:%s。\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "无法打开配置文件`%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "无法打开配置文件`%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "配置文件`%s'太大" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "无法读取配置文件`%s': %s" #: lib/error.c:62 msgid "success" msgstr "成功" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "配置禁用了模块" #: lib/error.c:66 msgid "generic error" msgstr "通用错误" #: lib/error.c:68 msgid "not enough privileges" msgstr "没有足够的特权" #: lib/error.c:70 msgid "access denied" msgstr "访问被拒绝" #: lib/error.c:72 msgid "bad user/group name" msgstr "用户/组群名不对" #: lib/error.c:74 msgid "bad user/group id" msgstr "用户/组群 ID 不对" #: lib/error.c:76 msgid "user/group name in use" msgstr "用户/组群名被使用" #: lib/error.c:78 msgid "user/group id in use" msgstr "用户/组群 ID 被使用" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "操作终端属性时出错" #: lib/error.c:82 msgid "error opening file" msgstr "打开文件时出错" #: lib/error.c:84 msgid "error locking file" msgstr "锁文件时出错" #: lib/error.c:86 msgid "error statting file" msgstr "开始文件时出错" #: lib/error.c:88 msgid "error reading file" msgstr "读取文件时出错" #: lib/error.c:90 msgid "error writing to file" msgstr "写入文件时出错" #: lib/error.c:92 msgid "data not found in file" msgstr "文件中没有发现数据" #: lib/error.c:94 msgid "internal initialization error" msgstr "内部初始错误" #: lib/error.c:96 msgid "error loading module" msgstr "载入模块时出错" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "在模块中解析符号时出错" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "库或模块版本错配" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "解锁将使密码域为空" #: lib/error.c:105 msgid "invalid attribute value" msgstr "无效属性值" #: lib/error.c:107 msgid "invalid module combination" msgstr "无效模块组合" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "新用户的主文件夹" #: lib/error.c:115 msgid "unknown error" msgstr "未知错误" #: lib/misc.c:240 msgid "invalid number" msgstr "无效数字" #: lib/misc.c:254 msgid "invalid ID" msgstr "无效的 ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "没有初始功能 %s 在`%s'中" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "在`%s'中模块版本错配" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "模块 `%s' 没有定义 `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "读取终端属性时出错" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "设置终端属性时出错" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "从终端上读取时出错" #: lib/user.c:218 msgid "name is not set" msgstr "没有设置名称" #: lib/user.c:223 msgid "name is too short" msgstr "名称太短" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "名字太长(%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "名称中包含非 ASCII 字符" #: lib/user.c:242 msgid "name contains control characters" msgstr "名称中包含控制字符" #: lib/user.c:249 msgid "name contains whitespace" msgstr "名称中包含空格" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "名字以连字符开头" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "名称中包含无效字符`%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "用户 %s 没有 UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "未找到用户 %s" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "组 %s 没有GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "未找到组 %s" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "用户 %jd 没有名字" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "组群 %jd 没有名字" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "用户 %s 没有名字也没有 UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "组 %s 没有名字也没有 UID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "默认拒绝使用危险主目录 `%s'" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "无效默认值%s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "锁文件时出错:%s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "无法获取默认的安全内容:%s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "无法得到 `%s': %s的安全上下文" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "无法为`%s': %s 设置默认的上下文" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "无法为 `%s': %s 决定安全内容" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "无法打开“%s”:%s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "无法 stat `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "创建“%s”时出错:%s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "备份文件`%s' 已存在,且不是常规文件" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "创建组群`%s': %s出错。" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "变更 `%s' 模式出错: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "读取`%s': %s时出错" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "写入`%s': %s时出错" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "备份文件大小与原文件不符" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s 值 `%s':不允许 `:'" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "无法从`%s': %s中读取" #: modules/files.c:797 msgid "entry already present in file" msgstr "项目已在文件中出现" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "无法写入`%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "实体对象没有任何 %s 属性" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "文件中出现带冲突名称的条目" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "加密密码中不允许有 `:'" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "错误的加密密码" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "“%s”和“%s”模块不能被组合" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "没有使用超级用户的特权在执行" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "没有屏蔽文件 -- 将禁用" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "为`%s'服务在领域`%s'中连接 kadm5 服务器时出错:%s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "初始化 kerberos 库时出错" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "为 kerberos 解析用户名`%s'时出错" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "实体结构没有任何 %s 或 %s 属性" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "实体没有任何 %s 或 %s 属性" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "实体创建时没有包括任何 %s 或 %s 属性" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "从 kerberos 中为 `%s' 读取信息时出错。" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "实体没有任何 %s 属性" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "为`%s'设置密码时出错" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos 领域" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos 主管理员" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Kerberos 主管理员密码" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "初始化 ldap 库时出错" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "无法将 LDAP 协议设为版本 %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "无法与 LDAP 服务器商讨 TLS" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "无法关联到 LDAP 服务器" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "无法关联到 LDAP 服务器,第一此作为 `%s': %s 尝试" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "用户对象没有任何 %s 属性" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "用户对象创建时没有包括`%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "建立 LDAP 目录项目时出错:%s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "修改 LDAP 目录项目时出错:%s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "将 LDAP 目录项目更名时出错:%s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "对象没有任何 %s 属性" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "删除 LDAP 目录项目时出错:%s。" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "对象没有任何 %s 属性" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "不支持的密码加密方案" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "在 LDAP 目录中没有此类对象" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "没有发现任何`%s' 属性" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "在 LDAP 目录中为 %s 设置密码时出错:%s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP 服务器名" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP 搜索基点 DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP 关联 DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP 关联密码" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL 用户" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL 授权用户" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "创建用户时出现 Cyrus SASL 错误:%s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "删除用户时出现 Cyrus SASL错误:%s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "初始化 Cyrus SASL 时出错:%s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "为用户创建主目录时出错" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "删除用户的主目录时出错" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "移动用户的主目录时出错" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "初始化 %s 时出错:%s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "无效的 ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "正在搜索 ID %jd 组群。\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "正在搜索名称为 %s 的组群。\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "正在搜索 ID %jd 用户。\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "正在搜索名称为 %s 的用户。\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "没有发现项目。\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "提示成功。\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "提示失败。\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "默认的用户对象类别:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "默认的用户属性名称:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "正在获取默认的用户属性:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "正在复制用户结构:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s 没有主目录。\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "删除 %s 时出错:%s。\n" libuser-0.60~dfsg/po/bg.gmo0000644000175000017500000010441512226342604015612 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<< >>U><M?'?D?$?)@9F@:@H@=A)BAKlAEATAVSBBBBPBEC#cC>CPC4DyLD@DxE\ECE;!F`]F;F@F;;G/wGBG4GDH.dHOH<HM INnIXI7J9NJ_JMJS6K7KTK@LXLjL?LZL M)2MC\M>MAMG!N@iNAN)N=OFTOOO!O-O"P1BPVtP>PL Q;WQ*QQQ#Q@RSR&rRR$RRRS\$SSS S2SS0SNTXbT1TrT?`UAUXUR;V;V VVV4V+3W;_W(WGW0 X%=XLcX~X/YY6YBYB6lBulUlQm6`m6m:mY nRcnln2#oZVo.o8oLpMfp]pkqa~qHq;)r^erQrMs.dsRss s>t\t{t&t/t4t#"uHFuRuCu&v7vY wew? xCKxAxExy7yCSyAy*yHz1MzVz7z:{/I{,y{#{0{#{%|*E|,p|+|?|C }?M}#}X} ~-~)~eNf?K3A?uBfh_Tȁ= [,|4@ނTTt=Ƀ?.G<vE*$:3CnL(!(JjSOچ(*$S.x>FD-OrJˆ0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-08-16 20:04+0000 Last-Translator: Valentin Laskov Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora/language/bg/) Language: bg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s нямаше gid номер. %s не съжествува %s не е оторизиран да променя информацията на %s %s стойността `%s': `:' не е позволеноАкаунтът изтича на: %s Неуспех при създаването на акаунт: %s. Акаунта е заключен. Акаунта не е заключен. Неуспешно удостоверяване на %s. И -L и -U са указани едновременно. Не може да установи контекста за /etc/passwd Промяна на finger информацията за %s. Промяна паролата на %s. Промяна на командния интерпретатор за %s. Копиране на потребителска структура: Грешка на Cyrus SASL при създаване на потребител: %sГрешка на Cyrus SASL при премахване на потребител: %sДНИСтандартни потребителски атрибути: Стандартни класове за потребителски обект: Електронна пощаЗапис не е намерен. Грешка при смяна на режима на `%s': %sГрешка при променяне на собственика на `%s': %sГрешка при създаване на %s: %s. Грешка при създаване на потребител `%s': некоректно форматиран ред. Грешка при създаване на група `%s': %s Грешка при създаването на група за `%s' с групов идентификатор %jd: %s Грешка при създаване на домашна директория за %s: %s Грешка при създаване на mail spool за %s: %s Грешка при създаване на mail spool: %s Грешка при създаване на потребителски акаунт за %s: %s Грешка при инициализация на %s: %s Грешка при инициализацията на %s: %s. Грешка при инициализиране на PAM. Грешка при търсене на %s: %s Грешка при преместване на %s към %s: %s. Грешка при отваряне на `%s': %s. Грешка при анализа на аргументите: %s. Грешка при четене на `%s': %sГрешка при четене от дескриптора на файл %d. Грешка при премахване на mail spool: %sГрешка при задаване начална парола за %s: %s Грешка при задаване паролата за група %s: %s. Грешка при задаване паролата за потребител %s: %s. Грешка при записването на`%s': %sНеуспешен отказ от привилегии. Неуспех при промяна на информацията за срока за %s: %s Неуспешно задаване на парола за група %s: %s Неуспешно задаване парола за потребител %s: %s. Finger информацията е променена. Finger информацията не е променена: грешен вход. Finger информацията не е променена: %s. Пълно имеGECOS информацияGECOS информация за новия потребителИзвличане на стандартни потребителски атрибути: Лично имеГрупа %jd не съществува Група %s не може да бъде премахната: %s Група %s не може да бъде изтрита: %s. Група %s не може да бъде заключена: %s Група %s не може да бъде модифицирана: %s Група %s не може да бъде изменена: %s. Група %s не може да бъде отключена: %s Група %s не съществува. Неуспех при създаване на група: %s Групата с идентификатор %jd нямаше име. Домашен телефонНеактивен: %ld Неактивен: Никога Вътрешна грешка на PAM `%s'. Вътрешна грешка. Невалиден идентификатор %s Невалидна стойност по подразбиране на поле %s: %sНевалиден групов идентификатор %s Невалиден потребителски идентификатор %s Kerberos принципи на администриранеПарола за Kerberos Admin PrincipalKerberos областLDAP DN за връзкаLDAP парола за връзкаLDAP SASL Упълномощаване на потребителLDAP SASL ПотребителБазов DN за LDAP търсенеИме на LDAP сървърПоследна промяна: %s Максимум: %ld Максимум: Няма Минимум: %ld Трябва да промени паролата при следващото влизанеИМЕNUMНикогаНов команден интерпретаторНова паролаНова парола (потвърждение)Не е посочено име на група, няма име за gid %d. Не е посочено име на група, ще бъде използвана %s. Не е посочено име на група. Не съществува група с идентификатор %jd, не може да се премахне. Няма нова домашна директория за %s. Няма стара домашна директория за %s. Не е посочено име на потребител, няма име за uid %d. Не е посочен потребител, ще бъде използван %s. Не е посочено име на потребител. РаботаСлужебен телефонПЪТСрокът на паролата изтича: %s Паролата е неактивна: %s Смяната на паролата прекъсната. Паролата е променена. Паролите не съвпадат, опитайте отново. Промптовете се провалиха. Промптовете успяха. Отказано създаването на потребител с UID 0. Отказано използване на опасна домашна директория `%s' по подразбиранеОтказано използването на опасна домашна директория `%s' за %s по подразбиране НИЗТърсене на група именувана %s. Търсене на група с идентификатор %jd. Търсене на потребител наименуван %s. Търсене на потребител с идентификатор %jd. Командният интерпретатор е променен. Командният интерпретатор не е променен: %s ПрезимеУдостовери се неизвестен потребител. Неизвестен потребителски контекстПотребител %s не може да бъде изтрит: %s. Потребител %s не може да бъде заключен: %s. Потребител %s не може да бъде изменен: %s. Потребител %s не може да бъде отключен: %s. Потребител %s не съществува. Несъответстващ потребител. Предупреждение: %ld Предупреждение: Група %jd не съществува. [ПАРАМЕТЪР...][ПАРАМЕТЪР...] [потребител][ПАРАМЕТЪР...] група[ПАРАМЕТЪР...] потребител`:' не е позволено в криптирана пароладостъпа забраненрезервното копие `%s' съществува и не е обикновен файлголемината на резервното копие не съвпадалошо id на потребител/групалошо име на потребител/групапроменя групата така, че да има даденото имезаменя името за влизане на потребителяcommon име на новия потребителконфигурационния файл `%s' е твърде голямгрешка при свързване с LDAP сървърагрешка при свързване с LDAP сървъра, първи опит като `%s': %sне може да бъде договорен TLS с LDAP сървъране може да бъде отворен конфигурационен файл `%s': %sне може да бъде прочетен конфигурационния файл `%s': %sне може да бъде установена версията на LDAP протокола на %dне може да stat конфигурационния файл `%s': %sне може да получи защитния контекст за `%s': %sгрешка при получаване подразбрания защитен контекст: %sне може да получи защитния контекст на `%s': %sне може да се отвори `%s': %sне може да се чете от `%s': %sне може да се установи защитния контекст в `%s': %sгрешка при получаване състоянието на `%s': %sне може да се пише в `%s': %sсъздава системна групасъздава системен потребителданните не са намерени във файладата на последна смяна на паролата в дни след 1/1/70дни за предупреждаване на потребителя преди изтичанетодиректория с файлове за новия потребителне създавай група със същото като на потребителя имене създавай домашни директориине създавай домашна директория за потребителяне създавай директории за съхранение на пощане премахвай личната група на потребителя, ако има такавазаписа няма атрибут %sзаписа няма атрибути %s или %sобектът от записа няма атрибут %sструктурата в записа няма атрибути %s или %sзаписа бе създаден без атрибути %s или %sзаписът вече присъства във файлапозицията с конфликт в името вече съществува във файлгрешка при свързване с kadm5 сървъра за услуга `%s' в областите `%s': %sгрешка при създаване на `%s': %sгрешка при създаване на запис в LDAP директорията: %sгрешка при създаване домашна директория за потребителгрешка при криптиране на паролатагрешка при инициализация на Cyrus SASL: %sгрешка при инициализация библиотеката на kerberosгрешка при инициализация на ldap библиотекатагрешка при зареждане на модулгрешка при заключване на файлгрешка при заключване на файл: %sгрешка при манипулиране атрибутите на терминалагрешка при промяна на LDAP директориен запис: %sгрешка при преместване домашната директория на потребителгрешка при отваряне на файлгрешка при анализ на потребителско име `%s' за kerberosгрешка при четене на файлгрешка при четене от терминалагрешка при четене на данните за `%s' от kerberosгрешка при четене атрибутите на терминалагрешка при премахване на запис в LDAP директорията: %sгрешка при премахване на домашна директория за потребителгрешка при преименуване на запис в LDAP директорията: %sгрешка при откриване на символ в модулагрешка при задаване парола за `%s'грешка при задаване парола в LDAP директорията за %s: %sгрешка при задаване атрибутите на терминалагрешка при получаване състоянието на файлгрешка при запис във файлфайл със записи на информация за потребителяобща грешкаgid за новата групасобствено име на новия потребителгрупа %jd няма имегрупа %s няма GIDне е намерена група %sгрупа за новия потребителгрупата няма нито име нито GIDдомашна директориядомашна директория за новия потребителномер на домашен телефон на новия потребителвътрешна грешка при инициализациятаневалиден IDневалидна стойност на атрибутневалидно комбиниране на модулневалиден номергрешна версия на библиотека/модулпоказвай параметрите за стареене за потребителяпоказвай членовете на посочената група вместо членството в групи на посочения потребителсписък администратори за добавянесписък администратори за премахванесписък членове на група за добавянесписък членове на група за премахванезаключва акаунтазаключва групамаксимум дни между смени на паролатаминимум дни между смени на паролатамодул `%s' не дефинира `%s'модула е деактивиран от конфигурациятагрешна версия на модул в `%s'премести съдържанието на домашната директорияимето съдържа контролни знациимето съдържа невалиден знак `%c'името съдържа не-ASCII знациимето съдържа интервалиимето не е зададеноимето е твърде дълго (%zu > %d)името е твърде късоимето започва с тиренова криптирана пароланова парола в прав текстняма намерен атрибут `%s'няма инициализираща функция %s в `%s'няма наличен shadow файл -- деактивираненяма такъв обект в LDAP директориятанедостатъчни праваняма да бъде изпълнено с администраторски праваброй дни след датата на изтичане на паролата, когато акаунтът да се счита за неактивенобектът нямаше атрибут %sобектът няма атрибут %sпоказвай информацията за членството по име, а не по UID/GIDдата на изтичане на паролата в дни след 1/1/70парола в прав текст за потребителяпарола в прав текст за употреба с групатаpre-hashed парола за потребителяpre-hashed парола за употреба с групатаподканване за всичко в информациятапрочети новата криптирана парола от дадения дескрипторпрочети новата парола в прав текст от дадения дескрипторпремахни домашната директория на потребителяномер на стая на новия потребителзадава GID за групазадава UID за потребителязадава common име за потребителзадава собствено име за потребителзадай парола на групата вместо на потребителязадава номер на домашен телефон на потребителзадава първичен GID за потребителязадава номер на стая на потребителзадава shell за потребителязадава фамилно име за потребителзадава номер на телефон на потребителshell за новия потребителуспешнофамилно име на новия потребителномер на телефон на новия потребителМодулите `%s' и `%s' не могат да се комбиниратuid за новия потребителнеизвестна грешкаотключва акаунтаотключва групаотключването ще направи паролата празно полеНеподдържана схема за криптиране на паролапотребител %jd няма имепотребител %s няма UIDне е намерен потребител %sпотребителят няма нито име нито UIDпотребителския обект нямаше атрибут %sпотребителския обект създаден без `%s'такова id на потребител/група вече се ползваимето на потребител/група вече се ползваlibuser-0.60~dfsg/po/ml.gmo0000644000175000017500000010503212226342604015626 0ustar tzafrirtzafrir35Qp* $4Yt"" (7 Ij</)'8`{*3)^(.((<e.$ !  "'#J!n#$#.2 al{%%C R_r     -$#Rv,,"(Kd kx#'8D@}! >Nem"!## , E U +c    % 1!7!Q!c!$w!!8!(!*"*G")r"*"0")")"#L#c#1#####!$!7$+Y$.$$3$G%N%)f%&%%!%#%&7&L&_&&v&(&$&&)&(';'0W'!'''&''' !(B(3b(!((( (()")=) [)f)u) ) )) )*"8*[*t*****%*# + .+O+'e++++ +-+&,.,C,"V,y,$,,,,C.#./S/[/qK0c0K!1>m1\1 2r2U3?d3a3U4n\4}4wI525?5\466788s91:J:L?;C;J;^<Hz<<IP==v>K??-@m@@A8BFB2CYC%DBD7DHE\EEkdFFmG}G=uHpHj$I>I*IKI0EJvJKJ(J8 KODK}KL .L,;LGhL(L<L*M6AMxM.M(MM1 N_>NN/O]OPSPL$QqQRlRS;+SdgSBSTZTj U1tU%UUSVW_WIQXeXOYHQYAY!Y<YS;ZZ'[[D\O\m-]-]] V^,b^^*^^U__`> aHHaQa|a`bqcwcdd9eef]gOhhdhhQi\iG4jc|jmj!Nkwpkkbl4mmXnnopRpbp^Uqq]RrdrssgtMuTuPuIvvOwwixyy}zzQ{O{J8|(|D|E|C7}D{}"}.}x~k~~q^Sn`€S#Fw:2T,hgxRq˃I=eenԅ"KUW\V׈QmZ</kJ4rGv!IS5 U3(6["L f'lO?$ +dKn7 VgiB,m&h.E#a`{\Pz8Z;0Hp%>jRQY e ]~9NuF^tbACX=wyT:*M@Dq-cx}_|)21Wos%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora/language/ml/) Language: ml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %sന് gid നമ്പര്‍ ലഭ്യ‌‌മല്ല. %s നിലവിലില്ല. %sന്റെ ഫിം‍ഗര്‍ ഇന്‍ഫോ മാറ്റുവാന്‍ %sന് അധികാരമില്ല %s മൂല്യം `%s': `:' അനുവദിക്കുന്നതല്ലഅക്കൌണ്ടിന്റെ കാലാവധി തീരുന്നു: %s അക്കൌണ്ട് സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല: %s. അക്കൌണ്ട് പൂട്ടപ്പെട്ടിരിക്കുന്നു. അക്കൌണ്ട് പൂട്ടിയിട്ടില്ല. %sന്റെആധികാരികത പരാജയം. -Lഉം -Uഉം വ്യ‌‌ക്തമാക്കിയിട്ടുണ്ട്. /etc/passwdന് തനതായൊരു പശ്ചാത്തലം ഒരുക്കാന്‍ സാദ്ധ്യ‌‌മല്ല %s നുള്ള finger വിവരത്തില്‍ മാറ്റം വരുത്തുന്നു. %s നുള്ള രഹസ്യവാക്ക് മാറ്റുന്നു. %sന്റെ ഷെല്‍ മാറ്റുന്നു. ഉപയോക്താവിന്റെ ഘടന പകര്‍‍ത്തുന്നു: %sഉപയോക്തൃ സൃഷ്ടിയിലെ Cyrus SASL പിശക്:ഉപയോക്താവിനെ നീക്കുന്നതില്‍ Cyrus SASL പിശക്: %sഉപയോക്താവിന്റെ തനത് ആട്രിബ്യൂട്ട് നാമങ്ങള്‍: ഉപയോക്താവിന്റെ തനത് ഒബ്ജക്റ്റ് ക്ലാസുകള്‍: ഈ-മെയില്‍ അഡ്രസ്സ്എന്‍ട്രി കാണ്‍മാനില്ല. `%s' ഉടമസ്ഥനെ മാറ്റുന്നതില്‍ പിഴവ്: %s%s സൃഷ്ടിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s. %sന് അക്കൌണ്ട് നിര്‍മ്മിക്കുന്നതില്‍ പിഴവ്: ലൈന്‍ തെറ്റായി രൂപപ്പെടുത്തിയിരിക്കുന്നു. `%s' എന്ന ഗ്രൂപ്പ് സൃഷ്ടിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s `%s' ന് GID %jd ആയി ഗ്രൂപ്പ് ഉണ്ടാക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s %sയ്ക്ക് ഹോം ഡയറക്ടറി സൃഷ്ടിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s %sന് ഉപയോക്തൃ അക്കൌണ്ട് ഉണ്ടാക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു : %s %s:ആരംഭിക്കുന്നതില്‍ പിശക്%s %s ആരംഭിക്കുന്നതില്‍ പിശക്: %s. PAM തുടങ്ങുന്നതില്‍ പിഴവ്. %s-ല്‍ തിരയുന്നതില്‍ പിഴവ്: %s. %sലേക്ക് %sനെ നീക്കുന്നതില്‍ പിഴവ്: %s. `%s' തുറക്കുന്നതില്‍ പിഴവ്: %s. ആര്‍‍ഗ്യു‌മെന്റുകള്‍ വ്യാകരിക്കുന്നതില്‍ പിഴവ്: %s. `%s' വായിക്കുന്നതില്‍ പിഴവ്: %s%sന് ആരംഭത്തിലുള്ള രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s %s എന്ന സംഘത്തിന് രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s. %s എന്ന ഉപയോക്താവിനു് രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s. `%s'എഴുതുന്നതില്‍ പിഴവ്: %sഅനുമതികള്‍ വേണ്ടെന്ന് വയ്ക്കുന്നതില്‍ പരാജയം. %sന്റെ കാലാവധി തീരുന്ന അറിയിപ്പ് പരിഷ്കരിക്കല്‍ പരാജയം%s %s എന്ന സംഘത്തിന് രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പരാജയപ്പെട്ടു: %s %s എന്ന ഉപയോക്താവിന്ന് രഹസ്യവാക്ക് ഉറപ്പിക്കുവാന്‍ സാധിച്ചില്ല: %s. finger informationല്‍ മാറ്റം വരുത്തി. finger informationല്‍ മാറ്റം വന്നിട്ടില്ല: ഇന്‍പുട്ടില്‍ പിഴവ്. finger informationല്‍ മാറ്റം വരുത്തിയില്ല: %s. മുഴുവന്‍ പേര്ഉപയോക്താവിന്റെ തനത് ആട്രിബ്യൂട്ടുകള്‍ ലഭ്യമാക്കുന്നു: തന്നിരിക്കുന്ന പേര്%jdഎന്ന ഗ്രൂപ്പ് നിലവിലില്ല %s എന്ന സംഘം നീക്കം ചെയ്യുവാന്‍ സാധിക്കുന്നില്ല: %s %s എന്ന ഗ്രൂപ്പ നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല: %s. %s എന്ന സംഘം പൂട്ടാന്‍ സാധിക്കുന്നില്ല: %s %s എന്ന സംഘത്തില്‍‍ മാറ്റം വരുത്തുവാന്‍ സാധിക്കുന്നില്ല: %s %sഎന്ന ഗ്രൂപ്പിനെ പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല: %s. %s എന്ന സംഘം തുറന്നുവിടാന്‍‍ സാധിക്കുന്നില്ല: %s %s എന്ന സംഘം നിലവിലില്ല. സംഘം സൃഷ്ടിക്കുന്നതില്‍ പരാജയപ്പെട്ടു: %s GID %jd ആയുളള സംഘത്തിന് സംഘനാമം ലഭ്യ‌‌മല്ല. വീട്ടിലെ ഫോണ്‍ നമ്പര്‍സജീവമല്ലാത്ത: %ld PAMലുള്ള ആന്തരീകമായ‍ പിഴവ് `%s'. ആന്തരീകമായ പിഴവ്. അസാധുവായ ID %s %s ഫീല്‍‍ഡിന്റെ തനത് മൂല്യം: %sഅസാധുവായ സംഘ ID%s അസാധുവായ ഉപയോക്തൃ ID %s Kerberos അഡ്മിന്‍ പ്രിന്‍സിപ്പല്‍അഡ്മിന്‍ പ്രിന്‍സിപ്പലിനുള്ള Kerberos രഹസ്യവാക്ക്Kerberos മണ്ഡലംLDAP Bind DNLDAP Bind രഹസ്യവാക്ക്LDAP SASL ചുമതലയുള്ള ഉപയോക്താവ്LDAP SASL ഉപയോക്താവ്LDAP സര്‍ച്ച് ബെയ്‌‌‌സ് DNLDAP സര്‍വര്‍ നാമംഒടുവിലത്തെ മാറ്റം: %s പരമാവധി: %ld ഏറ്റവും കുറഞ്ഞ: %ld ഒരിക്കലും ഇല്ലപുതിയ ഷെല്‍പുതിയ രഹസ്യവാക്ക്പുതിയ രഹസ്യവാക്ക് (ഉറപ്പ് വരുത്തുക)സംഘനാമം വ്യ‌‌ക്തമാക്കിയിട്ടില്ല, gid %dയ്ക്കും പേരില്ല. സംഘനാമം വ്യ‌‌ക്തമാക്കാഞ്ഞതിനാല്‍, %s ഉപയോഗിക്കുന്നു. സംഘനാമം വ്യ‌‌ക്തമാക്കിയിട്ടില്ല. GID %jd ആയിട്ടുളള ഗ്രൂപ്പ് നിലവിലില്ല, അതിനാല്‍ നീക്കം ചെയ്യുന്നില്ല. %sന് പുതിയ ഡയറക്ടറി ലഭ്യ‌‌മല്ല . %sന് പഴയ ഡയറക്ടറി ലഭ്യ‌‌മല്ല. ഉപയോക്തൃ നാമം വ്യ‌‌ക്തമാക്കിയിട്ടില്ല, uid %dയ്ക്ക് പേരില്ല. ഉപയോക്തൃനാമം വ്യ‌‌ക്തമാക്കാഞ്ഞതിനാല്‍, %s ഉപയോഗിക്കുന്നു. ഉപയോക്തൃനാമം വ്യ‌‌ക്തമാക്കിയിട്ടില്ല. ഓഫീസ്ഓഫീസിലെ ഫോണ്‍ നമ്പര്‍രഹസ്യവാക്കിനുള്ള കാലാവധി തീരുന്നു: %s രഹസ്യവാക്ക് നിര്‍ജീവം: %s രഹസ്യവാക്കില്‍ മാറ്റം വരുത്തിയത് റദ്ദാക്കിയിരിക്കുന്നു. രഹസ്യവാക്ക് മാറ്റിയിരിക്കുന്നു. രഹസ്യവാക്കുകള്‍ തമ്മില്‍ ചേരുന്നില്ല. Prompts പരാജയപ്പെട്ടു. Prompts വിജയിച്ചു. UID 0 ആയി അക്കൌണ്ട് തുറക്കുവാന്‍ അനുവദിക്കുന്നില്ല. സ്വതവേയുള്ള അപകടകാരിയായ `%s' ഹോം ഡയറക്ടറി ഉപയോഗിക്കുന്നതു് നിഷേധിക്കുന്നു%s-നു് സ്വതവേയുള്ള അപകടകാരിയായ `%s' ഹോം ഡയറക്ടറി ഉപയോഗിക്കുന്നതു് നിഷേധിക്കുന്നു %s എന്ന പേരുളള ഗ്രൂപ്പിനെ തെരയുന്നു. ID %jdആയ ഗ്രൂപ്പിനെ തിരയുന്നു. %s എന്ന പേരുളള ഉപയോക്താവിനെ തെരയുന്നു. ID %jdആയ ഉപയോക്താവിനെ തെരയുന്നു. ഷെല്‍ മാറ്റിയിരിക്കുന്നു. ഷെല്‍ മാറ്റിയിട്ടില്ല:%s ചെല്ലപ്പേര്അജ്ഞാതനായ ഉപയോക്താവ്. അപരിചിതമായ ഉപയോക്തൃ സന്ദര്‍ഭംUser %s എന്ന ഉപയോക്താവിനെ നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല : %s. %sഎന്ന ഉപയോക്താവ് ലോക്ക് ചെയ്യുവാന്‍ സാധിച്ചില്ല: %s. %s എന്ന ഉപയോക്താവിനെ പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല: %s. %sഎന്ന ഉപയോക്താവ് അണ്‍ലോക്ക് ചെയ്യുവാന്‍ സാധിച്ചില്ല: %s. %s എന്ന ഉപയോക്താവ് നിലവിലില്ല. ഉപയോക്താക്കള്‍ തമ്മില്‍ പൊരുത്തക്കേട്. മുന്നറിയിപ്പ്: %ld മുന്നറിയിപ്പ്: %jd എന്ന ഐഡിയുള്ള ഗ്രൂപ്പ് നിലവിലില്ല. [OPTION...][OPTION...] [ഉപയോക്താവ്][OPTION...] സംഘം[OPTION...] ഉപയോക്താവ്എന്‍ക്രിപ്റ്റ് ചെയ്തിട്ടുള്ള രഹസ്യവാക്കുകളില്‍ `:' അനുവദിക്കുന്നതല്ലപ്രവേശനം നിഷേധിച്ചിരിക്കുന്നു%s എന്ന ബാക്കപ്പ് ഫയല്‍‍ നിലവിലുണ്ട്, അത് ഒരു സാധാരണ ഫയലല്ലബാക്കപ്പ് ഫയലിന്റെ വലിപ്പത്തില്‍ പൊരുത്തക്കേട്അസാധുവായ ഉപയോക്തൃ/സംഘ idഅസാധുവായ ഉപയോക്തൃ/സംഘ നാമം`%s' ക്രമീകരണ ഫയല്‍ വളരെ വലുതാണ് LDAP സര്‍‍വറുമായി ബന്ധിപ്പിക്കാന്‍ സാധിച്ചില്ല LDAP സര്‍‍വറുമായി ബന്ധിപ്പിക്കാന്‍ സാധിച്ചില്ല, ആദ്യ ശ്രമം `%s': %sLDAP സെര്‍വറുമായി വിലപേശാന്‍ TLSന് കഴിഞ്ഞില്ല`%s' എന്ന ക്രമീകരണ‍ ഫയല്‍ തുറക്കുവാന്‍ സാധിച്ചില്ല: %s`%s'എന്ന ക്രമീകരണ ഫയല്‍ വായിക്കുവാന്‍ സാധിച്ചില്ല: %sLDAP പ്രോട്ടോക്കോള്‍ വേര്‍‍ഷന്‍ %dലേക്ക് ഉറപ്പിക്കാന്‍ സാധിച്ചില്ല`%s' എന്ന ക്രമീകരണ ഫയല്‍ stat ചെയ്യുവാന്‍ സാധിച്ചില്ല : %s`%s'- നുള്ള സെക്യൂരിറ്റി കോണ്‍ടെക്സ്റ്റ് ലഭ്യമാക്കുവാന്‍ സാധ്യമായില്ല: %sസ്വതവേയുള്ള സെക്യൂരിറ്റി കോണ്‍ടെക്സ്റ്റ ലഭ്യ‌‌മാക്കുവാന്‍ സാദ്ധ്യ‌‌മായില്ല: %s`%sന്റെ സെക്യൂരിറ്റി കോണ്‍ടെക്സ്റ്റ ലഭ്യ‌‌മാക്കുവാന്‍ കഴിഞ്ഞില്ല: %s`%s' തുറക്കുവാന്‍ സാധിച്ചില്ല: %s`%s' നിന്നും വായിക്കുവാന്‍ സാധിച്ചില്ല: %s `%sന്റെ തനത് സെക്യൂരിറ്റി കോണ്ടെക്സ്റ്റ് ഉറപ്പിക്കാന്‍ കഴിഞ്ഞില്ല:%s`%s' stat ചെയ്യുവാന്‍ സാധിച്ചില്ല: %s`%s'ലേക്ക് എഴുതുവാന്‍ സാധിച്ചില്ല : %sഡാറ്റാ ഫയലില്‍ ലഭ്യ‌‌മല്ലഎന്‍ടൈറ്റി %s എന്ന ആട്രിബ്യൂട്ട് ഇല്ലentityക്ക് %sഒ, അല്ലെങ്കില്‍ %s ഗുണഗണങ്ങളോ ഇല്ലentity object has no %s attributeentity ഘടനക്ക് %sഒ, അല്ലെങ്കില്‍ %s ഗുണഗണങ്ങളോ ഇല്ല%s അല്ലെങ്കില്‍ %s ആട്രിബ്യൂട്ടുകള്‍ ഇല്ലാതെയാണ് എന്‍ടൈറ്റി നിര്‍മ്മിച്ചിരിക്കുന്നത്ഫയലില്‍ ചേര്ത്തത് നിലനില്‍ക്കുന്നുഫയലിലുള്ള പൊരുത്തപ്പെടാത്ത പേരിലുള്ള എന്‍ട്രി`%s' എന്ന മണ്ഡലത്തില്‍‍ `%s' എന്ന സര്‍‍വീസിനായി kadm5 സര്‍‍വറുമായി കൊളുത്തുന്നതില്‍‍ പിഴവ്: %s`%s' നിര്മ്മിക്കുന്നതില്‍‍ പിഴവ്: %sഒരു LDAP ഡയറക്ടറി എന്‍ട്രി നിര്‍മ്മിക്കുന്നതില്‍ പിഴവ്: %sഉപയോക്താവിന് ഹോം ഡയറക്ടറി ഉണ്ടാക്കുന്നതില്‍ പിഴവ്രഹസ്യവാക്ക് എന്‍ക്രിപ്റ്റ് ചെയ്യുന്നതില്‍ പിഴവ് Cyrus SASL ആരംഭിക്കുന്നതില്‍ പിശക്:%skerberos ലൈബ്രറി ആരംഭിക്കുന്നതില്‍ പിഴവ് ldapലൈബ്രറി ആരംഭിക്കുന്നതില്‍ പിശക്മൊഡ്യൂള്‍ ലോഡ് ചെയ്യുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നുഫയല്‍ ലോക്ക് ചെയ്യുന്നതില്‍ പിഴവ്ഫയല്‍‍ ലോക്ക് ചെയ്യുന്നതില്‍ പിഴവ്: %sഅഗ്രിമത്തിന്റെ വൈശിഷ്ട്യങ്ങള്‍ കൈകാര്യം ചെയ്യുന്നതില്‍ പിഴവ്ഒരു LDAP ഡയറക്ടറി എന്‍ട്രിയില്‍ മാറ്റം വരുത്തുന്നതില്‍ പിഴവ്: %sഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി നീക്കമ് ചെയ്യുന്നതില്‍ പിഴവ്ഫയല്‍ തുറക്കുന്നതില്‍ പിഴവ്kerberosന് വേണ്ടി `%s' എന്ന ഉപയോക്തൃ നാമം വ്യാകരിക്കുന്നതില്‍ പിഴവ്ഫയല്‍ വായിക്കുന്നതില്‍ പിഴവ്ടെര്‍‍മിനലില്‍ നിന്നും വായിക്കുന്നതില്‍ പിഴവ്kerberosല്‍ നിന്നും `%s'ന് വിവരം വായിക്കുന്നതില്‍ പിഴവ്ടെര്‍‍മിനലിന്റെ ഗുണഗണങ്ങള്‍ വായിക്കുന്നതില്‍ പിഴവ്LDAP ഡയറക്ടറി എന്‍ട്രി നീക്കം ചെയ്യുന്നതില്‍ പിഴവ്: %sഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി നീക്കം ചെയ്യുന്നതില്‍ പിഴവ്LDAP ഡയറക്ടറി എന്‍ട്രിയുടെ പേര് മാറ്റുന്നതില്‍ പിഴവ്: %sമൊഡ്യൂ‌‌ളില്‍ പ്രതീകം തീരുമാനിക്കുന്നതില്‍ പിഴവ്`%s' നുള്ള രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പിഴവ്LDAP ഡയറക്ടറിയില്‍ %s നായുള്ള രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പിഴവ്: %sടെര്‍‍മിനലിന്റെ ഗുണഗണങ്ങള്‍ സജ്ജമാക്കുന്നതില്‍ പിഴവ്ഫയല്‍ stat ചെയ്യുന്നതില്‍ പിഴവ്ഫയല്‍‍ എഴുതുന്നതില്‍ പിഴവ്ജനറിക്ക് പിഴവ്%jdഎന്ന ഗ്രൂപ്പിന് പേരില്ലഗ്രൂപ്പ് %s-ന് GID ലഭ്യ‌‌മല്ലഗ്രൂപ്പിന് പേരോ GID-യോ ഇല്ലആന്തരീകമായ പ്രാരംഭ പിഴവ്അസാധുവായ ഐഡിഅസാധുവായ നമ്പര്‍ലൈബ്രറി/മൌഡ്യൂള്‍ പതിപ്പില്‍ പൊരുത്തക്കേട്'%s' മൊഡ്യൂള്‍ വ്യാ‌‌ഖ്യാനിച്ചിട്ടില്ല `%s'ക്രമീകരണം കൊണ്ട് മൊഡ്യൂള്‍ പ്രവര്‍‍ത്തനരഹിതമായിരിക്കുന്നു%sല്‍ മൊഡ്യൂള്‍ പതിപ്പില്‍‍ പൊരുത്തക്കേട്control ചിഹ്നങ്ങള്‍ പേരില്‍ അടങ്ങുന്നുപേരില്‍ '%c' എന്ന അസാധുവായ ചിഹ്നംnon-ASCII ചിഹ്നങ്ങള്‍ പേരില്‍ അടങ്ങുന്നുശുഭ്രസ്ഥലം പേരില്‍ അടങ്ങുന്നുപേര് ഉറപ്പാക്കിയിട്ടില്ലപേര് വളരെ വലുതാണ് (%zu > %d)പേര് വളരെ ചെറുതാണ്പേര് ഹൈഫന്‍ കൊണ്ട് തുടങ്ങുന്നു%s എന്ന അട്രിബ്യൂട്ട് കണ്ടുകിട്ടിയില്ല%sഎന്ന പ്രാരംഭ ധര്മ്മം `%s'ല്‍ ലഭ്യ‌‌മല്ലഷാഡോ ഫയല്‍ ലഭ്യ‌‌മല്ല -- ദുര്‍ബ്ബലമാക്കുന്നുLDAP ഡയറക്ടറിയില്‍ അങ്ങനെ ഒരു ഒബ്ജക്റ്റില്ലമതിയായ വിശേഷാവകാശങ്ങളില്ലസൂപ്പര്‍ ഉപയോക്താവായി നിര്‍‌വ്വഹിക്കുന്നില്ലഒബ്ജക്റ്റിന് %s എന്ന അട്രിബ്യൂട്ടില്ലഒബ്ജക്റ്റിന് %s എന്ന അട്രിബ്യൂട്ടില്ലവിജയിച്ചുഅജ്ഞാത പിഴവ്അണ്‍ലോക്കിംഗ് ചെയ്താല്‍ രഹസ്യവാക്കിനുള്ള ഫീല്‍‍ഡ് കാലിയാകുംപിന്തുണ ലഭ്യമല്ലാത്ത രഹസ്യവാക്ക് എന്‍ക്രിപ്ഷന്‍ സ്കീം%jd എന്ന ഉപയോക്താവിന് പേരില്ല%s എന്ന ഉപയോക്താവിന് UID ലഭ്യ‌‌മല്ലഉപയോഗിക്കുന്ന ആളിന് പേരോ UID-യോ ഇല്ലഉപയോക്തൃ ഒബ്ജക്റ്റിന് %s ആട്രിബ്യൂ‌‌ട്ടുകളില്ല`%s' ഇല്ലാതെയാണ് ഉപയോക്തൃ ഒബ്ജക്റ്റ് സൃഷ്ടിക്കപ്പെട്ടത്ഉപയോക്തൃ‍/ ഉപയോഗത്തിലുളള സംഘ idഉപയോക്തൃ‍/ ഉപയോഗത്തിലുളള സംഘനാമംlibuser-0.60~dfsg/po/pt.po0000644000175000017500000010720212226342570015500 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Rui Gouveia , 2010, 2011, 2012 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora/" "language/pt/)\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Não foi possível abandonar privilégios.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Erro interno.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s não está autorizado a modificar os dados de 'finger' de %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Contexto de utilizador desconhecido" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Não é possível configurar o contexto por omissão de /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Erro ao inicializar PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Autenticação falhou para %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Erro interno no PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Utilizador desconhecido autenticado.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Utilizador trocado.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPÇÃO...] utilizador" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Erro ao processar argumentos: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Nenhum nome de utilizador indicado.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Erro ao inicializar %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Utilizador %s não existe.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "A conta está bloqueada.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "A conta não está bloqueada.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Mínimo:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Máximo:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Aviso:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inactivo:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nunca" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Última Alteração:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Senha Expira:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Senha Inactiva:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Conta Expira:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Não foi possível alterar a informação de envelhecimento de %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPÇÃO...] [utilizador]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Nenhum nome de utilizador indicado, nenhum nome para o uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "A alterar os dados de 'finger' de %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Nome Completo" #: apps/lchfn.c:146 msgid "Surname" msgstr "Último Nome" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Primeiro Nome" #: apps/lchfn.c:167 msgid "Office" msgstr "Escritório" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefone do Escritório" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefone de Casa" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Endereço de E-mail" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Dados do 'finger' não alterados: erro de inserção.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Dados do 'finger' alterados.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Dados do 'finger' não alterados: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "A alterar a 'shell' de %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nova 'Shell'" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "'Shell' não alterada: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "'Shell' alterada.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPÇÃO...] grupo" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Nenhum nome de grupo indicado.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "ID de grupo inválido %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "A criação do grupo falhou: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "O grupo %s não existe.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "O grupo %s não pode ser apagado: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Foi indicado -L e -U ao mesmo tempo.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Não foi possível alterar a senha do grupo %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "O grupo %s não pode ser trancado: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "O grupo %s não pode ser destrancado: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "O grupo %s não pode ser modificado: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Erro ao procurar o %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nenhum nome de grupo indicado, a utilizar %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Nenhum nome de grupo indicado, nenhum nome para o gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nenhum nome de utilizador indicado, a utilizar %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s não existe\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPÇÃO...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Erro ao abrir `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Erro ao criar conta para `%s': linha formatada incorrectamente.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ID de utilizador inválido %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "A recusar a criação de uma conta com o UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Erro ao criar grupo para `%s' com o GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "A recusar utilizar directório pessoal perigoso `%s' para %s por omissão\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Erro ao criar a directoria pessoal de %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Erro ao definir a senha inicial de %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Erro ao criar a conta para o utilizador %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "A modificar a senha de %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nova senha" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nova senha (confirmação)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "As senhas não condizem, tente novamente.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Alteração de senha cancelada.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Erro ao ler do descritor do ficheiro %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Erro ao alterar a senha do utilizador %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Erro ao alterar a senha do grupo %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Senha alterada.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "O grupo %jd não existe.\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Erro ao criar grupo `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "A criação da conta falhou: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Erro ao criar %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Utilizador %s não pode ser apagado: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s não tem um número gid.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Não existe grupo com o GID %jd, não será removido.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "O grupo com o GID %jd não tinha nome.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "O grupo %s não pode ser apagado: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "erro ao remover a directoria pessoal do utilizador" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Não foi possível mudar a senha do utilizador %s: %s\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "O utilizador %s não pode ser bloqueado: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "O utilizador %s não pode ser desbloqueado: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Atenção: O grupo com o ID %jd não existe.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "O utilizador %s não pode ser modificado: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "O grupo %s não pode ser modificado: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Não existe directoria pessoal antiga para %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Não existe nova directoria pessoal para %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Erro ao mover %s para %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "não foi possível abrir ficheiro de configuração `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "não foi possível obter dados do ficheiro de configuração `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "o ficheiro de configuração `%s' é demasiado grande" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "não foi possível ler o ficheiro de configuração `%s': %s" #: lib/error.c:62 msgid "success" msgstr "sucesso" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "módulo desactivado por configuração" #: lib/error.c:66 msgid "generic error" msgstr "erro genérico" #: lib/error.c:68 msgid "not enough privileges" msgstr "não tem privilégios suficientes" #: lib/error.c:70 msgid "access denied" msgstr "acesso negado" #: lib/error.c:72 msgid "bad user/group name" msgstr "nome do utilizador/grupo inválido" #: lib/error.c:74 msgid "bad user/group id" msgstr "id do utilizador/grupo inválido" #: lib/error.c:76 msgid "user/group name in use" msgstr "nome do utilizador/group em uso" #: lib/error.c:78 msgid "user/group id in use" msgstr "id do utilizador/group em uso" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "erro ao manipular atributos da consola" #: lib/error.c:82 msgid "error opening file" msgstr "erro ao abrir ficheiro" #: lib/error.c:84 msgid "error locking file" msgstr "erro ao bloquear ficheiro" #: lib/error.c:86 msgid "error statting file" msgstr "erro ao obter dados do ficheiro" #: lib/error.c:88 msgid "error reading file" msgstr "erro ao ler ficheiro" #: lib/error.c:90 msgid "error writing to file" msgstr "erro ao escrever para ficheiro" #: lib/error.c:92 msgid "data not found in file" msgstr "dados não encontrados no ficheiro" #: lib/error.c:94 msgid "internal initialization error" msgstr "erro interno de inicialização" #: lib/error.c:96 msgid "error loading module" msgstr "erro ao carregar módulo" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "erro ao resolver símbolo em módulo" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "versões não compatíveis de biblioteca/módulo" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "desbloquear tornaria o campo de senha vazio" #: lib/error.c:105 msgid "invalid attribute value" msgstr "valor de atributo inválido" #: lib/error.c:107 msgid "invalid module combination" msgstr "combinação de módulos inválida" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "erro desconhecido" #: lib/misc.c:240 msgid "invalid number" msgstr "número inválido" #: lib/misc.c:254 msgid "invalid ID" msgstr "ID inválido" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "não existe função de inicialização %s em `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "versão não compatível de módulo em `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "o módulo `%s' não define o `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "erro ao ler atributos da consola" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "erro ao modificar atributos da consola" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "erro ao ler da consola" #: lib/user.c:218 msgid "name is not set" msgstr "nome não foi configurado" #: lib/user.c:223 msgid "name is too short" msgstr "o nome é demasiado curto" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "o nome é demasiado comprido (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "o nome contém caracteres não-ASCII" #: lib/user.c:242 msgid "name contains control characters" msgstr "o nome contém caracteres de controlo" #: lib/user.c:249 msgid "name contains whitespace" msgstr "o nome contém espaços em branco" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "o nome começa com o hífen" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "o nome contém o caracter inválido `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "o utilizador %s não tem um UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "o grupo %s não tem um GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "o utilizador %jd não tem nome" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "O grupo %jd não tem nome" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "o utilizador não tem nome nem UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "o grupo não tem nome nem GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "A recusar utilizar directório pessoal perigoso `%s' por omissão" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Valor por omissão do campo inválido %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "erro ao bloquear o ficheiro: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "não foi possível obter o contexto de segurança por omissão: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "não foi possível obter o contexto de segurança de `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" "não foi possível configurar o contexto de segurança por omissão para `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "não foi possível determinar o contexto de segurança para `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "não foi possível abrir `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "não possível obter dados `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "erro ao criar `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "ficheiro de cópia de segurança `%s' existe e não é um ficheiro regular" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Erro ao mudar o dono de `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Erro ao mudar o modo de `%s': %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Erro ao ler `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Erro ao escrever `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "tamanho do ficheiro de cópia de segurança difere" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s valor `%s': `:' não permitido" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "não foi possível ler de `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "entrada já está presente no ficheiro" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "não foi possível escrever para `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "a entidade não tem o atributo %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "entrada com o mesmo nome já está presente no ficheiro" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' não permitido em senhas cifradas" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "erro ao cifrar a senha" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "os módulos `%s' e `%s' não podem ser combinados" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "não vou executar com privilégios de super-utilizador" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "o ficheiro shadow não está presente -- a desactivar" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "erro ao ligar ao servidor kadm5 para o serviço `%s' no reino `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "erro ao inicializar a biblioteca kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "erro ao processar o nome de utilizador `%s' para o kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "a estrutura da entidade não tem atributos %s ou %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "a entidade não tem atributos %s ou %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entidade foi criada sem os atributos %s ou %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "erro ao ler informações para `%s' do kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entidade não tem o atributo %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "erro ao definir a senha para `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Reino Kerberos" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Administrador Principal do Kerberos" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Senha Kerberos para o Administrador Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "erro ao inicializar a biblioteca ldap" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "não foi possível definir o protocolo LDAP para a versão %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "não foi possível negociar TLS com o servidor LDAP" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "não foi possível ligar ao servidor LDAP" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" "não foi possível ligar ao servidor LDAP, primeira tentativa como `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "o objecto utilizador não tem o atributo %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "o objecto utilizador foi criado sem `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "erro ao criar uma entrada na directoria LDAP: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "erro ao modificar entrada na directoria LDAP: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "erro ao alterar o nome da entrada na directoria LDAP: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "o objecto não tinha o atributo %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "erro ao apagar entrada na directoria LDAP: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "o objecto não tem o atributo %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "Esquema de cifras de passwords não suportado" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "objecto não encontrada na directoria LDAP" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "o atributo `%s' não foi encontrado" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "erro ao definir a senha na directoria LDAP para %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Nome do Servidor LDAP" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Base DN de Pesquisa LDAP" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "DN de Ligação LDAP" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "Senha de Ligação LDAP" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "Utilizador SASL LDAP" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "Utilizador Autorizado SASL LDAP" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Erro ao criar utilizador Cyrus SASL: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Erro ao remover utilizador Cyrus SASL : %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "erro ao inicializar Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "erro ao criar a directoria pessoal do utilizador" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "erro ao remover a directoria pessoal do utilizador" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "erro ao mover a directoria pessoal do utilizador" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Erro ao inicializar %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "ID inválido %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "A procurar pelo grupo com o ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "A procurar pelo grupo com o nome %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "A procurar pelo utilizador com o ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "A procurar pelo utilizador com o nome %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Entrada não encontrada.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Perguntas sucederam.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Perguntas falharam.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Classes de objectos por omissão dos utilizadores:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Nomes dos atributos por omissão dos utilizadores:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "A obter atributos por omissão dos utilizadores:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "A copiar estrutura do utilizador:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s não tinha uma directoria pessoal.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Erro ao apagar %s: %s.\n" libuser-0.60~dfsg/po/cs.po0000644000175000017500000011365612226342567015502 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Adam Pribyl , 2008 # Zdenek Chmelar , 2013 # Jan Varta , 2013 # Milan Kerslager , 2002 # Miloslav Trmač , 2011-2013 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-10-12 21:41+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Czech (http://www.transifex.com/projects/p/fedora/language/" "cs/)\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Chyba při zahazování práv.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Interní chyba.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s není autorizován měnit informace finger o %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Neznámý kontext uživatele" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Nemohu nastavit implicitní kontext pro /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Chyba při inicializaci PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Chyba při autentizaci %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Interní chyba PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Autentizován neznámý uživatel.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Uživatel se neshoduje.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "ptát se na všechny informace" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "vypsat informace o stárnutí pro uživatele" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "minimum dní mezi změnami hesla" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "DNY" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "maximum dní mezi změnami hesla" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "datum poslední změny hesla ve dnech od 1. 1. 1970" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "počet dní po datu vypršení hesla, kdy je účet považován za neaktivní" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "datum vypršení hesla ve dnech od 1. 1. 1970" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "dny před vypršením, kdy začít varovat uživatele" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[VOLBY...] uživatel" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Chyba při zpracovávání argumentů: `%s'.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Nebylo zadáno jméno uživatele.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Chyba při inicializaci %s: %s\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Uživatel %s neexistuje.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Účet je zablokován.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Účet není zablokován.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maximum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Maximum:\tŽádné\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Varování:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Neaktivní:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Neaktivní:\tNikdy\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Musí změnit heslo při příštím přihlášení" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nikdy" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Poslední změna:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Heslo vyprší:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Heslo neaktivní:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Účet vyprší:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Nemohu změnit informace o %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[VOLBY...] [uživatel]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Nebylo zadáno jméno uživatele, chybí jméno pro uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Měním údaje finger pro %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Plné jméno" #: apps/lchfn.c:146 msgid "Surname" msgstr "Příjmení" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Křestní jméno" #: apps/lchfn.c:167 msgid "Office" msgstr "Kancelář" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Telefon do kanceláře" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefon domů" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-mailová adresa" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Údaje finger nezměněny: chyba vstupu.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Údaje finger změněny.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Údaje finger nezměněny: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Měním shell pro %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Nový shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell nebyl změněn: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell změněn.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid pro novou skupinu" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "ČÍSLO" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "vytvořit systémovou skupinu" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[VOLBY...] skupina" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Nebylo zadáno jméno skupiny.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Neplatné ID skupiny %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Chyba při vytváření skupiny: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Skupina %s neexistuje.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Skupinu %s nelze odstranit: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "nastavit GID pro skupinu" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "změnit skupinu, aby měla zadaný název" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NÁZEV" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "nešifrované heslo, které pro skupinu použít" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "ŘETĚZEC" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "předhashované heslo, které pro skupinu použít" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "seznam správců, které přidat" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "seznam správců, které odstranit" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "seznam členů skupiny, které přidat" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "seznam členů skupiny, které odstranit" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "zamknout skupinu" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "odemknout skupinu" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Použito zároveň -L a -U.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Nemohu nastavit heslo skupinu %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Skupinu %s nelze uzamknout: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Skupinu %s nelze odemknout: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Skupinu %s nelze změnit: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Chyba při vyhledávání %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "vypsat členy zadané skupiny místo členství ve skupinách pro zadaného " "uživatele" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "vypsat informace o členství jen podle názvu, ne UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nebylo zadáno jméno skupiny, používám %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Nebylo zadáno jméno skupiny, chybí jméno pro gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nebylo zadáno jméno uživatele, používám %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s neexistuje\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "soubor se záznamy informací o uživatelích" #: apps/lnewusers.c:47 msgid "PATH" msgstr "CESTA" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "nevytvářet domovské adresáře" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "nevytvářet poštovní spooly" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[VOLBY...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Chyba při otevírání '%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Chyba při vytváření účtu pro '%s': nesprávně formátovaný řádek.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Neplatné ID uživatele %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Odmítám vytvořit účet s UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Chyba při vytváření skupiny pro `%s' s GID %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "Odmítám implicitně použít nebezpečný domovský adresář `%s' pro %s\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Chyba při vytváření domovského adresáře pro %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Chyba vytváření pošty pro %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "chyba při nastavování hesla pro %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Chyba při vytváření uživatelského účtu pro %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "nastavit heslo skupiny místo hesla uživatele" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "nové nešifrované heslo" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "nové šifrované heslo" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "číst nové nešifrované heslo z daného deskriptoru" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "číst nové šifrované heslo z daného deskriptoru" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Měním heslo pro %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nové heslo" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nové heslo (potvrďte)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Hesla nesouhlasí, zkuste to znovu.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Změna hesla zrušena.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Chyba při čtení z deskriptoru souboru %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Chyba při nastavování hesla pro uživatele %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Chyba při nastavování hesla pro skupinu %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Heslo změněno.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "vytvořit systémového uživatele" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "informace GECOS pro nového uživatele" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "domovský adresář pro nového uživatele" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "adresář se soubory pro nového uživatele" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "shell pro nového uživatele" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "uid pro nového uživatele" #: apps/luseradd.c:69 msgid "group for new user" msgstr "skupina pro nového uživatele" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "nevytvářet domovský adresář pro uživatele" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "nevytvářet skupinu se stejným názvem jako uživatel" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "obecné jméno nového uživatele" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "křestní jméno nového uživatele" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "příjmení nového uživatele" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "číslo místnosti nového uživatele" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "telefonní číslo nového uživatele" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "domácí telefonní číslo nového uživatele" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Skupina %jd neexistuje\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Chyba při vytváření skupiny `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Vytváření účtu selhalo: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Chyba při vytváření %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Chyba vytváření pošty: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "neodstraňovat soukromou skupinu uživatele, pokud ji má" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "odstranit uživatelův domovský adresář" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Uživatele %s nelze odstranit: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s nemá GID číslo.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Skupina s GID %jd neexistuje, neodstraňuji.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Skupina s GID %jd nemá jméno skupiny.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Skupinu %s nelze odstranit: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "chyba při odstraňování domovského adresáře pro uživatele" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Chyba odstraňování pošty: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "informace GECOS" #: apps/lusermod.c:60 msgid "home directory" msgstr "domovský adresář" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "přesunout obsah domovského adresáře" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "nastavit shell pro uživatele" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "nastavit UID pro uživatele" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "nastavit primární GID pro uživatele" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "změnit přihlašovací jméno pro uživatele" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "nešifrované heslo pro uživatele" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "předhashované heslo pro uživatele" #: apps/lusermod.c:75 msgid "lock account" msgstr "zamknout účet" #: apps/lusermod.c:78 msgid "unlock account" msgstr "odemknout účet" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "nastavit obecné jméno pro uživatele" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "nastavit křestní jméno pro uživatele" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "nastavit příjmení pro uživatele" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "nastavit číslo místnosti pro uživatele" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "nastavit telefonní číslo pro uživatele" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "nastavit domácí telefonní číslo pro uživatele" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Chyba při nastavování hesla pro uživatele %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Uživatele %s nelze uzamknout: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Uživatele %s nelze odemknout: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Varování: Skupina s ID %jd neexistuje.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Uživatele %s nelze změnit: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Skupinu %s nelze změnit: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Starý domovský adresář pro %s neexistuje.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Nový domovský adresář pro %s nebyl vytvořen.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Chyba při přesunu %s do %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "nemohu otevřít soubor s nastavením `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "nemohu stat soubor s nastavením `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "soubor s nastavením `%s' je příliš velký" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "nemohu číst soubor s nastavením `%s': %s" #: lib/error.c:62 msgid "success" msgstr "úspěch" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modul zakázán v konfiguraci" #: lib/error.c:66 msgid "generic error" msgstr "všeobecná chyba" #: lib/error.c:68 msgid "not enough privileges" msgstr "nedostatečné oprávnění" #: lib/error.c:70 msgid "access denied" msgstr "přístup odepřen" #: lib/error.c:72 msgid "bad user/group name" msgstr "chybné jméno uživatele/skupiny" #: lib/error.c:74 msgid "bad user/group id" msgstr "chybné ID uživatele/skupiny" #: lib/error.c:76 msgid "user/group name in use" msgstr "jméno uživatele/skupiny je již používáno" #: lib/error.c:78 msgid "user/group id in use" msgstr "ID uživatele/skupiny je již používáno" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "chyba při manipulaci s atributy terminálu" #: lib/error.c:82 msgid "error opening file" msgstr "chyba při otevírání souboru" #: lib/error.c:84 msgid "error locking file" msgstr "chyba při zamykání souboru" #: lib/error.c:86 msgid "error statting file" msgstr "chyba při zjišťování údajů o souboru" #: lib/error.c:88 msgid "error reading file" msgstr "chyba při čtení souboru" #: lib/error.c:90 msgid "error writing to file" msgstr "chyba při zápisu do souboru" #: lib/error.c:92 msgid "data not found in file" msgstr "data nebyla v souboru nalezena" #: lib/error.c:94 msgid "internal initialization error" msgstr "interní chyba při inicializaci" #: lib/error.c:96 msgid "error loading module" msgstr "chyba při zavádění modulu" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "chyba při zpracování symbolů v modulu" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "nesouhlasí verze knihovny a modulu" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "po odemčení by pole hesla bylo prázdné" #: lib/error.c:105 msgid "invalid attribute value" msgstr "neplatná hodnota atributu" #: lib/error.c:107 msgid "invalid module combination" msgstr "neplatná kombinace modulů" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "domovský adresář pro nového uživatele" #: lib/error.c:115 msgid "unknown error" msgstr "neznámá chyba" #: lib/misc.c:240 msgid "invalid number" msgstr "neplatné číslo" #: lib/misc.c:254 msgid "invalid ID" msgstr "neplatné ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "chybí inicializační funkce %s v '%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "nesouhlasí verze modulu v '%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "modul `%s' nedefinuje `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "chyba při čtení atributů terminálu" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "chyba při nastavování atributů terminálu" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "chyba při čtení z terminálu" #: lib/user.c:218 msgid "name is not set" msgstr "jméno není nastaveno" #: lib/user.c:223 msgid "name is too short" msgstr "jméno je příliš krátké" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "jméno je příliš dlouhé (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "jméno obsahuje ne-ASCII znaky" #: lib/user.c:242 msgid "name contains control characters" msgstr "jméno obsahuje řídící znaky" #: lib/user.c:249 msgid "name contains whitespace" msgstr "jméno obsahuje mezery" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "jméno začíná pomlčkou" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "jméno obsahuje neplatný znak `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "uživatel %s nemá UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "uživatel %s nenalezen" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "skupina %s nemá GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "skupina %s nenalezena" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "uživatel %jd nemá jméno" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "skupina %jd nemá jméno" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "uživatel nemá ani jméno, ani UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "skupina nemá ani jméno, ani GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Odmítám implicitně použít nebezpečný domovský adresář `%s'" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Neplatná implicitní hodnota pole %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "chyba při zamykání souboru: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "nemohu získat implicitní kontext zabezpečení: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "nemohu získat kontext zabezpečení `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "nemohu nastavit implicitní kontext zabezpečení na `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "nemohu určit kontext zabezpečení pro `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "nemohu otevřít `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "nemohu zjistit informace o `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "chyba při vytváření `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "záloha souboru '%s' existuje a není to normální soubor" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Chyba při změně vlastníka `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Chyba při změně módu `%s': %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Chyba při čtení '%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Chyba při zápisu `%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "nesouhlasí velikost záložního souboru" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s hodnota `%s': `:' není povoleno" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "nemohu číst z `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "položka je již v souboru obsažena" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "nemohu zapsat do `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "objekt entita nemá atribut %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "položka s kolidujícím názvem je již v souboru obsažena" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' není povoleno v šifrovaném hesle" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "chyba při šifrování hesla" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "moduly `%s' a `%s' nemohou být kombinovány" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "nespuštěno s právy administrátora (root)" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "chybí soubor shadow -- zakazuji" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "chyba při spojování s kadm5 serverem pro službu '%s' v realm '%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "chyba při inicializaci knihovny kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "chyba při zpracovávání jména uživatele '%s' pro kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "struktura entity nemá %s nebo %s atributy" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entita nemá %s nebo %s atributy" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "entita vytvořena bez %s nebo %s atributů" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "chyba při čtení informací pro '%s' z kerberosu" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entita nemá atribut %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "chyba při nastavování hesla pro '%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Realm Kerberosu" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Heslo pro Kerberos Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "chyba při inicializaci LDAP knihovny" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "nemohu nastavit protokol LDAP na verzi %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "nemohu domluvit TLS s LDAP serverem" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "nemohu se připojit k LDAP serveru" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "nemohu se připojit k LDAP serveru, první pokus jako `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "objekt uživatel nemá atribut %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "objekt uživatel byl vytvořen bez '%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "chyba při tvorbě LDAP položky: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "chyba při modifikaci LDAP položky: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "chyba při přejmenovávání LDAP položky: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "objekt nemá atribut %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "chyba při odstraňování LDAP položky: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "objekt nemá atribut %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "nepodporované schéma šifrování hesla" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "není objekt v LDAP adresáři" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "atribut '%s' nenalezen" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "chyba při nastavování hesla v LDAP adresáři pro %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Jméno LDAP serveru" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind heslo" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL uživatel" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL uživatel pro autentizaci" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Chyba Cyrus SASL při vytváření uživatele: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Chyba Cyrus SASL při odstraňování uživatele: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "chyba při inicializaci Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "chyba při vytváření domovského adresáře pro uživatele" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "chyba při odstraňování domovského adresáře pro uživatele" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "chyba při přesouvání domovského adresáře pro uživatele" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Chyba při inicializaci %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Neplatné ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Hledám skupinu s ID %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Hledám skupinu pojmenovanou %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Hledám uživatele s ID %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Hledám uživatele se jménem %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Položka nenalezena.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Výzvy uspěly.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Výzvy selhaly.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Implicitní třídy objektů uživatel:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Implicitní jména atributů uživatele:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Načítám implicitní atributy uživatele:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kopíruji uživatelskou strukturu:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s nemá domovský adresář.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Chyba při odstraňování %s: %s.\n" libuser-0.60~dfsg/po/bg.po0000644000175000017500000013427012226342567015460 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Boril Gourinov , 2004 # Miloslav Trmač , 2011 # Valentin Laskov , 2011-2013 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-08-16 20:04+0000\n" "Last-Translator: Valentin Laskov \n" "Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora/" "language/bg/)\n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Неуспешен отказ от привилегии.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Вътрешна грешка.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s не е оторизиран да променя информацията на %s\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Неизвестен потребителски контекст" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Не може да установи контекста за /etc/passwd\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Грешка при инициализиране на PAM.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Неуспешно удостоверяване на %s.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Вътрешна грешка на PAM `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Удостовери се неизвестен потребител.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Несъответстващ потребител.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "подканване за всичко в информацията" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "показвай параметрите за стареене за потребителя" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "минимум дни между смени на паролата" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "ДНИ" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "максимум дни между смени на паролата" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "дата на последна смяна на паролата в дни след 1/1/70" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" "брой дни след датата на изтичане на паролата, когато акаунтът да се счита за " "неактивен" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "дата на изтичане на паролата в дни след 1/1/70" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "дни за предупреждаване на потребителя преди изтичането" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[ПАРАМЕТЪР...] потребител" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Грешка при анализа на аргументите: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Не е посочено име на потребител.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Грешка при инициализацията на %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Потребител %s не съществува.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Акаунта е заключен.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Акаунта не е заключен.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Минимум:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Максимум:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Максимум:\tНяма\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Предупреждение:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Неактивен:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Неактивен:\tНикога\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Трябва да промени паролата при следващото влизане" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Никога" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Последна промяна:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Срокът на паролата изтича:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Паролата е неактивна:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Акаунтът изтича на:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Неуспех при промяна на информацията за срока за %s: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[ПАРАМЕТЪР...] [потребител]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Не е посочено име на потребител, няма име за uid %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Промяна на finger информацията за %s.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Пълно име" #: apps/lchfn.c:146 msgid "Surname" msgstr "Презиме" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Лично име" #: apps/lchfn.c:167 msgid "Office" msgstr "Работа" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Служебен телефон" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Домашен телефон" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Електронна поща" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger информацията не е променена: грешен вход.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger информацията е променена.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger информацията не е променена: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Промяна на командния интерпретатор за %s.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Нов команден интерпретатор" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Командният интерпретатор не е променен: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Командният интерпретатор е променен.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "gid за новата група" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "NUM" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "създава системна група" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[ПАРАМЕТЪР...] група" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Не е посочено име на група.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Невалиден групов идентификатор %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Неуспех при създаване на група: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Група %s не съществува.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Група %s не може да бъде премахната: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "задава GID за група" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "променя групата така, че да има даденото име" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "ИМЕ" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "парола в прав текст за употреба с групата" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "НИЗ" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "pre-hashed парола за употреба с групата" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "списък администратори за добавяне" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "списък администратори за премахване" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "списък членове на група за добавяне" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "списък членове на група за премахване" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "заключва група" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "отключва група" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "И -L и -U са указани едновременно.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Неуспешно задаване на парола за група %s: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Група %s не може да бъде заключена: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Група %s не може да бъде отключена: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Група %s не може да бъде модифицирана: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Грешка при търсене на %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "показвай членовете на посочената група вместо членството в групи на " "посочения потребител" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "показвай информацията за членството по име, а не по UID/GID" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Не е посочено име на група, ще бъде използвана %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Не е посочено име на група, няма име за gid %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Не е посочен потребител, ще бъде използван %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s не съжествува\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "файл със записи на информация за потребителя" #: apps/lnewusers.c:47 msgid "PATH" msgstr "ПЪТ" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "не създавай домашни директории" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "не създавай директории за съхранение на поща" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[ПАРАМЕТЪР...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Грешка при отваряне на `%s': %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Грешка при създаване на потребител `%s': некоректно форматиран ред.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Невалиден потребителски идентификатор %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Отказано създаването на потребител с UID 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "" "Грешка при създаването на група за `%s' с групов идентификатор %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Отказано използването на опасна домашна директория `%s' за %s по " "подразбиране\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Грешка при създаване на домашна директория за %s: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Грешка при създаване на mail spool за %s: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Грешка при задаване начална парола за %s: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Грешка при създаване на потребителски акаунт за %s: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "задай парола на групата вместо на потребителя" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "нова парола в прав текст" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "нова криптирана парола" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "прочети новата парола в прав текст от дадения дескриптор" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "прочети новата криптирана парола от дадения дескриптор" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Промяна паролата на %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Нова парола" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Нова парола (потвърждение)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Паролите не съвпадат, опитайте отново.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Смяната на паролата прекъсната.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Грешка при четене от дескриптора на файл %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Грешка при задаване паролата за потребител %s: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Грешка при задаване паролата за група %s: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Паролата е променена.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "създава системен потребител" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "GECOS информация за новия потребител" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "домашна директория за новия потребител" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "директория с файлове за новия потребител" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "shell за новия потребител" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "uid за новия потребител" #: apps/luseradd.c:69 msgid "group for new user" msgstr "група за новия потребител" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "не създавай домашна директория за потребителя" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "не създавай група със същото като на потребителя име" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "common име на новия потребител" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "собствено име на новия потребител" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "фамилно име на новия потребител" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "номер на стая на новия потребител" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "номер на телефон на новия потребител" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "номер на домашен телефон на новия потребител" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Група %jd не съществува\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Грешка при създаване на група `%s': %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Неуспех при създаването на акаунт: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Грешка при създаване на %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Грешка при създаване на mail spool: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "не премахвай личната група на потребителя, ако има такава" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "премахни домашната директория на потребителя" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Потребител %s не може да бъде изтрит: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s нямаше gid номер.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Не съществува група с идентификатор %jd, не може да се премахне.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Групата с идентификатор %jd нямаше име.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Група %s не може да бъде изтрита: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "грешка при премахване на домашна директория за потребител" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Грешка при премахване на mail spool: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS информация" #: apps/lusermod.c:60 msgid "home directory" msgstr "домашна директория" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "премести съдържанието на домашната директория" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "задава shell за потребителя" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "задава UID за потребителя" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "задава първичен GID за потребителя" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "заменя името за влизане на потребителя" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "парола в прав текст за потребителя" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "pre-hashed парола за потребителя" #: apps/lusermod.c:75 msgid "lock account" msgstr "заключва акаунта" #: apps/lusermod.c:78 msgid "unlock account" msgstr "отключва акаунта" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "задава common име за потребител" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "задава собствено име за потребител" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "задава фамилно име за потребител" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "задава номер на стая на потребител" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "задава номер на телефон на потребител" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "задава номер на домашен телефон на потребител" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Неуспешно задаване парола за потребител %s: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Потребител %s не може да бъде заключен: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Потребител %s не може да бъде отключен: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Предупреждение: Група %jd не съществува.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Потребител %s не може да бъде изменен: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Група %s не може да бъде изменена: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Няма стара домашна директория за %s.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Няма нова домашна директория за %s.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Грешка при преместване на %s към %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "не може да бъде отворен конфигурационен файл `%s': %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "не може да stat конфигурационния файл `%s': %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "конфигурационния файл `%s' е твърде голям" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "не може да бъде прочетен конфигурационния файл `%s': %s" #: lib/error.c:62 msgid "success" msgstr "успешно" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "модула е деактивиран от конфигурацията" #: lib/error.c:66 msgid "generic error" msgstr "обща грешка" #: lib/error.c:68 msgid "not enough privileges" msgstr "недостатъчни права" #: lib/error.c:70 msgid "access denied" msgstr "достъпа забранен" #: lib/error.c:72 msgid "bad user/group name" msgstr "лошо име на потребител/група" #: lib/error.c:74 msgid "bad user/group id" msgstr "лошо id на потребител/група" #: lib/error.c:76 msgid "user/group name in use" msgstr "името на потребител/група вече се ползва" #: lib/error.c:78 msgid "user/group id in use" msgstr "такова id на потребител/група вече се ползва" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "грешка при манипулиране атрибутите на терминала" #: lib/error.c:82 msgid "error opening file" msgstr "грешка при отваряне на файл" #: lib/error.c:84 msgid "error locking file" msgstr "грешка при заключване на файл" #: lib/error.c:86 msgid "error statting file" msgstr "грешка при получаване състоянието на файл" #: lib/error.c:88 msgid "error reading file" msgstr "грешка при четене на файл" #: lib/error.c:90 msgid "error writing to file" msgstr "грешка при запис във файл" #: lib/error.c:92 msgid "data not found in file" msgstr "данните не са намерени във файла" #: lib/error.c:94 msgid "internal initialization error" msgstr "вътрешна грешка при инициализацията" #: lib/error.c:96 msgid "error loading module" msgstr "грешка при зареждане на модул" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "грешка при откриване на символ в модула" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "грешна версия на библиотека/модул" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "отключването ще направи паролата празно поле" #: lib/error.c:105 msgid "invalid attribute value" msgstr "невалидна стойност на атрибут" #: lib/error.c:107 msgid "invalid module combination" msgstr "невалидно комбиниране на модул" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "домашна директория за новия потребител" #: lib/error.c:115 msgid "unknown error" msgstr "неизвестна грешка" #: lib/misc.c:240 msgid "invalid number" msgstr "невалиден номер" #: lib/misc.c:254 msgid "invalid ID" msgstr "невалиден ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "няма инициализираща функция %s в `%s'" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "грешна версия на модул в `%s'" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "модул `%s' не дефинира `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "грешка при четене атрибутите на терминала" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "грешка при задаване атрибутите на терминала" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "грешка при четене от терминала" #: lib/user.c:218 msgid "name is not set" msgstr "името не е зададено" #: lib/user.c:223 msgid "name is too short" msgstr "името е твърде късо" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "името е твърде дълго (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "името съдържа не-ASCII знаци" #: lib/user.c:242 msgid "name contains control characters" msgstr "името съдържа контролни знаци" #: lib/user.c:249 msgid "name contains whitespace" msgstr "името съдържа интервали" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "името започва с тире" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "името съдържа невалиден знак `%c'" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "потребител %s няма UID" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "не е намерен потребител %s" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "група %s няма GID" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "не е намерена група %s" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "потребител %jd няма име" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "група %jd няма име" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "потребителят няма нито име нито UID" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "групата няма нито име нито GID" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Отказано използване на опасна домашна директория `%s' по подразбиране" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Невалидна стойност по подразбиране на поле %s: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "грешка при заключване на файл: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "грешка при получаване подразбрания защитен контекст: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "не може да получи защитния контекст на `%s': %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "не може да се установи защитния контекст в `%s': %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "не може да получи защитния контекст за `%s': %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "не може да се отвори `%s': %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "грешка при получаване състоянието на `%s': %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "грешка при създаване на `%s': %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "резервното копие `%s' съществува и не е обикновен файл" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Грешка при променяне на собственика на `%s': %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Грешка при смяна на режима на `%s': %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Грешка при четене на `%s': %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Грешка при записването на`%s': %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "големината на резервното копие не съвпада" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s стойността `%s': `:' не е позволено" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "не може да се чете от `%s': %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "записът вече присъства във файла" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "не може да се пише в `%s': %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "обектът от записа няма атрибут %s" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "позицията с конфликт в името вече съществува във файл" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' не е позволено в криптирана парола" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "грешка при криптиране на паролата" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "Модулите `%s' и `%s' не могат да се комбинират" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "няма да бъде изпълнено с администраторски права" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "няма наличен shadow файл -- деактивиране" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "грешка при свързване с kadm5 сървъра за услуга `%s' в областите `%s': %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "грешка при инициализация библиотеката на kerberos" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "грешка при анализ на потребителско име `%s' за kerberos" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "структурата в записа няма атрибути %s или %s" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "записа няма атрибути %s или %s" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "записа бе създаден без атрибути %s или %s" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "грешка при четене на данните за `%s' от kerberos" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "записа няма атрибут %s" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "грешка при задаване парола за `%s'" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos област" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos принципи на администриране" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Парола за Kerberos Admin Principal" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "грешка при инициализация на ldap библиотеката" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "не може да бъде установена версията на LDAP протокола на %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "не може да бъде договорен TLS с LDAP сървъра" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "грешка при свързване с LDAP сървъра" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "грешка при свързване с LDAP сървъра, първи опит като `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "потребителския обект нямаше атрибут %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "потребителския обект създаден без `%s'" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "грешка при създаване на запис в LDAP директорията: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "грешка при промяна на LDAP директориен запис: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "грешка при преименуване на запис в LDAP директорията: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "обектът нямаше атрибут %s" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "грешка при премахване на запис в LDAP директорията: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "обектът няма атрибут %s" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "Неподдържана схема за криптиране на парола" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "няма такъв обект в LDAP директорията" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "няма намерен атрибут `%s'" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "грешка при задаване парола в LDAP директорията за %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "Име на LDAP сървър" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "Базов DN за LDAP търсене" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP DN за връзка" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP парола за връзка" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL Потребител" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL Упълномощаване на потребител" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Грешка на Cyrus SASL при създаване на потребител: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Грешка на Cyrus SASL при премахване на потребител: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "грешка при инициализация на Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "грешка при създаване домашна директория за потребител" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "грешка при премахване на домашна директория за потребител" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "грешка при преместване домашната директория на потребител" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Грешка при инициализация на %s: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Невалиден идентификатор %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Търсене на група с идентификатор %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Търсене на група именувана %s.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Търсене на потребител с идентификатор %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Търсене на потребител наименуван %s.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Запис не е намерен.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Промптовете успяха.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Промптовете се провалиха.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Стандартни класове за потребителски обект:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Стандартни потребителски атрибути:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Извличане на стандартни потребителски атрибути:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Копиране на потребителска структура:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s нямаше домашна директория.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Грешка при изтриване на %s: %s.\n" libuser-0.60~dfsg/po/bn_IN.po0000644000175000017500000013665612226342567016067 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 # Runa Bhattacharjee , 2008 # runab , 2004, 2005, 2006, 2007, 2008, 2009, 2010 # runa , 2012 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/fedora/" "language/bn_IN/)\n" "Language: bn_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "অধিকার হ্রাসের প্রচেষ্টা ব্যর্থ।\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "অভ্যন্তরীণ সমস্যা।\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s-র, %s-র finger সংক্রান্ত তথ্য পরিবর্তন করার অধিকার নেই।\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "ব্যবহারকারীর প্রাসঙ্গিক বিবরণ অজানা" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd-র ডিফল্ট প্রসঙ্গ নির্ধারণ করা সম্ভব হয়নি\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM আরম্ভ করতে সমস্যা।\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s-র পরিচয়প্রমাণ প্রক্রিয়া ব্যর্থ হয়েছে।\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "PAM-র অভ্যন্তরীণ সমস্যা `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "অজানা ব্যবহারকারী অনুমোদিত রয়েছেন।\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "ব্যবহারকারীর গরমিল।\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] user" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "আর্গুমেন্ট পার্স করতে সমস্যা: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "কোনো ব্যবহারকারীর নাম উল্লেখ করা হয়নি।\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s আরম্ভ করতে সমস্যা: %s।\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s ব্যবহারকারী বর্তমানে উপস্থিত নেই।\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "অ্যাকাউন্ট লক করা আছে।\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "অ্যাকাউন্ট লক করা নেই।\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "সর্বনিম্ন:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "সর্বোচ্চ:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "সতর্কবার্তা:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "নিষ্ক্রিয়:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "কখনো নয়" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "সর্বশেষ পরিবর্তন:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "পাসওয়ার্ডের মেয়াদপূর্তী:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "পাসওয়ার্ড নিষ্ক্রিয়:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "অ্যাকাউন্টের মেয়াদপূর্তী:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s সংক্রান্ত পুরোনো তথ্য পরিবর্তনের প্রচেষ্টা ব্যর্থ: %s।\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [user]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "কোনো ব্যবহারকারীর নাম নির্দিষ্ট হয়নি, %d uid-র কোনো নাম উল্লিখিত হয়নি।\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s সংক্রান্ত finger তথ্য পরিবর্তন করা হচ্ছে।\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "সম্পূর্ণ নাম" #: apps/lchfn.c:146 msgid "Surname" msgstr "পদবি" #: apps/lchfn.c:157 msgid "Given Name" msgstr "প্রদত্ত নাম" #: apps/lchfn.c:167 msgid "Office" msgstr "কর্মস্থল" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "কর্মস্থলের ফোন" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "গৃহের ফোন" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ই-মেইল ঠিকানা" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger সংক্রান্ত তথ্য পরিবর্তন করা যায়নি: ইনপুটজড়িত ত্রুটি।\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger সংক্রান্ত তথ্য পরিবর্তন করা হয়েছে।\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger সংক্রান্ত তথ্য পরিবর্তন করা হয়নি: %s।\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s-র শেল পরিবর্তন করা হচ্ছে।\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "নতুন শেল" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "শেল পরিবর্তিত হয়নি: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "শেল পরিবর্তিত হয়েছে।\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] group" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "কোনো দলের নাম নির্ধারণ করা হয়নি।\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "দলের অবৈধ ID %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "দল তৈরি করতে ব্যর্থ: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "%s দলটি বর্তমানে উপস্থিত নেই।\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "%s দলটি মুছে ফেলা সম্ভব হয়নি: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L এবং -U দুটিই নির্দিষ্ট করা হয়েছে।\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s দলের পাসওয়ার্ড তৈরি করতে ব্যর্থ: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s দলটি লক করা যায়নি: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s দলটি আন-লক করা যায়নি: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s দল পরিবর্তন করা যায়নি: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s অনুসন্ধানে সমস্যা: %s।\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "দলের নাম উল্লেখ করা হয়নি, %s ব্যবহার করা হচ্ছে।\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "দলের নাম উল্লেখ করা হয়নি, %d gid-র জন্য কোনো নাম লেখা হয়নি।\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "ব্যবহারকারীর নাম উল্লেখ করা হয়নি, %s ব্যবহার করা হচ্ছে।\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s বর্তমানে উপস্থিত নেই\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' খুলতে সমস্যা: %s।\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "`%s' -র জন্য অ্যাকাউন্ট তৈরি করতে সমস্যা: পংক্তিটি সঠিক বিন্যাসে গঠিত হয়নি।\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "ব্যবহারকারী অবৈধ ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 ব্যবহার করে অ্যাকাউন্ট তৈরি করা হবে না।\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s'-র জন্য, GID %jd ব্যবহার করে দল তৈরি করতে সমস্যা: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "ডিফল্টরূপে, ক্ষতিকর ব্যক্তিগত ডিরেক্টরি `%s'-টি %s-র জন্য ব্যবহার করতে প্রত্যাখ্যান করা " "হয়েছে\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s-র জন্য ব্যক্তিগত (হোম) ডিরেক্টরি তৈরি করতে সমস্যা: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s-র জন্য প্রারম্ভিক পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s-র জন্য ব্যবহারকারীর অ্যাকাউন্ট তৈরি করতে সমস্যা:%s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s-র পাসওয়ার্ড পরিবর্তন করা হচ্ছে।\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "নতুন পাসওয়ার্ড" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "নতুন পাসওয়ার্ড (নিশ্চায়ন)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "পাসওয়ার্ড দুটি মেলেনি, পুনরায় চেষ্টা করুন।\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "পাসওয়ার্ড পরিবর্তন প্রক্রিয়া বাতিল করা হয়েছে।\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "ফাইল ডিসক্রিপ্টর %d থেকে পড়তে সমস্যা দেখা দিয়েছে।\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s ব্যবহারকারীর জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s।\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s দলের জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s।\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "পাসওয়ার্ড পরিবর্তিত হয়েছে।\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd দলটি বর্তমানে উপস্থিত নেই।\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "`%s' দল তৈরি করতে সমস্যা: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "অ্যাকাউন্ট তৈরি করতে ব্যর্থ: %s।\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s তৈরি করতে সমস্যা: %s।\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "ব্যবহারকারী %s'র অ্যাকাউন্ট মুছে ফেলা সম্ভব হয়নি: %s।\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s-র কোনো gid সংখ্যা নেই।\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "%jd GIDসহ কোনো দল বর্তমানে উপস্থিত নেই, মুছে ফেলা সম্ভব নয়।\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "%jd GIDসহ দলের কোনো নাম উল্লিখিত হয়নি।\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s দলটি মুছে ফেলা সম্ভব হয়নি: %s।\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি মুছে ফেলতে সমস্যা" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s ব্যবহারকারীর জন্য পাসওয়ার্ড নির্ধারণ করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%s ব্যবহারকারীকে লক (lock) করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%s ব্যবহারকারীকে আন-লক (unlock) করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "সতর্কবার্তা: %jd ID সহ দলটি বর্তমানে উপস্থিত নেই।\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s ব্যবহারকারীর তথ্য পরিবর্তন করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%s দলের তথ্য পরিবর্তন করা সম্ভব হয়নি: %s।\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s-র ক্ষেত্রে পুরোনো ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত নেই।\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s-র কোনো নতুন ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত নেই।\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s কে %s-এ সরিয়ে নিতে সমস্যা হয়েছে: %s।\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "কনফিগারেশন ফাইল `%s' খোলা যায়নি: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "কনফিগারেশন ফাইল `%s' stat করা যায়নি: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "কনফিগারেশন ফাইল `%s' অত্যাধিক বড়" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "কনফিগারেশন ফাইল `%s' পড়া যায়নি: %s" #: lib/error.c:62 msgid "success" msgstr "সফল" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "কনফিগারেশনের দরুণ মডিউলটি নিষ্ক্রিয় হয়ে গেছে" #: lib/error.c:66 msgid "generic error" msgstr "সাধারণ সমস্যা" #: lib/error.c:68 msgid "not enough privileges" msgstr "অপর্যাপ্ত অধিকার" #: lib/error.c:70 msgid "access denied" msgstr "অনুমোদন করা হয়নি" #: lib/error.c:72 msgid "bad user/group name" msgstr "অবৈধ ব্যবহারকারী/দলের নাম" #: lib/error.c:74 msgid "bad user/group id" msgstr "অবৈধ ব্যবহারকারী/দলের id" #: lib/error.c:76 msgid "user/group name in use" msgstr "ব্যবহারকারী/দলের নাম বর্তমানে ব্যবহৃত হচ্ছে" #: lib/error.c:78 msgid "user/group id in use" msgstr "ব্যবহারকারী/দলের id বর্তমানে ব্যবহৃত হচ্ছে" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "টার্মিনালের বৈশিষ্ট্য পরিবর্তন করতে সমস্যা" #: lib/error.c:82 msgid "error opening file" msgstr "ফাইল খুলতে সমস্যা" #: lib/error.c:84 msgid "error locking file" msgstr "ফাইল লক করতে সমস্যা" #: lib/error.c:86 msgid "error statting file" msgstr "ফাইল stat করতে সমস্যা" #: lib/error.c:88 msgid "error reading file" msgstr "ফাইল পড়তে সমস্যা" #: lib/error.c:90 msgid "error writing to file" msgstr "ফাইলে লিখতে সমস্যা" #: lib/error.c:92 msgid "data not found in file" msgstr "ফাইলে তথ্য পাওয়া যায়নি" #: lib/error.c:94 msgid "internal initialization error" msgstr "অভ্যন্তরীণ প্রারম্ভিক সমস্যা" #: lib/error.c:96 msgid "error loading module" msgstr "মডিউল লোড করতে সমস্যা" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "মডিউলের সিম্বল মীমাংসা করতে সমস্যা" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "লাইব্রেরি/মডিউলের সংস্করণে গরমিল" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "আন-লক করা হলে পাসওয়ার্ডের ক্ষেত্র ফাঁকা হয়ে যাবে" #: lib/error.c:105 msgid "invalid attribute value" msgstr "অ্যাট্রিবিউটের মান বৈধ নয়" #: lib/error.c:107 msgid "invalid module combination" msgstr "বৈধ রূপে মডিউল একত্রিত করা হয়নি" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "অজানা সমস্যা" #: lib/misc.c:240 msgid "invalid number" msgstr "অবৈধ সংখ্যা" #: lib/misc.c:254 msgid "invalid ID" msgstr "অবৈধ ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "%s প্রারম্ভিক কার্য `%s'-র মধ্যে উপস্থিত নেই" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s'-র মডিউল সংস্করণে গরমিল" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' মডিউলের দ্বারা `%s'-র ব্যাখ্যা করা যায়নি" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "টার্মিনালের বৈশিষ্ট্য পড়তে সমস্যা" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "টার্মিনালের বৈশিষ্ট্য নির্ধারণ করতে সমস্যা" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "টার্মিনাল থেকে পড়তে সমস্যা" #: lib/user.c:218 msgid "name is not set" msgstr "নাম নির্ধারণ করা হয়নি" #: lib/user.c:223 msgid "name is too short" msgstr "নাম অত্যাধিক ছোট" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "উল্লিখিত নাম অত্যাধিক লম্বা (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "নামের মধ্য non-ASCII অক্ষর লেখা হয়েছে" #: lib/user.c:242 msgid "name contains control characters" msgstr "নামের মধ্য নিয়ন্ত্রক (control) অক্ষর লেখা হয়েছে" #: lib/user.c:249 msgid "name contains whitespace" msgstr "নামের মধ্যে শূণ্যস্থান রয়েছে" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "নামের প্রারম্ভে হাইফেন চিহ্ন (-) উপস্থিত রয়েছে" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "নামের মধ্য অবৈধ অক্ষর `%c' লেখা হয়েছে" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "%s নামক ব্যবহারকারীর ক্ষেত্রে UID ধার্য করা হয়নি" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "%s নামক দলের ক্ষেত্রে GID ধার্য করা হয়নি" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "%jd ব্যবহারকারীর নাম উল্লিখিত নেই" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "%jd দলের নাম উল্লিখিত নেই" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "ব্যবহারকারীর নাম ও UID ধার্য করা হয়নি" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "দলের নাম ও GID ধার্য করা হয়নি" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "ডিফল্টরূপে, ক্ষতিকর ব্যক্তিগত ডিরেক্টরি `%s' ব্যবহার প্রত্যাখ্যান করা হয়েছে" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s ক্ষেত্রে ডিফল্ট মান বৈধ নয়: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ফাইল লক করতে সমস্যা: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "ডিফল্ট প্রাসঙ্গিক নিরাপত্তার বিবরণ নির্ধারণ করা যায়নি: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s'-র জন্য প্রাসঙ্গিক নিরাপত্তার বিবরণ প্রাপ্ত করা যায়নি: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "ডিফল্ট প্রাসঙ্গিক নিরাপত্তার বিবরণ`%s' হিসাবে নির্ধারণ করা যায়নি: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s'-র জন্য প্রাসঙ্গিক নিরাপত্তার বিবরণ প্রাপ্ত করা যায়নি: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' খোলা সম্ভব হয়নি: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' stat করা যায়নি: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' তৈরি করতে সমস্যা: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "ব্যাক-আপ ফাইল `%s' বর্তমানে উপস্থিত আছে এবং এটি কোনো সাধারণ ফাইল নয়" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s'-র মালিকানা পরিবর্তন করতে সমস্যা: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "`%s'-র মোড পরিবর্তন করতে ত্রুটি: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' পড়তে সমস্যা: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' লিখতে সমস্যা: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "ব্যাক-আপ ফাইলের মাপে গরমিল" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s মান `%s': `:' অনুমোদিত নয়" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' থেকে পড়া সম্ভব হয়নি: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "ফাইলের মধ্যে এন্ট্রি বর্তমানে উপস্থিত আছে" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s'-এ লেখা যায়নি: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "স্বত্বার অবজেক্টের মধ্যে %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "দ্বন্দযুক্ত নাম সহ একটি এন্ট্রি ফাইলের মধ্যে বর্তমানে উপস্থিত আছে" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "এনক্রিপ্ট করা পাসওয়ার্ডের মধ্যে `:' ব্যবহার করা যাবে না" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "পাসওয়ার্ড এনক্রিপ্ট করতে সমস্যা" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' ও `%s' মডিউলগুলি একত্রিত করা যাবে না" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "সুপার-ইউজারের অধিকারসহ সঞ্চালিত হচ্ছে না" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "কোনো শেডো ফাইল উপস্থিত নেই -- নিষ্ক্রিয় করা হচ্ছে" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "`%s' পরিসেবার জন্য kdam5 সার্ভারটির সাথে সংযোগ করতে `%s' realm-এ সমস্যা হয়েছে: " "%s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "kerberos লাইব্রেরি আরম্ভ করতে সমস্যা" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "`%s' ব্যবহারকারীর নাম kerberos-র জন্য পার্স করতে সমস্যা" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "স্বত্বার গঠনে কোনো %s অথবা %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "স্বত্বায় কোনো %s অথবা %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "কোনো %s অথবা %s বৈশিষ্ট্য বিনা স্বত্বা তৈরি করা হয়েছে" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "`%s'-র জন্য kerberos থেকে তথ্য পড়তে সমস্যা" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "এন্ট্রিতে কোনো %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s'-র জন্য পাসওয়ার্ড নির্ধারণ করতে সমস্যা" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Admin Principal" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Admin Principal-র জন্য Kerberos পাসওয়ার্ড" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "Ldap লাইব্রেরি আরম্ভ করতে সমস্যা" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP প্রোটোকল %d সংস্করণের সাথে স্থাপন করা যায়নি" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP সার্ভারের সাথে TLS মীমাংসা করা সম্ভব হয়নি" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP সার্ভারে bind করা সম্ভব হয়নি" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP সার্ভারে bind করা সম্ভব হয়নি, `%s' রূপে প্রথম প্রচেষ্টা করা হয়েছে: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "ব্যবহারকারীর অবজেক্টে কোনো `%s' বৈশিষ্ট্য উপস্থিত নেই" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "ব্যবহারকারীর অবজেক্ট `%s' বিনা নির্মিত হয়েছে" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP ডিরেক্টরি এন্ট্রি তৈরি করতে সমস্যা: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP ডিরেক্টরি এন্ট্রি পরিবর্তন করতে সমস্যা: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP ডিরেক্টরি এন্ট্রির নাম পরিবর্তন করতে সমস্যা: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "অবজেক্টের মধ্যে কোনো %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP ডিরেক্টরি এন্ট্রি মুছে ফেলতে সমস্যা: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "অবজেক্টের মধ্যে %s বৈশিষ্ট্য উপস্থিত নেই" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "পাসওয়ার্ড এনক্রিপশনের বিন্যাস সমর্থিত নয়" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP ডিরেক্টরির মধ্যে এই ধরনের কোনো বস্তু উপস্থিত নেই" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "কোনো `%s' বৈশিষ্ট্য পাওয়া যায়নি" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "%s-র জন্য LDAP ডিরেক্টরিতে পাসওয়ার্ড নির্ধারণ করতে সমস্যা: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP সার্ভারের নাম" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Search Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind পাসওয়ার্ড" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL ব্যবহারকারী" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL-র অনুমোদন ব্যবহারকারী" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "ব্যবহারকারী তৈরি করতে Cyrus SASL সংক্রান্ত সমস্যা: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "ব্যবহারকারী মুছে ফেলার সময় Cyrus SASL সংক্রান্ত সমস্যা: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL আরম্ভ করতে সমস্যা: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ব্যবহারকারীর জন্য ব্যক্তিগত (হোম) ডিরেক্টরি তৈরি করতে সমস্যা" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি মুছে ফেলতে সমস্যা" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ব্যবহারকারীর ব্যক্তিগত (হোম) ডিরেক্টরি সরাতে সমস্যা" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s আরম্ভ করতে সমস্যা: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "অবৈধ ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "%jd ID-ধারী দলের সন্ধান করা হচ্ছে।\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s নামক দলের সন্ধান করা হচ্ছে।\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "%jd ID-ধারী ব্যবহারকারীর সন্ধান করা হচ্ছে।\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s নামক ব্যবহারকারীর সন্ধান করা হচ্ছে।\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "এন্ট্রি খুঁজে পাওয়া যায়নি।\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "সফল চিহ্নকারী প্রম্পট।\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "বিফল চিহ্নকারী প্রম্পট\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "ব্যবহারকারীর ডিফল্ট অবজেক্ট ক্লাস:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "ব্যবহারকারীর ডিফল্ট বৈশিষ্ট্যর নাম:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "ব্যবহারকারীর ডিফল্ট বৈশিষ্ট্য আহরণ করা হচ্ছে:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "ব্যবহারকারীর বৈশিষ্ট্যের পরিকাঠামো কপি করা হচ্ছে:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s-র ব্যক্তিগত (হোম) ডিরেক্টরি উপস্থিত ছিল না।\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s সরিয়ে ফেলতে সমস্যা: %s।\n" libuser-0.60~dfsg/po/sk.gmo0000644000175000017500000004745212226342604015646 0ustar tzafrirtzafrir43L85K*9$d"":Xg y</)>'h.L'c*)(  .<(k(.$  .!8 Ze"#!#$ #1Uo. % 3H\%u   , :H N Xe-|#,4,S" #+O`'t8! 4Ue|"!## C \ l +z    % !1!N!h!z!$!!8!( "*3"*^")"*"0")#)9#c#z#1####$!,$!N$+p$.$$3$G%e%)}%&%%!%# &.&N&c&v&&&(&$&')'?'R'0n'!'''&''( 8(Y(3y(!((( ())"1)T) r)})))) ) *!* A*b*"******+%.+#T+ x++'+++ ,-, C,-Q,&,,,",,$-6-K-b-9/Q/6`/ //// 0%$0J0<h0"000(0316Q1/1/1 11# 212LP2'25272;33 o3!333 3 4#+4O45l484148 5F5a5/{5,545" 6206(c6 616 66&6'7'=7%e7&7'777'8:8I8Z8t88/8888%9?9P9d9-{99 999 : :%: +: 7:C:.[:+::.:(;),;<V;2;$;;;<"<8<P<%a<<<#<Q<#"=!F=*h=(=== =0=>-?>-m>,>.>>?2?%D? j?v???$??:?+5@a@ @.@&@@@,8A5eA8A2A<B:DB>B6BB!CF7C#~C#C!CC"D$D.DD1sDD9DJDJE1iE>EE'E+F'JFrFFF5F-G>0GoG8GG G5H)8H4bHAH5H2I%BI8hI,I#IIJ J7JTJsJ JJJ#J$J!K(wyU;+NAEq.dx}`|*32Xos&%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-10-12 23:52+0200 Last-Translator: Miloslav Trmač Language-Team: Slovak (http://www.transifex.com/projects/p/fedora/language/sk/) Language: sk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2; %s nemala číslo gid. %s neexistuje %s nemá oprávnenie meniť finger informácie pre %s %s hodnota `%s': `:' nepovolenáPlatnosť konta vyprší: %s Vytváranie konta zlyhalo: %s. Konto je zamknuté. Konto nie je zamknuté. Overenie totožnosti zlyhalo pre %s. Boli zadané obidve -L a -U. Nepodarilo sa nastaviť predvolený kontext pre /etc/passwd Mením finger informácie pre %s. Mením heslo pre %s. Mením shell pre %s. Kopírujem štruktúrup používateľa: Cyrus SASL chyba pri vytváraní používateľa: %sCyrus SASL chyba pri odstraňovaní používateľa: %sŠtandardné názvy príznakov používateľa: Štandardné objektové triedy používateľa: E-mail adresaPoložka nenájdená. Chyba pri zmene vlastníka `%s': %sChyba pri vytváraní %s: %s. Chyba pri vytváraní konta pre `%s': riadok je nesprávne naformátovaný. Chyba pri vytváraní skupiny `%s': %s Chyba pri vytváraní skupiny pre `%s' s GID %jd: %s Chyba pri vytváraní domovského adresára pre %s: %s Chyba pri vytváraní používateľského konta pre %s: %s Chyba pri inicializácii %s: %s Chyba pri inicializácii %s: %s. Chyba inicializácie PAM. Chyba pri uzamykaní %s: %s Chyba pri presune %s do %s: %s. Chyba pri otváraní `%s': %s. Chyba pri analýze parametrov: %s. Chyba pri čítaní `%s': %sChyba počas načítavania z popisovača súboru %d. Chyba pri nastavovaní počiatočného hesla pre %s: %s Chyby pri nastavovaní hesla pre skupinu %s: %s. Chyba pri nastavovaní hesla pre používateľa %s: %s. Chyba pri zápise `%s': %sZlyhalo zahodenie práv. Zlyhala úprava informácií o veku pre %s: %s Zlyhalo nastavenie hesla pre skupinu %s: %s Zlyhalo nastavenie hesla pre používateľa %s: %s. Finger informácie boli zmenené. Finger informácie neboli zmenené: chyba vstupu. Finger informácie neboli zmenené: %s. Celé menoZískavam štandardné príznaky používateľa: Krstné menoSkupina %jd neexistuje Skupina %s nemohla byť vymazaná: %s Skupina %s nemohla byť vymazaná: %s. Skupina %s nemohla byť uzamknutá: %s Skupina %s nemohla byť zmenená: %s Skupina %s nemohla byť zmenená: %s. Skupina %s nemohla byť odomknutá: %s Skupina %s neexistuje. Vytvorenie skupiny zlyhalo: %s Skupina s GID %jd nemala meno skupiny. Telefón domovNeaktívne: %ld Interná chyba PAM `%s'. Interná chyba. Neplatné ID %s Nesprávna štandardná hodnota položky %s: %sNeplatné ID skupiny %s Neplatné ID používateľa %s Kerberos vedúci správcaKerberos heslo pre vedúceho správcuKerberos oblasťLDAP DN pripájaniaLDAP heslo pripájaniaLDAP SASL udelenie oprávnenia používateľaLDAP SASL používateľLDAP DN vyhľadávacej základneMeno servera LDAPPosledná zmena: %s Maximum: %ld Minimum: %ld NikdyNový shellNové hesloNové helso (potvrdiť)Nebolo zadané meno skupiny, gid %d bez mena. Nebolo zadané meno skupiny, použijem %s. Nebolo zadané meno skupiny. Neexistuje skupina s GID %jd, neodstraňujem. Nie je nový domovský adresár pre %s. Nie je starý domovský adresár pre %s. Nebolo zadané meno používateľa, nie je meno pre uid %d. Nebolo zadané meno používateľa, použijem %s. Nebolo zadané meno používateľa. ÚradTelefón do úraduPlatnosť hesla vyprší: %s Heslo neaktívne: %s Zmena hesla zrušená. Heslo zmenené. Heslá sa nezhodujú, skúste znova. Výzvy zlyhali. Výzvy úspešné. Zamietam vytvorenie konta s UID 0. Zamieta sa použitie nebezpečného domovského adresára `%s' ako štandardnéhoVyhľadávanie skupiny s menom %s. Vyhľadávanie skupiny s ID %jd. Vyhľadávanie používateľa s menom %s. Vyhľadávanie používateľa s ID %jd. Shell zmenený. Shell nezmenený: %s PriezviskoOverená totožnosť neznámeho používateľa. Neznámy kontext používateľaPoužívateľ %s nemohol byť vymazaný: %s. Používateľ %s nemohol byť zamknutý: %s. Používateľ %s nemohol byť zmenený: %s. Používateľ %s nemohol byť odomknutý: %s. Používateľ %s neexistuje. Používateľ sa nezhoduje. Upozornenie: %ld Upozornenie: Skupina %jd neexistuje. [VOĽBA...][VOĽBA...] [používateľ][VOĽBA...] skupina[VOĽBA...] používateľ`:' nepovolené v zakódovanom hesleprístup odmietnutýzálohový súbor `%s' existuje a nie je to bežný súborveľkosť záložného súboru nezodpovedázlé id používateľa/skupinyzlé meno používateľa/skupinykonfiguračný súbor `%s' je príliš veľkýnepodarilo sa pripojiť k LDAP serverunepodarilo sa pripojiť k LDAP serveru, prvý pokus ako `%s': %snepodarilo sa dohodnúť TLS s LDAP serveromnepodarilo sa otvoriť konfiguračný súbor `%s': %snepodarilo sa prečítať konfiguračný súbor `%s': %snepodarilo sa nastaviť LDAP protokol na verziu %dnepodarilo sa zistiť stav konfiguračného súboru `%s': %snepodarilo sa získať bezpečnostný kontext pre `%s': %snepodarilo sa nastaviť predvolený bezpečnostný kontext: %snepodarilo sa získať bezpečnostný kontext `%s': %snepodarilo sa otvoriť `%s': %snepodarilo sa čítať z `%s': %snepodarilo sa nastaviť predvolený bezpečnostný kontext na `%s': %snepodarilo sa zistiť stav `%s': %snepodarilo sa zapísať do `%s': %súdaje neboli v súbore nájdenéentita nemá príznak %sentita nemá príznaky %s alebo %sobjekt entity nemá príznak %sštruktúra entity nemá príznaky %s alebo %sentita bola vytvorená bez príznakov %s alebo %spoložka už existuje v súborezáznam s konfliktným názvom sa už nachádza v súborechyba pri pripájaní ku kadm5 serveru pre službu `%s' v oblasti `%s': %schyba pri vytváraní `%s': %schyba pri vytváraní položky LDAP adresára: %schyba pri vytváraní domovského adresára pre používateľachyba pri šifrovaní heslachyba pri inicializácii Cyrus SASL: %schyba pri inicializácii kerberos knižnicechyba pri inicializácii knižnice ldapchyba pri nahrávaní moduluchyba pri uzamykaní súboruchyba pri zamykaní súboru: %schyba pri zaobchádzaní s terminálovými príznakmichyba pri úprave položky LDAP adresára: %schyba pri presúvaní domovského adresára pre používateľachyba pri otváraní súboruchyba pri analýze mena používateľa `%s' pre kerberoschyba pri čítaní súboruchyba pri čítaní z termináluchyba pri čítaní informácií pre `%s' z kerberosuchyba pri čítaní príznakov termináluchyba pri odstraňovaní položky LDAP adresára: %schyba pri odstraňovaní domovského adresára pre používateľachyba pri premonovávaní položky LDAP adresára: %schyba pri riešení závislostí symbolov v modulechyba pri nastavovaní hesla pre `%s'chyba pri nastavovaní hesla v LDAP adresára pre %s: %schyba pri nastavovaní príznakov termináluchyba pri zisťovaní stavu súboruchyba pri zápise do súboruzákladná chybaSkupina %jd nemá menoskupina %s nemá žiadne GIDskupina nemá ani meno ani GIDinterná chyba inicializácieneplatné IDneplatná hodnota atribútuneplatná kombinácia modulovneplatné ID číslo používateľaverzia knižnice/modulu nezodpovedámodul `%s' nedefinuje `%s'modul je nakonfigurovaný ako neaktívnyverzia modulu nezodpovedá v `%s'meno obsahuje riadiace znakymeno obsahuje neplatný znak `%c'meno obsahuje znaky, ktoré nie sú ASCIImeno obsahuje medzerymeno nie je nastavenémeno je príliš dlhé (%zu > %d)meno je príliš krátkemeno začína s pomlčkounebol nájdený príznak `%s'bez inicializačnej funkcie %s v `%s'tieňový súbor nie je prítomný -- deaktivujemnie je taký objekt v LDAP adresárinie sú dostatočné právanespúšťam s právami superpoužívateľaobjekt nemal príznak %sobjekt nemá príznak %súspechmoduly `%s' a `%s' nemôžu byť skombinovanéneznáma chybaodomknutie by vyprázdnilo pole pre heslonepodporovaná schéma kódovania heslapoužívateľ %jd nemá menopoužívateľ %s nemá žiadne UIDpoužívateľ nemá ani meno ani UIDobjekt používateľa nemal príznak %sobjekt používateľa bol vytvorený bez `%s'id používateľa/skupiny sa používameno používateľa/skupiny sa používalibuser-0.60~dfsg/po/nl.gmo0000644000175000017500000006430712226342604015640 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<>>F>#&?J?`?????9?&,@S@s@@*@-@A% A$3A XAdA0{A)AA>A!0B2RB/B1B)B0CBC#aCCC)CC#D%D.AD+pD4D1D5E9E!YE1{E/E4EF.0F&_FFF&F(FFF(G)@G)jG'G(G)GH'H)CHmH|HHHHH*HHI1I(JIsI IIIIIII J&J 6J>DJJJJ JJJ2J'K)K9EK&K$K6K+L.LNL SLaLeL~L#LL2LMM&,MGSMQMMMN#3N"WNzNN N(NN-N.$O,SO.OOOO-O ,P7PNP_P-tPP8P1PQR-SR,R+R-R<S2ES5xS4SSS>T%WT }TTTT@TG5U*}U6U!U-V/VKJV V'V'V1W19WkW;WMWX#/X1SX X%X+X'X Y6Y!TY(vY$Y4YY4ZFZ]Z4yZ"Z(Z4Z$/['T['|[5[&[$\&\(F\o\~\\\\\](]F]&W])~]] ]]]^-^-D^dr^"^#^#_$B_g_ x_4_4_ _!`)1`%[``!````a.a>a^a{aa%a)a%b,b(>bOgbbb@b,4c)ac.c'c,cd8(d9ad.d!dde$eCe8ce)e#e"e f *f%Kfqff f$f7fg,g ;g Hg/Sg,gggg, h&7h*^hhh0L]h 5;Vk [$ YK*bs=QA>)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Dutch (http://www.transifex.com/projects/p/fedora/language/nl/) Language: nl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s heeft geen gid nummer. %s bestaat niet. %s is niet geautoriseerd om de finger informatie van %s te veranderen %s waarde `%s': `:' niet toegestaanAccount verloopt: %s Aanmaken account mislukt: %s. Account is vergrendeld. Account is niet vergrendeld. Authenticatie mislukt voor %s. Zowel -L als -U opgegeven. Instellen van standaard context voor /etc/passwd mislukt Finger informatie veranderen voor %s. Wachtwoord veranderen voor %s. Shell veranderen voor %s. Gebruiker structuur kopiëren: Cyrus SASL fout bij aanmaken gebruiker: %sCyrus SASL fout bij verwijderen gebruiker: %sDAGENStandaard gebruiker attribuut namen: Standaard gebruiker object klassen: Email adresIngang niet gevonden. Fout bij het veranderen van de mode van `%s': %sFout bij veranderen eigenaar van `%s': %sFout bij aanmaken %s: %s. Fout bij aanmaken account voor `%s': regel onjuist opgemaakt. Fout bij aanmaken groep `%s': %s Fout bij aanmaken groep voor `%s' met GID %jd: %s Fout bij aanmaken persoonlijke map voor %s: %s Fout bij het aanmaken van mail spool voor %s: %s Fout bij het aanmaken van mail spool: %s Fout bij aanmaken gebruiker account voor %s: %s Fout bij initialiseren %s: %s Fout bij initialiseren van %s: %s. Fout bij initialiseren PAM. Fout bij opzoeken %s: %s Fout bij verplaatsen van %s naar %s: %s. Fout bij openen `%s': %s. Fout bij verwerken argumenten: %s. Fout bij lezen van `%s': %sFout bij het lezen van bestand descriptor %d. Fout bij het verwijderen van mail spool: %sFout bij instellen initiële wachtwoord voor %s: %s Fout bij instellen wachtwoord voor groep %s: %s. Fout bij instellen wachtwoord voor gebruiker %s: %s. Fout bij schrijven van `%s': %sLaten vallen privileges mislukt. Aanpassen verloop informatie voor %s mislukt: %s Instellen wachtwoord voor groep %s mislukt: %s Instellen wachtwoord voor gebruiker %s mislukt: %s. Finger informatie veranderd. Finger informatie niet veranderd: input fout. Finger informatie niet veranderd: %s. Volledige naamGECOS informatieGECOS informatie voor nieuwe gebruikerOphalen standaard gebruiker attributen: VoornaamGroep %jd bestaat niet Groep %s kon niet worden verwijderd: %s Groep %s kon niet worden verwijderd: %s. Groep %s kon niet worden vergrendeld: %s Groep %s kon niet worden aangepast: %s Groep %s kon niet worden aangepast: %s. Groep %s kon niet worden ontgrendeld: %s Groep %s bestaat niet. Aanmaken groep mislukt: %s Groep met GID %jd heeft geen groepsnaam. Telefoon thuisInactief: %ld Inactief:»nooit Interne PAM fout `%s'. Interne fout. Ongeldig ID %s Ongeldige standaard waarde van veld %s: %sOngeldige groep ID %s Ongeldige gebruiker ID %s Kerberos Admin PrincipalKerberos wachtwoord voor Admin PrincipalKerberos omgevingLDAP Bind DNLDAP Bind wachtwoordLDAP SASL autorisatie gebruikerLDAP SASL gebruikerLDAP zoek basis DNLDAP server naamLaatste verandering: %s Maximum: %ld Maximum:»geen Minimum: %ld Wachtwoord moet bij de volgende keer inloggen vernieuwd wordenNAAMNUMNooitNieuwe shellNieuw wachtwoordNieuw wachtwoord (bevestigen)Geen groepsnaam opgegeven, geen naam voor gid %d. Geen groepsnaam opgegeven, gebruik %s. Geen groepsnaam opgegeven. Er bestaat geen groep met GID %jd, kan niet verwijderen. Geen nieuwe persoonlijke map voor %s. Geen oude persoonlijke map voor %s. Geen gebruikersnaam opgegeven, geen naam voor uid %d. Geen gebruikersnaam opgegeven, gebruik %s. Geen gebruikersnaam opgegeven. WerkTelefoon werkPADWachtwoord verloopt: %s Wachtwoord inactief: %s Wachtwoord veranderen geannuleerd. Wachtwoord veranderd. Wachtwoorden komen niet overeen, probeer opnieuw. Opvragen mislukt. Opvragen geslaagd. Aanmaken account met UID 0 geweigerd. Weigeren om standaard de gevaarlijke persoonlijke map `%s' te gebruikenWeigering om standaard de gevaarlijke persoonlijke map `%s' voor %s te gebruiken STRINGZoeken naar groep met naam %s. Zoeken naar groep met ID %jd. Zoeken naar gebruiker met naam %s. Zoeken naar gebruiker met ID %jd. Shell veranderd. Shell niet veranderd: %s AchternaamAuthenticatie voor onbekende gebruiker. Onbekende gebruiker contextGebruiker %s kon niet worden verwijderd: %s. Gebruiker %s kon niet worden vergrendeld: %s. Gebruiker %s kon niet worden aangepast: %s. Gebruiker %s kon niet worden ontgrendeld: %s. Gebruiker %s bestaat niet. Gebruikers komen niet overeen. Waarschuwing: %ld Waarschuwing: Groep met ID %jd bestaat niet. [OPTIE...][OPTIE...] [gebruiker][OPTIE...] groep[OPTIE...] gebruiker`:' niet toegestaan in versleuteld wachtwoordtoegang geweigerdback-up bestand `%s' bestaat en is geen regulier bestandgrootte van het back-up bestand komt niet overeenverkeerde gebruiker/groep idverkeerde gebruiker/groep naamverander groep om de voornaam te gebruikenverander inlognaam voor gebruikeralgemene naam voor nieuwe gebruikerconfiguratiebestand `%s' is te grootkon niet binden met de LDAP serverkon niet binden met de LDAP server, eerste poging als `%s': %skon de TLS niet onderhandelen met LDAP serverkon configuratiebestand `%s' niet openen: %skon configuratiebestand `%s' niet lezen: %skon LDAP protocol niet instellen op versie %dkon de status van configuratiebestand `%s' niet opvragen: %skon beveiliging context voor `%s' niet bepalen: %skon standaard beveiliging context niet verkrijgen: %skon beveiliging context van `%s' niet verkrijgen: %skon `%s' niet openen: %skon niet lezen van `%s': %skon standaard beveiliging context niet instellen naar `%s': %skon status van `%s' niet opvragen: %skon niet naar `%s' schrijven: %smaak een systeemgroep aanmaak een systeemgebruiker aandata niet in bestand gevondendatum van de laatste wachtwoordverandering in dagen sinds 1/1/70dagen voor vervaldatum te beginnen met het waarschuwen van de gebruikermap met bestanden voor de nieuwe gebruikermaak geen groep aan met dezelfde naam als de gebruikermaak geen persoonlijke mappen aanmaak geen persoonlijke map aan voor gebruikermaak geen mail spools aan verwijder de privé groep van de gebruiker niet, als de gebruiker die heeftentiteit heeft geen %s attribuutentiteit heeft geen %s of %s attributenentiteit object heeft geen %s attribuutentiteit structuur heeft geen %s of %s attributenentiteit is aangemaakt zonder %s of %s attributenitem reeds aanwezig in bestanditem met conflict gevende naam is reeds aanwezig in bestandfout bij verbinden met de kadm5-server voor service `%s' in omgeving `%s': %sfout bij aanmaken `%s': %sfout bij aanmaken LDAP map item: %sfout bij aanmaken persoonlijke map voor gebruikerfout bij versleutelen wachtwoordfout bij initialiseren Cyrus SASL: %sfout bij initialiseren kerberos bibliotheekfout bij initialiseren ldap bibliotheekfout bij laden modulefout bij vergrendelen bestandfout bij vergrendelen bestand: %sfout bij manipuleren terminal attributenfout bij aanpassen LDAP map item: %sfout bij verplaatsen persoonlijke map voor gebruikerfout bij openen bestandfout bij verwerken gebruikersnaam `%s' voor kerberosfout bij lezen bestandfout bij lezen van terminalfout bij lezen van informatie voor `%s' van kerberosfout bij lezen terminal attributenfout bij verwijderen LDAP map ingang: %sfout bij verwijderen persoonlijke map voor gebruikerfout bij hernoemen LDAP map item: %sfout bij oplossen van symbool in modulefout bij instellen wachtwoord voor `%s'fout bij instellen wachtwoord in LDAP map voor %s: %sfout bij instellen terminal attributenfout bij opvragen status van bestandfout bij schrijven naar bestandbestand met gebruikersinformatie recordsgenerieke foutgid voor nieuwe groepvoornaam voor nieuwe gebruikergroep %jd heeft geen naamgroep %s heeft geen GIDgroep %s werd niet gevondengroep voor nieuwe gebruikergroep heeft zowel geen naam als geen GIDpersoonlijke mappersoonlijke map voor nieuwe gebruikerthuistelefoonnummer voor nieuwe gebruikerinterne initialisatie foutongeldig IDongeldige attribuut waardeongeldige module combinatieongeldig nummerbibliotheek/module versies komen niet overeentoon veroudering parameters voor de gebruikertoon leden van een opgegeven groep in plaats van de groepslidmaatschappen van de opgegeven gebruikerlijst van toe te voegen beheerderslijst van te verwijderen beheerderslijst van toe te voegen groepsledenlijst van te verwijderen groepsledensluit account afsluit groepmaximale aantal dagen tussen wachtwoordveranderingenminimale aantal dagen tussen wachtwoordveranderingenmodule `%s' definieert `%s' nietmodule uitgezet door configuratiemodule versies komen niet overeen in `%s'verplaats inhoud van persoonlijke mapnaam bevat controle karaktersnaam bevat ongeldig karakter `%c'naam bevat niet-ASCII karaktersnaam bevat spaties of tabsnaam is niet ingesteldnaam is te lang (%zu > %d)naam is te kortnaam begint met een koppeltekennieuw versleuteld wachtwoordnieuw platte tekst wachtwoordgeen `%s' attribuut gevondengeen initialisatie functie %s in `%s'geen schaduwbestand aanwezig -- uitzettenzo'n object niet gevonden in LDAP mapte weinig rechtenzal niet uitvoeren met superuser rechtenaantal dagen na wachtwoord vervaldatum als account als inactief beschouwd wordtobject had geen %s attribuutobject heeft geen %s attribuuttoon alleen lidmaatschap informatie volgens naam en niet UID/GIDwachtwoord vervaldatum in dagen sinds 1/1/70platte tekst wachtwoord voor de gebruikerplatte tekst wachtwoord voor gebruik met groeppre-hashed wachtwoord voor de gebruikerpre-hashed wachtwoord voor gebruik met groepvraag om alle informatielees nieuw versleuteld wachtwoord van gegeven descriptorlees nieuw platte tekst wachtwoord van gegeven descriptorverwijder de persoonlijke map van de gebruikerkamernummer voor nieuwe gebruikerstel GID in voor groepstel UID voor gebruiker instel algemene naam voor gebruiker instel voornaam voor gebruiker instel groepswachtwoord in plaats van gebruikerswachtwoordstel huistelefoonnummer voor gebruiker instel primaire GID voor gebruiker instel kamernummer voor gebruiker instel shell voor gebruiker instel achternaam van gebruiker instel telefoonnummer voor gebruiker inshell voor nieuwe gebruikersuccesachternaam voor niruwe gebruikertelefoonnummer voor nieuwe gebruikerde `%s' en `%s' modules kunnen niet gecombineerd wordenuid voor nieuwe gebruikeronbekende foutopen accountopen groepontgrendelen zou het wachtwoord veld leeg makenniet ondersteund wachtwoord encryptie schemagebruiker %jd heeft geen naamgebruiker %s heeft geen UIDgebruiker %s werd niet gevondengebruiker heeft zowel geen naam als geen UIDgebruiker object had geen %s attribuutgebruiker object is aangemaakt zonder `%s'gebruiker/groep id in gebruikgebruiker/groep naam in gebruiklibuser-0.60~dfsg/po/sl.gmo0000644000175000017500000004405312226342604015641 0ustar tzafrirtzafrir\ 53Qe}*$":"S"v <0m/)')E^w*) (6_v.((.0$_ ! "#!#>$b#. )CT%c%   =L`q    -#$,>k," &<Sn#'!3 Qr"!##<`y   13E$Y~8(**) )T *~ )   1!8!O!j!!!!!!+!. ";"GY"")"&" #!$##F#j####&#(#$$>$)Q${$$0$!$'$&%%'L% t%%3%!% && 5&C&Y&"m&&& & &' 0'Q'"q''''''(%(#C( g(('(((( )-)@)U)"h))$))))+7 ,A, U,v,,,$,7,%-%E-"k-%-0-3-%.'?.g.x.)..H.( /2I/3|/8/!/" 0.0N0#m00+00301,14^11 161/2472$l282*2 2'2'303"H3"k3"3"3#3"3434*S4~44444)45!5>5#Y5}555#555 66 46 B6P6 W6 c6n636.6637#<7$`78737$78838F8[8{8&888"89'9$B9g9999599%:%9:&_:%:::: ::;#;9;7I;3;;;';+<EB<2<.<-<6=0O=1===<=!">D>^>u>!>!>,>2?3?LJ??0?6?@(<@-e@)@@@"@)A2EA5xAA@A B(B0FB%wB4B9B3 C)@C%jC6C+CCD0D@DWD kD"D'DD D#E9E SEtEEEEEEF& F,GF!tFF%FFFFG+G@GYG"oG%G/G G! H] "V%.=u{q,>yt&IDhrg5xlae$ J4z3^Ln#<oR\:A7HMkN+ BU@dc~_)|F}pXY'CTP/wj9-WO;f im[GKb1QS(E2 6s0Z! ?v8*`%s did not have a gid number. %s is not authorized to change the finger info of %s Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] useraccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessunknown errorunlocking would make the password field emptyuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Slovenian (http://www.transifex.com/projects/p/fedora/language/sl/) Language: sl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3); %s ni imel števila gid. %s ni avtoriziran, da bi spremenil podatke finger o %s Račun poteče: %s Izdelava računa ni uspela: %s. Račun je zaklenjen. Račun ni zaklenjen. Avtentikacija za %s ni uspela. Določeni sta bili -L in -U hkrati. Ne morem nastaviti privzetega konteksta za /etc/passwd Podatki za finger %s se spreminjajo. Napaka pri spreminjanju gesla za %s. Ukazna lupina za %s se spreminja. Prepisovanje uporabniške strukture: Napaka Cyrus SASL pri ustvarjanju uporabnika: %sNapaka Cyrus SASL pri odstranjevanju uporabnika: %sPrivzeta imena atributov uporabnika: Privzeti predmetni razredi uporabnika: E-poštni naslovVnos ni bil najden. Napaka pri spreminjanju lastnika `%s': %sNapaka pri ustvarjanju %s: %s. Napaka pri ustvarjanju računa za '%s': nepravilno formatirana vrstica. Napaka pri ustvarjanju skupine `%s': %s Napaka pri ustvarjanju skupine `%s` z GID %jd: %s Napaka pri ustvarjanju domačega imenika za %s: %s Napaka pri ustvarjanju uporabniškega računa za %s: %s Napaka pri inicializaciji %s: %s Napaka pri inicializaciji %s: %s. Napaka pri inicializaciji PAM. Napaka pri zaklepanju %s: %s. Napaka pri premikanju %s v %s: %s. Napaka pri odpiranju '%s`: %s. Napaka pri razčlenjevanju argumentov: %s. Napaka pri branju ,%s`: %sNapaka pri nastavljanju začetnega gesla za %s: %s Napaka pri nastavljanju gesla za skupino %s: %s. Napaka pri nastavljanju gesla za uporabnika %s: %s. Napaka pri pisanju `%s': %sPravic ni bilo moč odstraniti. Podatkov o staranju za %s ni bilo moč spremeniti: %s Gesla za skupino %s ni bilo moč nastaviti: %s Neuspešno nastavljanje gesla za uporabnika %s: %s. Podatki za finger so se spremenili. Podatki za finger se niso spremenili: napaka pri vnosu. Podatki za finger se niso spremenili: %s. Polno imeDobivamo privzete atribute uporabnika: Dano imeSkupina %jd ne obstaja Skupine %s ni moč izbrisati: %s. Skupine %s ni moč izbrisati: %s. Skupine %s ne morem zakleniti: %s Skupine %s ni moč spremeniti: %s Skupine %s ni moč spremeniti: %s. Skupine %s ne morem odkleniti: %s Skupina %s ne obstaja. Izdelava skupine ni uspela: %s Skupina z GID %jd ni imela imena skupine. Domači telefonNedejaven: %ld Notranja napaka PAM ,%s`. Notranja napaka. Neveljaven ID %s Neveljavna privzeta vrednost polja %s: %sNeveljaven ID skupine %s Neveljaven ID uporabnika %s Glavni skrbnik za KerberosGeslo Kerberos za glavnega skrbnikaKerberos RealmLDAP Povezava DNGeslo za povezavo z LDAPUporabnik z odobritvijo SASL v LDAPUporabnik SASL v LDAPIskalna osnova DN za LDAPIme strežnika LDAPZadnja sprememba: %s Največ: %ld Najmanj: %ld NikoliNova lupinaNovo gesloNovo geslo (potrditev)Ime skupine ni bilo določeno, ni imena za gid %d. Ime skupine ni bilo določeno, uporabljam %s. Ime skupine ni bilo določeno. Ni skupine z GID %jd, zato je ne morem odstraniti. Ni novega domačega imenika za %s. Ni starega domačega imenika za %s. Uporabniško ime ni bilo določeno, ni imena za uid %d. Uporabniško ime ni bilo določeno, uporabljam %s. Uporabniško ime ni bilo določeno. PisarnaPisarniški telefonGeslo poteče: %s Geslo nedejavno: %s Sprememba gesla je preklicana. Geslo je spremenjeno. Gesli se ne ujemata, poskusite znova. Pozivniki niso uspeli. Pozivniki uspeli. Ni moč narediti računa z UID 0. Iščem skupino, imenovano %s. Iščem skupino z ID %jd. Iščem uporabnika, imenovanega %s. Iščem uporabnika z ID %jd. Lupina spremenjena. Lupina ni bila spremenjena: %s PriimekNeznanemu uporabniku je bila preverjena istovetnost. Neznan kontekst uporabnikaUporabnika %s ni moč izbrisati: %s. Uporabnika %s ni moč zakleniti: %s. Uporabnika %s ni moč spremeniti: %s. Uporabnika %s ni moč odkleniti: %s. Uporabnik %s ne obstaja. Napačen uporabnik. Opozorilo: %ld [IZBIRA...][IZBIRA...] [uporabnik][IZBIRA...] skupina[IZBIRA...] uporabnikdostop zavrnjenrezervna datoteka ,%s` obstaja in ni običajna datotekavarnostna kopija datoteke ima neujemajočo velikostslaba ID uporabnika/skupineslabo ime uporabnika/skupinenastavitvena datoteka `%s' je prevelikani se bilo moč povezati s strežnikom LDAPni se bilo moč povezati s strežnikom LDAP, prvi poskus kot `%s': %sni se bilo moč pogoditi za TLS s strežnikom LDAPni moč odpreti nastavitvene datoteke ,%s`: %sne morem brati nastavitvene datoteke `%s': %sprotokola LDAP ni bilo moč nastaviti na različico %dni moč preveriti nastavitvene datoteke `%s': %sne morem ugotoviti varnostnega konteksta `%s': %sni moč odpreti ,%s`: %sni moč brati iz ,%s`: %sne morem nastaviti privzetega varnostnega konteksta `%s': %sni moč ugotoviti stanja ,%s`: %sni moč pisati v ,%s`: %sv datoteki ni podatkoventitena nima atributa %sentiteta nima atributov %s ali %sentitetni objekt nima atributa %sentitetna struktura nima atributov %s ali %sentiteta je bila narejena brez atributov %s ali %svnos je že v datotekinapaka pri prijavljanju v strežnik kadm5 za storitev ,%s` v realmu ,%s`: %snapaka pri ustvarjanju ,%s`: %snapaka pri ustvarjanju imeniškem vnosu LDAP: %snapaka pri ustvarjanju domačega imenika za uporabnikanapaka pri šifriranju geslanapaka pri inicializaciji Cyrus SASL: %snapaka pri inicializaciji knjižnice kerberosnapaka pri inicializaciji knjižnice ldapnapaka pri nalaganju modulanapaka pri zaklepanju datotekenapaka pri zaklepanju datoteke: %snapaka pri rokovanju z atributi terminalanapaka pri spreminjanju imeniškega vnosa LDAP: %snapaka pri premikanju domačega imenika za uporabnikanapaka pri odpiranju datotekenapaka pri razčlenjevanju uporabniškega imena ,%s` za kerberosnapaka pri branju datotekenapaka pri branju s terminalanapaka pri branju podatkov za ,%s` prek kerberosnapaka pri branju atributov terminalanapaka pri odstranjevanju imeniškega vnosa LDAP: %snapaka pri odstranjevanju domačega imenika za uporabnikanapaka pri preimenovanju imeniškega vnosa LDAP: %snapaka pri razreševanju simbola v modulunapaka pri nastavljanju gesla za ,%s`napaka pri nastavljanju gesla v imeniku LDAP za %s: %snapaka pri nastavljanju atributov terminalanapaka pri opisovanju datotekenapaka pri pisanju v datotekosplošna napakaskupina %jd nima imenaskupina %s nima GIDskupina nima niti imena niti GIDnotranja napaka pri inicializacijineujemanje različice modula/knjižnicemodučl `%s' ne določa `%s'konfiguracija onemogočila modulneujemanje različice modula v ,%s`ime vsebuje krmilne znakeime vsebuje neveljavni znak '%c'ime vsebuje ne-ASCII znakeime vsebuje prazne znakeime ni nastavljenoime je predolgo (%zu > %d)ime je prekratkoime se začne z pomišljajemni moč najti atributa ,%s`ni inicializacijske funkcije %s v ,%s`ni datoteke z zastrtimi gesli -- onemogočamtakega predmeta ni v imeniku LDAPni dovolj pravicne izvaja se z dovolilnicami skrbnikapredmet nima atributa %spredmet nima atributa %suspehneznana napakaodklepanje bi pustilo polje z geslom praznouporabnik %jd nima imenauporabnik %s nima UIDuporabnik nima niti imena niti UIDuporabniški predmet nima atributa %suporabniški predmet je bil ustvarjen brez ,%s`ID uporabnika/skupine že v rabiime uporabnika/skupine že v rabilibuser-0.60~dfsg/po/nds.po0000644000175000017500000006673412226342567015665 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Low German (http://www.transifex.com/projects/p/fedora/" "language/nds/)\n" "Language: nds\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] Bruker" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Nienich" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Heeler Naam" #: apps/lchfn.c:146 msgid "Surname" msgstr "Tonaam" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Vornaam" #: apps/lchfn.c:167 msgid "Office" msgstr "Kontor" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Kontor Telefon" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Telefon to Huus" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-Post Anskrivt" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Neje Shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "" #: apps/lpasswd.c:111 msgid "New password" msgstr "Nejes Passwoord" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Nejes Passwoord (nohmal)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Passwoord ännert.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:139 #, c-format msgid "Error removing home directory: %s.\n" msgstr "" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "" #: lib/error.c:62 msgid "success" msgstr "Erfolg" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "" #: lib/error.c:66 msgid "generic error" msgstr "" #: lib/error.c:68 msgid "not enough privileges" msgstr "" #: lib/error.c:70 msgid "access denied" msgstr "" #: lib/error.c:72 msgid "bad user/group name" msgstr "" #: lib/error.c:74 msgid "bad user/group id" msgstr "" #: lib/error.c:76 msgid "user/group name in use" msgstr "" #: lib/error.c:78 msgid "user/group id in use" msgstr "" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "" #: lib/error.c:82 msgid "error opening file" msgstr "" #: lib/error.c:84 msgid "error locking file" msgstr "" #: lib/error.c:86 msgid "error statting file" msgstr "" #: lib/error.c:88 msgid "error reading file" msgstr "" #: lib/error.c:90 msgid "error writing to file" msgstr "" #: lib/error.c:92 msgid "data not found in file" msgstr "" #: lib/error.c:94 msgid "internal initialization error" msgstr "" #: lib/error.c:96 msgid "error loading module" msgstr "" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "unbekannter Fehler" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "" #: lib/user.c:218 msgid "name is not set" msgstr "" #: lib/user.c:223 msgid "name is too short" msgstr "" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "" #: lib/user.c:242 msgid "name contains control characters" msgstr "" #: lib/user.c:249 msgid "name contains whitespace" msgstr "" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "" #: modules/files.c:797 msgid "entry already present in file" msgstr "" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "" libuser-0.60~dfsg/po/pl.gmo0000644000175000017500000006636512226342604015650 0ustar tzafrirtzafrir2 <5 (=[o*$,D"]" &G<_/)%;'Z >'U}*)(0.L({(.$ > H Z !y  " # !!#)!$M!#r!!!.! !""%"?"P"%_""""%"" " ##9#H#\#m# ~## #"#### # ##- $#7$[$,u$$$,$" %0%I% P%]%b%x%%%#%%%'&8.&@g&&&!&& '/'?'V'^'{'"'!'#'#'(6( F(+T( ((((%( (1(()B)T)h)))$))8)(8**a***)***0 +)=+)g+++1++ ,(,>,S,1j,,,%,),-$7-\-:u--!-!-+..;.j.3.G./)/&F/m/!/#///00&,0(S0$|00)0000 1!>1'`1&1'1 1132!L2n22"2 2222 3303"C3f3u3"33 33344"?4Qb44 445 05 =5%H5%n5 5 555 646"T6w66666667%(7#N7 r77'7Q7#8>89Y8-88%8 9&(9O9/j9-9 99::%:>:+V:"::::::;0;8;M;-k;; ;; ;-;&<)<><Q<"c<<$<<<<> ?;?(X??)???,?$#@:H@&@@@#@AA@HAA/A.A AA(B0:B!kBPB(B6C6>C2uC+C7C" D#/D SD#tD*D$D.D$E4W^WwW%W/WIW)7X5aX!X7XXIY!XY(zYY2Y3Y)Z5IZJZ!Z2Z;[![[4}[.[*[" \/\"O\.r\6\:\]B3]!v]'];]0]1-^6_^9^,^)^;'_.c_*_#_(_ ``)`G`c`|````&`/ a9aXa!ua%aa#a8ad/b!b$b!b$b "c0c-?c,mcc!cc&c!d&?dfdddddde(e)." {*oM3,R:C8 a7  U'`#qd?rz $yOwX4%&6g!p-)P+ jF.(~(S92&/NT H0%Zcn"! '<|Et}BGJI1l_2e x^,viu-+\1fWmD@/#%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDAYSDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating mail spool for %s: %s Error creating mail spool: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error removing mail spool: %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGECOS informationGECOS information for new userGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Inactive: Never Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Maximum: None Minimum: %ld Must change password on next loginNAMENUMNeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePATHPassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default STRINGSearching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group namechange group to have given namechange login name for usercommon name for new userconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %screate a system groupcreate a system userdata not found in filedate of last password change in days since 1/1/70days before expiration to begin warning userdirectory with files for the new userdon't create group with same name as userdon't create home directoriesdon't create home directory for userdon't create mail spoolsdon't remove the user's private group, if the user has oneentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filefile with user information recordsgeneric errorgid for new groupgiven name for new usergroup %jd has no namegroup %s has no GIDgroup %s not foundgroup for new usergroup has neither a name nor a GIDhome directoryhome directory for new userhome telephone number for new userinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchlist aging parameters for the userlist members of a named group instead of the group memberships for the named userlist of administrators to addlist of administrators to removelist of group members to addlist of group members to removelock accountlock groupmaximum days between password changesminimum days between password changesmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'move home directory contentsname contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphennew crypted passwordnew plain passwordno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesnumber of days after password expiration date when account is considered inactiveobject had no %s attributeobject has no %s attributeonly list membership information by name, and not UID/GIDpassword expiration date in days since 1/1/70plaintext password for the userplaintext password for use with grouppre-hashed password for the userpre-hashed password for use with groupprompt for all informationread new crypted password from given descriptorread new plain password from given descriptorremove the user's home directoryroom number for new userset GID for groupset UID for userset common name for userset given name for userset group password instead of user passwordset home telephone number for userset primary GID for userset room number for userset shell for userset surname for userset telephone number for usershell for new usersuccesssurname for new usertelephone number for new userthe `%s' and `%s' modules can not be combineduid for new userunknown errorunlock accountunlock groupunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser %s not founduser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Polish (http://www.transifex.com/projects/p/fedora/language/pl/) Language: pl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); %s nie posiadał numeru GID. %s nie istnieje %s nie jest upoważniony do zmiany informacji fingera o %s %s wartość "%s": ":" jest niedozwolonaKonto ważne do: %s Utworzenie konta się nie powiodło: %s. Konto jest zablokowane. Konto nie jest zablokowane. Uwierzytelnienie się nie powiodło dla %s. Podano jednocześnie opcje -L i -U. Nie można ustawić domyślnego kontekstu dla /etc/passwd Zmienianie informacji fingera dla %s. Zmienianie hasła dla %s. Zmienianie powłoki dla %s. Kopiowanie struktury użytkownika: Błąd w bibliotece Cyrus SASL podczas tworzenia użytkownika: %sBłąd w bibliotece Cyrus SASL podczas usuwania użytkownika: %sDNINazwy atrybutów dla domyślnego użytkownika: Klasy obiektów dla domyślnego użytkownika: Adres e-mailNie odnaleziono wpisu. Błąd podczas zmieniania trybu "%s": %sBłąd podczas zmieniania właściciela "%s": %sBłąd podczas tworzenia %s: %s. Błąd podczas tworzenia konta dla "%s": wiersz jest niepoprawnie sformatowany. Błąd podczas tworzenia grupy "%s": %s Błąd podczas tworzenie grupy dla "%s" z GID %jd: %s Błąd podczas tworzenia katalogu domowego dla %s: %s Błąd podczas tworzenia bufora poczty dla %s: %s Błąd podczas tworzenia bufora poczty: %s Błąd podczas tworzenia konta użytkownika dla %s: %s Błąd podczas inicjowania %s: %s Błąd podczas inicjowania %s: %s. Błąd podczas inicjowania PAM. Błąd podczas wyszukiwania %s: %s Błąd podczas przenoszenia %s do %s: %s. Błąd podczas otwierania "%s": %s. Błąd podczas przetwarzania parametrów: %s. Błąd podczas odczytywania "%s": %sBłąd podczas odczytywania z deskryptora pliku %d. Błąd podczas usuwania bufora poczty: %sBłąd podczas ustawiania wstępnego hasła dla %s: %s Błąd podczas ustawiania hasła grupie %s: %s. Błąd podczas ustawiania hasła użytkownika %s: %s. Błąd podczas zapisywania "%s": %sPróba odebrania uprawnień się nie powiodła. Wystąpił błąd podczas próby modyfikacji okresu ważności dla %s: %s Ustawienie hasła dla grupy %s się nie powiodło: %s Ustawienie hasła użytkownika %s się nie powiodło: %s. Informacje fingera zostały zmienione. Informacje fingera nie zostały zmienione: błąd wejścia. Informacje fingera nie zostały zmienione: %s. Imię i nazwiskoinformacje GECOSinformacje GECOS dla nowego użytkownikaUzyskiwanie atrybutów domyślnego użytkownika: ImięGrupa %jd nie istnieje Grupa %s nie może zostać usunięta: %s Grupa %s nie może zostać usunięta: %s. Grupa %s nie może zostać zablokowana: %s Grupa %s nie może zostać zmodyfikowana: %s Grupa %s nie może zostać zmodyfikowana: %s. Grupa %s nie może zostać odblokowana: %s Grupa %s nie istnieje. Utworzenie grupy się nie powiodło: %s Grupa z GID %jd nie posiada nazwy. Telefon domowyNieaktywne: %ld Nieaktywne: Nigdy Wewnętrzny błąd PAM "%s". Błąd wewnętrzny. Nieprawidłowy identyfikator %s Nieprawidłowa domyślna wartość pola %s: %sNieprawidłowy identyfikator grupy %s Nieprawidłowy identyfikator użytkownika %s Główny administrator KerberosaHasło dostępu do Kerberosa dla głównego administratoraObszar KerberosaDN do powiązania z LDAPHasło powiązania z LDAPUpoważnienie użytkownika SASL LDAPUżytkownik SASL LDAPPodstawowy DN dla LDAPNazwa serwera LDAPOstatnia zmiana: %s Maksymalnie: %ld Maksymalnie: Brak Minimalnie: %ld Należy zmienić hasło podczas następnego logowaniaNAZWALICZBANigdyNowa powłokaNowe hasłoNowe hasło (potwierdzenie)Nie podano nazwy grupy, brak nazwy dla GID %d. Nie podano nazwy grupy, używanie %s. Nie podano nazwy grupy. Nie istnieje żadna grupa z GID %jd, nie zostanie usunięta. Brak nowego katalogu domowego dla %s. Brak poprzedniego katalogu domowego dla %s. Nie podano nazwy użytkownika dla UID %d. Nie podano nazwy użytkownika, używanie %s. Nie podano nazwy użytkownika. PracaTelefon do pracyŚCIEŻKAHasło wygasa: %s Hasło nieaktywne: %s Zmiana hasła została anulowana. Hasło zostało zmienione. Hasła nie pasują, proszę spróbować ponownie. Znak zachęty się nie powiódł. Znak zachęty powiódł się. Nie można utworzyć konta o UID 0. Odmawianie domyślnego użycia niebezpiecznego katalogu domowego "%s"Odmawianie domyślnego użycia niebezpiecznego katalogu domowego "%s" dla %s CIĄGWyszukiwanie grupy o nazwie %s. Wyszukiwanie grupy o identyfikatorze %jd. Wyszukiwanie użytkownika o nazwie %s. Wyszukiwanie użytkownika o identyfikatorze %jd. Powłoka została zmieniona. Powłoka nie została zmieniona: %s NazwiskoNieznany upoważniony użytkownik. Nieznany kontekst użytkownikaUżytkownik %s nie może zostać usunięty: %s. Użytkownik %s nie może zostać zablokowany: %s. Użytkownik %s nie może zostać zmodyfikowany: %s. Użytkownik %s nie może zostać odblokowany: %s. Użytkownik %s nie istnieje. Użytkownik nie zgadza się. Ostrzeżenie: %ld Ostrzeżenie: grupa o identyfikatorze %jd nie istnieje. [OPCJA...][OPCJA...] [użytkownik][OPCJA...] grupa[OPCJA...] użytkownik":" nie jest dozwolone w zaszyfrowanym haśledostęp zabronionyplik zapasowy "%s" istnieje i nie jest zwykłym plikiemniezgodność rozmiaru pliku zapasowegobłędny identyfikator użytkownika/grupybłędna nazwa użytkownika/grupyzmienia nazwę grupy na podanązmienia nazwę logowania dla użytkownikawspólna nazwa dla nowego użytkownikaplik konfiguracyjny "%s" jest za dużynie można powiązać z serwerem LDAPnie można dołączyć się do serwera LDAP, pierwsza próba jako "%s": %snie można uzgodnić TLS z serwerem LDAPnie można otworzyć pliku konfiguracyjnego "%s": %snie można odczytać pliku konfiguracyjnego "%s": %snie można ustawić protokołu LDAP do wersji %dnie można wykonać "stat" na pliku konfiguracyjnym "%s": %snie można ustalić domyślnego kontekstu bezpieczeństwa dla "%s": %snie można uzyskać domyślnego kontekstu bezpieczeństwa: %snie można uzyskać domyślnego kontekstu bezpieczeństwa "%s": %snie można otworzyć "%s": %snie można odczytać z "%s": %snie można ustawić domyślnego kontekstu bezpieczeństwa na "%s": %snie można wykonać "stat" na "%s": %snie można zapisać do "%s": %stworzy grupę systemowątworzy użytkownika systemowegodane w pliku nie zostały odnalezionedata ostatniej zmiany hasła od 1 stycznia 1970liczba dni przed wygaśnięciem, podczas których ostrzegać użytkownikakatalog z plikami dla nowego użytkownikabez tworzenia grupy o tej samej nazwie co użytkownikbez tworzenia katalogów domowychbez tworzenia katalogu domowego dla nowego użytkownikabez tworzenia kolejek pocztybez usuwania prywatnej grupy użytkownika, jeśli użytkownik ją posiadajednostka nie posiada atrybutu %sjednostka nie posiada atrybutu %s lub %sobiekt nie posiada atrybutu %sstruktura jednostki nie posiada atrybutu %s lub %sjednostka została utworzona bez atrybutu %s lub %swpis znajduje się już w plikuwpis o nazwie w konflikcie znajduje się już w plikubłąd połączenia z usługą "%s"' na serwerze kadm5 w obszarze "%s": %sbłąd podczas tworzenia "%s": %sbłąd podczas tworzenia wpisu w katalogu LDAP: %sbłąd podczas tworzenia katalogu domowego dla użytkownikabłąd podczas szyfrowania hasłabłąd podczas inicjowania biblioteki Cyrus SASL: %sbłąd podczas inicjowania biblioteki Kerberosbłąd podczas inicjowania biblioteki LDAPbłąd podczas wczytywania modułubłąd podczas blokowania plikubłąd podczas blokowania pliku %sbłąd podczas zmieniania atrybutów terminalabłąd podczas modyfikacji pozycji w katalogu LDAP: %sbłąd podczas przenoszenia katalogu domowego użytkownikabłąd podczas otwierania plikubłąd podczas przetwarzania nazwy użytkownika "%s" dla Kerberosabłąd podczas odczytywania plikubłąd podczas odczytywania z terminalubłąd podczas odczytywania informacji dla "%s" z Kerberosabłąd podczas odczytywania atrybutów terminalabłąd podczas usuwania wpisu w katalogu LDAP: %sbłąd podczas usuwania katalogu domowego użytkownikabłąd podczas zmieniania nazwy wpisu w katalogu LDAP: %sbłąd podczas wyszukiwaniu symbolu w modulebłąd podczas ustawiania hasła dla "%s"błąd podczas ustawiania hasła w katalogu LDAP dla %s: %sbłąd podczas ustawiania atrybutów terminalabłąd podczas wykonywania "stat" na plikubłąd podczas zapisywania do plikuplik z wpisami informacji o użytkownikuogólny błądGID nowej grupyimię dla nowego użytkownikagrupa %jd nie posiada nazwygrupa %s nie posiada GIDnie odnaleziono grupy %sgrupa dla nowego użytkownikagrupa nie posiada nazwy ani GIDkatalog domowykatalog domowy dla nowego użytkownikanumer telefonu domowego dla nowego użytkownikabłąd wewnętrzny inicjowanianieprawidłowy identyfikatornieprawidłowa wartość atrybutunieprawidłowe połączenie modułównieprawidłowy numerniezgodne wersje biblioteki/modułuwyświetla listę parametrów starzenia dla użytkownikawyświetla listę członków nazwanej grupy zamiast członkostwa w grupie dla nazwanego użytkownikalista administratorów do dodanialista administratorów do usunięcialista członków grupy do dodanialista członków grupy do usunięciablokuje kontoblokuje grupęmaksymalna liczba dni między zmianami hasłaminimalna liczba dni między zmianami hasłamoduł "%s" nie określa "%s"moduł wyłączony w konfiguracjiniezgodna wersja modułu w "%s"przenosi zawartość katalogu domowegonazwa zawiera znaki kontrolnenazwa zawiera nieprawidłowy znak "%c"nazwa zawiera znaki spoza ASCIInazwa zawiera biały znaknazwa nie jest ustawionanazwa jest za długa (%zu > %d)nazwa jest za krótkanazwa zaczyna się od myślnikanowe zaszyfrowane hasłonowe zwykłe hasłonie odnaleziono atrybutu "%s"brak funkcji inicjującej %s w "%s"plik shadow nieobecny - wyłączanienie ma takiego obiektu w katalogu LDAPbrak wystarczających uprawnieńbez uruchamiania z uprawnieniami superużytkownikaliczba dni po dacie wygaśnięcia hasła, po których konto zostanie uznane za nieaktywneobiekt nie posiadał atrybutu %sobiekt nie posiada atrybutu %swyświetla listę tylko informacji o członkostwie według nazwy, bez UID/GIDdata wygaśnięcia hasła w dniach od 1 stycznia 1970hasło w zwykłym tekście dla użytkownikahasło w zwykłym tekście do użycia z grupąuprzednio wymieszane hasło dla użytkownikauprzednio wymieszane hasło do użycia z grupąpyta o wszystkie informacjeodczytuje nowe zaszyfrowane hasło z podanego deskryptoraodczytuje nowe zwykłe hasło z podanego deskryptorausuwa katalog domowy użytkownikanumer pokoju dla nowego użytkownikaustawia GID dla grupyustawia UID dla użytkownikaustawia wspólną nazwę dla użytkownikaustawia imię dla użytkownikaustawia hasło grupy zamiast hasła użytkownikaustawia numer telefonu domowego dla użytkownikaustawia główny GID dla użytkownikaustawia numer pokoju dla użytkownikaustawia powłokę dla użytkownikaustawia nazwisko dla użytkownikaustawia numer telefonu dla użytkownikapowłoka dla nowego użytkownikapowodzenienazwisko dla nowego użytkownikanumer telefonu dla nowego użytkownikamodułów "%s" i "%s" nie można łączyćUID dla nowego użytkownikanieznany błądodblokowuje kontoodblokowuje grupęodblokowywanie spowoduje pozostawienie pustego pola hasłanieobsługiwany schemat szyfrowania hasłaużytkownik %jd nie posiada nazwyużytkownik %s nie posiada UIDnie odnaleziono użytkownika %sużytkownik nie posiada nazwy ani UIDobiekt użytkownika nie posiada atrybutu %sobiekt użytkownika został utworzony bez "%s"identyfikator użytkownika/grupy jest już używanynazwa użytkownika/grupy jest już używanalibuser-0.60~dfsg/po/tr.po0000644000175000017500000010653112226342570015506 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Bahadir Yagan , 2004 # Hasan Alp İNAN , 2011, 2012 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/fedora/language/" "tr/)\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "İzinler bırakılamadı.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "İç hata.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "" "%s kapsamı %s kullanıcısının bilgilerini değiştirmek için yetkili değil\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Bilinmeyen kullanıcı kapsamı" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwd için öntanımlı kapsam belirlenemedi\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM başlatılırken hata.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%s için kimlik sınaması başarısız.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "İç PAM hatası `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Bilinmeyen kullanıcı doğrulandı.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Kullanıcı aynı değil.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[SEÇENEK...] kullanıcı" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "argümanlar okunurken hata: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Kullanıcı ismi belirtilmedi.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s başlatılırken hata: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Kullanıcı %s yok.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Hesap kilitli.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Hesap kilitli değil.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "En az:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "En çok:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Uyarı:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Etkin olmayan:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Asla" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Son Değişiklik:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Parola zaman aşımı:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Parola etkisiz:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Hesap Zaman aşımı:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s için dönemsellik bilgisi değişikliği başarısız: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[SEÇENEK...] [kullanıcı]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Kullanıcı ismi belirtilmemiş, %d kimliği için isim yok.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s için kullanıcı bilgileri değiştiriliyor.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Adı ve Soyadı" #: apps/lchfn.c:146 msgid "Surname" msgstr "Soyadı" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Verilen İsim" #: apps/lchfn.c:167 msgid "Office" msgstr "İş" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "İş Telefonu" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Ev Telefonu" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-posta Adresi" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Kullanıcı bilgileri değişmedi: giriş hatası.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Kullanıcı bilgileri değişti.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Kullanıcı bilgileri değişmedi: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s için kabuk değiştiriliyor.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Yeni Kabuk" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Kabuk değişmedi: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Kabuk değişti.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[SEÇENEK...] grup" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Grup ismi belirtilmedi.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Geçersiz grup kimliği %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Grup oluşturulamadı: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Grup %s yok.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "%s grubu silinemedi: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L ve -U birlikte kullanılamaz.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s grubu için parola belirlenemedi: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s grubu kilitlenemedi: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s grubunun kilidi kaldırılamadı: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s grubu değiştirilemedi: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s aranırken hata: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Grup ismi belirtilmemiş, %s kullanılıyor.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Grup ismi belirtilmemiş, %d grubu için isim yok.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Kullanıcı ismi belirtilmemiş, %s kullanılıyor.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "Kullanıcı %s yok\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[SEÇENEK...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' açılırken hata: %s\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "`%s' için hesap oluşturulurken hata: satır yanlış biçimlendirilmiş.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Geçersiz kullanıcı kimliği %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "0 kullanıcı kimlikli hesap oluşturulması reddediliyor.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' için %jd kimlik numarası ile grup oluşturulurken hata: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "`%s' dizini tehlikeli olduğu için %s kullanıcısının öntanımlı ev dizini " "olarak kullanılamıyor\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%s için ev dizini oluşturulurken hata: %s.\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "`%s' için parola belirlenirken hata: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%s için kullanıcı hesabı oluşturulurken hata: %s.\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "`%s' için parola değiştiriliyor.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Yeni parola" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Yeni parola (tekrar)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Parolalar aynı değil, tekrar deneyin.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Parola değişimi iptal edildi.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "%d dosya tanımlayıcısı okuma hatası.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s kullanıcısı için parola belirlenirken hata: %s\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "`%s' grubu için parola belirlenirken hata: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Parola değişti.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Grup %jd yok\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "`%s' için grup oluşturulurken hata: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Hesap oluşturulamadı: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s oluşturulurken hata: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "%s kullanıcısı silinemedi: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s için bir grup kimliği yok.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "%jd kimlikli bir grup yok, silinemiyor.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "%jd kimlikli gruba bir grup ismi verilmedi.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s grubu silinemedi: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "bu kullanıcı için ev dizini silinirken hata oluştu" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s kullanıcısı için parola belirlenemedi: %s\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Kullanıcı %s kilitlenemedi: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Kullanıcı %s için kilit kaldırılamadı: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Uyarı: %jd kimlikli grup yok.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Kullanıcı %s değiştirilemedi: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%s grubu değiştirilemedi: %s\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s için eski ev dizini yok.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s için yeni ev dizini yok.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%s %s'e taşınırken hata: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "`%s' yapılandırma dosyası açılamadı: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "`%s' yapılandırma dosyası durumlanamadı: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "`%s' yapılandırma dosyası çok büyük" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "`%s' yapılandırma dosyası okunamadı: %s" #: lib/error.c:62 msgid "success" msgstr "başarılı" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modül yapılandırmada iptal edildi" #: lib/error.c:66 msgid "generic error" msgstr "genel hata" #: lib/error.c:68 msgid "not enough privileges" msgstr "izinler yetersiz" #: lib/error.c:70 msgid "access denied" msgstr "erişim engellendi" #: lib/error.c:72 msgid "bad user/group name" msgstr "kullanıcı/grup ismi hatalı" #: lib/error.c:74 msgid "bad user/group id" msgstr "kullanıcı/grup kimlikleri hatalı" #: lib/error.c:76 msgid "user/group name in use" msgstr "kullanıcı/grup ismi kullanımda" #: lib/error.c:78 msgid "user/group id in use" msgstr "kullanıcı/grup kimlikleri kullanımda" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "uçbirim özellikleri değiştirilirken hata" #: lib/error.c:82 msgid "error opening file" msgstr "dosya açılırken hata" #: lib/error.c:84 msgid "error locking file" msgstr "dosya kilitlenirken hata" #: lib/error.c:86 msgid "error statting file" msgstr "dosya durumlanırken hata" #: lib/error.c:88 msgid "error reading file" msgstr "dosya okunurken hata" #: lib/error.c:90 msgid "error writing to file" msgstr "dosyaya yazılırken hata" #: lib/error.c:92 msgid "data not found in file" msgstr "dosyada veri yok" #: lib/error.c:94 msgid "internal initialization error" msgstr "kerberos kitaplığı başlatılırken hata" #: lib/error.c:96 msgid "error loading module" msgstr "modül yüklenirken hata" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "modül içindeki sembol çözümlenirken hata" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "modül/kitaplık sürümü uyumsuzluğu" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "kilidi kaldırmak parola alanının boş olması anlamına gelir" #: lib/error.c:105 msgid "invalid attribute value" msgstr "geçersiz öznitelik değeri" #: lib/error.c:107 msgid "invalid module combination" msgstr "geçersiz modül kombinasyonu" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "bilinmeyen" #: lib/misc.c:240 msgid "invalid number" msgstr "geçersiz sayı" #: lib/misc.c:254 msgid "invalid ID" msgstr "geçersiz kimlik" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "İlklendirme işlevi %s `%s' içinde yok" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "`%s' de modül sürümü uyumsuzluğu" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' modülü `%s' tanımlamıyor" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "uçbirim özellikleri okunurken hata" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "uçbirim özellikleri ayarlanırken hata" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "uçbirimden okumada hata" #: lib/user.c:218 msgid "name is not set" msgstr "isim yok" #: lib/user.c:223 msgid "name is too short" msgstr "isim çok kısa" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "isim çok uzun (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "isim ASCII olmayan karakterler içeriyor" #: lib/user.c:242 msgid "name contains control characters" msgstr "isim denetim karakterleri içeriyor" #: lib/user.c:249 msgid "name contains whitespace" msgstr "isimde boşluk karakterleri var" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "isim tire ile başlıyor" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "isimde `%c' karakteri kullanılamaz" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "%s kullanıcısının kimliği yok" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "%s grubunun kimliği yok" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "%jd kullanıcısının bir ismi yok" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "grup %jd bir isme sahip değil" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "kullanıcı bir isim ya da kimliğe sahip değil" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "grup bir isim ya da kimliğe sahip değil" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "`%s' tehlikeli ev dizininin öntanımlı olarak kullanılması reddedildi" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s alanı geçersiz bir öntanımlı değere sahip: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "dosya kilitlenirken hata: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "öntanımlı güvenlik kapsamı alınamadı: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%s' dosyasının güvenlik kapsamı alınamadı: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "öntanımlı güvenlik kapsamı `%s' olarak ayarlanamadı: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s' dosyasının güvenlik kapsamı belirlenemedi: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' açılamadı: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' durum bilgisi alınamadı: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' oluşturulurken hata: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "yedek dosyası `%s' var ama normal bir dosya değil" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' dosya/dizininin sahipliği değiştirilirken hata: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' okunurken hata: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s' yazılırken hata: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "yedek dosya boyutu tutmuyor" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s değeri `%s': `:' karakterine izin verilmedi" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s'den okunamadı: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "girdi zaten dosyada var" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s'e yazılamadı: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "öğe nesnesi %s özelliğine sahip değil" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "ismi çakışan girdi zaten dosyada var" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' karakterine şifrelenmiş parolada izin verilmiyor" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "parolanın şifrelenmesinde hata" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "`%s' ve `%s' modülleri birleştirilemez" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "root yetkileriyle çalıştırılmıyor" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "shadow dosyası yok -- iptal ediliyor" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "`%s' hizmeti için `%s' alanındaki kadm5 suncusuna bağlanırken hata: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "kerberos kitaplığı başlatılırken hata" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "kullanıcı ismi `%s' kerberos için ayrıştırılırken hata oluştu" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "öğe yapısı ne %s ne de %s özelliğine sahip" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "öğe ne %s ne de %s özelliğine sahip" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "öğe ne %s ne de %s özelliğiyle oluşturuldu" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "kerberostaki %s için bilgiler okunurken hata" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "öğe %s özelliğini içermiyor" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' için parola belirlenirken hata" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Baş Yöneticisi" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Baş Yönetici için Kerberos Parolası" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "ldap kitaplığı başlatılırken hata" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP protokolü %d sürümüne ayarlanamadı" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP sunucusu ile TLS uzlaşması yapılamadı" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP sunucusuna bağlanılamadı" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP sunucusuna bağlanılamadı, ilk deneme `%s' olarak yapıldı: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "kullanıcı nesnesi %s özelliğini içermiyor" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "kullanıcı nesnesi `%s' olmaksızın oluşturuldu" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "LDAP dizin girdisi oluşturulurken hata: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "LDAP dizin girdisi değiştirilirken hata: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP dizin girdisi isimlendirilirken hata: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "nesne %s özelliğini içermiyor" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP dizin girdisi silinirken hata: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "nesne %s özelliğini içermiyor" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "desteklenmeyen parola şifreleme yöntemi" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP dizininde böyle bir nesne yok" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "`%s' özelliği bulunmuyor" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "LDAP dizininde %s için parola belirlenirken hata: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP Sunucu İsmi" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP Arama Tabanı DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bağlantı DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bağlantı Parolası" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL Kullanıcısı" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL Yetkilendirme Kullanıcısı" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "kullanıcı oluşturulurken Cyrus SASL hatası: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "kullanıcı silinirken Cyrus SASL hatası: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "Cyrus SASL ilklendirilirken hata: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "bu kullanıcı için ev dizini oluşturulurken hata oluştu" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "bu kullanıcı için ev dizini silinirken hata oluştu" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "bu kullanıcı için eski ev dizini taşınırken hata oluştu" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "%s başlatılırken hata: %s.\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Geçersiz Kimlik %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "%jd kimlikli grup için arama yapılıyor.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s isimli grup için arama yapılıyor.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "%jd kimlikli kullanıcı için arama yapılıyor.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s isimli kullanıcı için arama yapılıyor.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Girdi yok.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Bilgi alımları başarılı.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Bilgi alımları başarısız.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Öntanımlı kullanıcı nesnesi sınıfları:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Öntanımlı kullanıcı öznitelik isimleri:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Öntanımlı kullanıcı öznitelikleri alınıyor:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kullanıcı yapısı kopyalanıyor:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s bir ev dizinine sahip değil.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s silinirken hata: %s.\n" libuser-0.60~dfsg/po/ml.po0000644000175000017500000014500412226342567015475 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Ani Peter , 2006, 2007 # Miloslav Trmač , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora/" "language/ml/)\n" "Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "അനുമതികള്‍ വേണ്ടെന്ന് വയ്ക്കുന്നതില്‍ പരാജയം.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "ആന്തരീകമായ പിഴവ്.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%sന്റെ ഫിം‍ഗര്‍ ഇന്‍ഫോ മാറ്റുവാന്‍ %sന് അധികാരമില്ല \n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "അപരിചിതമായ ഉപയോക്തൃ സന്ദര്‍ഭം" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "/etc/passwdന് തനതായൊരു പശ്ചാത്തലം ഒരുക്കാന്‍ സാദ്ധ്യ‌‌മല്ല\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "PAM തുടങ്ങുന്നതില്‍ പിഴവ്.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "%sന്റെആധികാരികത പരാജയം.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "PAMലുള്ള ആന്തരീകമായ‍ പിഴവ് `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "അജ്ഞാതനായ ഉപയോക്താവ്.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "ഉപയോക്താക്കള്‍ തമ്മില്‍ പൊരുത്തക്കേട്.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPTION...] ഉപയോക്താവ്" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "ആര്‍‍ഗ്യു‌മെന്റുകള്‍ വ്യാകരിക്കുന്നതില്‍ പിഴവ്: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "ഉപയോക്തൃനാമം വ്യ‌‌ക്തമാക്കിയിട്ടില്ല.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "%s ആരംഭിക്കുന്നതില്‍ പിശക്: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s എന്ന ഉപയോക്താവ് നിലവിലില്ല.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "അക്കൌണ്ട് പൂട്ടപ്പെട്ടിരിക്കുന്നു.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "അക്കൌണ്ട് പൂട്ടിയിട്ടില്ല.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "ഏറ്റവും കുറഞ്ഞ:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "പരമാവധി:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "മുന്നറിയിപ്പ്:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "സജീവമല്ലാത്ത:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "ഒരിക്കലും ഇല്ല" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "ഒടുവിലത്തെ മാറ്റം:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "രഹസ്യവാക്കിനുള്ള കാലാവധി തീരുന്നു:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "രഹസ്യവാക്ക് നിര്‍ജീവം:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "അക്കൌണ്ടിന്റെ കാലാവധി തീരുന്നു:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%sന്റെ കാലാവധി തീരുന്ന അറിയിപ്പ് പരിഷ്കരിക്കല്‍ പരാജയം%s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPTION...] [ഉപയോക്താവ്]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "ഉപയോക്തൃ നാമം വ്യ‌‌ക്തമാക്കിയിട്ടില്ല, uid %dയ്ക്ക് പേരില്ല.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s നുള്ള finger വിവരത്തില്‍ മാറ്റം വരുത്തുന്നു.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "മുഴുവന്‍ പേര്" #: apps/lchfn.c:146 msgid "Surname" msgstr "ചെല്ലപ്പേര്" #: apps/lchfn.c:157 msgid "Given Name" msgstr "തന്നിരിക്കുന്ന പേര്" #: apps/lchfn.c:167 msgid "Office" msgstr "ഓഫീസ്" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "ഓഫീസിലെ ഫോണ്‍ നമ്പര്‍" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "വീട്ടിലെ ഫോണ്‍ നമ്പര്‍" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "ഈ-മെയില്‍ അഡ്രസ്സ്" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "finger informationല്‍ മാറ്റം വന്നിട്ടില്ല: ഇന്‍പുട്ടില്‍ പിഴവ്.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "finger informationല്‍ മാറ്റം വരുത്തി.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "finger informationല്‍ മാറ്റം വരുത്തിയില്ല: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%sന്റെ ഷെല്‍ മാറ്റുന്നു.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "പുതിയ ഷെല്‍" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "ഷെല്‍ മാറ്റിയിട്ടില്ല:%s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "ഷെല്‍ മാറ്റിയിരിക്കുന്നു.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPTION...] സംഘം" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "സംഘനാമം വ്യ‌‌ക്തമാക്കിയിട്ടില്ല.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "അസാധുവായ സംഘ ID%s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "സംഘം സൃഷ്ടിക്കുന്നതില്‍ പരാജയപ്പെട്ടു: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "%s എന്ന സംഘം നിലവിലില്ല.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "%s എന്ന സംഘം നീക്കം ചെയ്യുവാന്‍ സാധിക്കുന്നില്ല: %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-Lഉം -Uഉം വ്യ‌‌ക്തമാക്കിയിട്ടുണ്ട്.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "%s എന്ന സംഘത്തിന് രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പരാജയപ്പെട്ടു: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s എന്ന സംഘം പൂട്ടാന്‍ സാധിക്കുന്നില്ല: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s എന്ന സംഘം തുറന്നുവിടാന്‍‍ സാധിക്കുന്നില്ല: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s എന്ന സംഘത്തില്‍‍ മാറ്റം വരുത്തുവാന്‍ സാധിക്കുന്നില്ല: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "%s-ല്‍ തിരയുന്നതില്‍ പിഴവ്: %s.\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "സംഘനാമം വ്യ‌‌ക്തമാക്കാഞ്ഞതിനാല്‍, %s ഉപയോഗിക്കുന്നു.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "സംഘനാമം വ്യ‌‌ക്തമാക്കിയിട്ടില്ല, gid %dയ്ക്കും പേരില്ല.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "ഉപയോക്തൃനാമം വ്യ‌‌ക്തമാക്കാഞ്ഞതിനാല്‍, %s ഉപയോഗിക്കുന്നു.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s നിലവിലില്ല.\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPTION...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "`%s' തുറക്കുന്നതില്‍ പിഴവ്: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "%sന് അക്കൌണ്ട് നിര്‍മ്മിക്കുന്നതില്‍ പിഴവ്: ലൈന്‍ തെറ്റായി രൂപപ്പെടുത്തിയിരിക്കുന്നു.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "അസാധുവായ ഉപയോക്തൃ ID %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "UID 0 ആയി അക്കൌണ്ട് തുറക്കുവാന്‍ അനുവദിക്കുന്നില്ല.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "`%s' ന് GID %jd ആയി ഗ്രൂപ്പ് ഉണ്ടാക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "%s-നു് സ്വതവേയുള്ള അപകടകാരിയായ `%s' ഹോം ഡയറക്ടറി ഉപയോഗിക്കുന്നതു് നിഷേധിക്കുന്നു\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "%sയ്ക്ക് ഹോം ഡയറക്ടറി സൃഷ്ടിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%sന് ആരംഭത്തിലുള്ള രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "%sന് ഉപയോക്തൃ അക്കൌണ്ട് ഉണ്ടാക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു : %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s നുള്ള രഹസ്യവാക്ക് മാറ്റുന്നു.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "പുതിയ രഹസ്യവാക്ക്" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "പുതിയ രഹസ്യവാക്ക് (ഉറപ്പ് വരുത്തുക)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "രഹസ്യവാക്കുകള്‍ തമ്മില്‍ ചേരുന്നില്ല.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "രഹസ്യവാക്കില്‍ മാറ്റം വരുത്തിയത് റദ്ദാക്കിയിരിക്കുന്നു.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "%s എന്ന ഉപയോക്താവിനു് രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "%s എന്ന സംഘത്തിന് രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "രഹസ്യവാക്ക് മാറ്റിയിരിക്കുന്നു.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jdഎന്ന ഗ്രൂപ്പ് നിലവിലില്ല\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "`%s' എന്ന ഗ്രൂപ്പ് സൃഷ്ടിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "അക്കൌണ്ട് സൃഷ്ടിക്കുവാന്‍ സാധിച്ചില്ല: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "%s സൃഷ്ടിക്കുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "User %s എന്ന ഉപയോക്താവിനെ നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല : %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%sന് gid നമ്പര്‍ ലഭ്യ‌‌മല്ല.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "GID %jd ആയിട്ടുളള ഗ്രൂപ്പ് നിലവിലില്ല, അതിനാല്‍ നീക്കം ചെയ്യുന്നില്ല.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "GID %jd ആയുളള സംഘത്തിന് സംഘനാമം ലഭ്യ‌‌മല്ല.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s എന്ന ഗ്രൂപ്പ നീക്കം ചെയ്യുവാന്‍ സാധിച്ചില്ല: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി നീക്കം ചെയ്യുന്നതില്‍ പിഴവ്" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "%s എന്ന ഉപയോക്താവിന്ന് രഹസ്യവാക്ക് ഉറപ്പിക്കുവാന്‍ സാധിച്ചില്ല: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%sഎന്ന ഉപയോക്താവ് ലോക്ക് ചെയ്യുവാന്‍ സാധിച്ചില്ല: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%sഎന്ന ഉപയോക്താവ് അണ്‍ലോക്ക് ചെയ്യുവാന്‍ സാധിച്ചില്ല: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "മുന്നറിയിപ്പ്: %jd എന്ന ഐഡിയുള്ള ഗ്രൂപ്പ് നിലവിലില്ല.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s എന്ന ഉപയോക്താവിനെ പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%sഎന്ന ഗ്രൂപ്പിനെ പരിഷ്കരിക്കുവാന്‍ സാധിച്ചില്ല: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%sന് പഴയ ഡയറക്ടറി ലഭ്യ‌‌മല്ല.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%sന് പുതിയ ഡയറക്ടറി ലഭ്യ‌‌മല്ല .\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "%sലേക്ക് %sനെ നീക്കുന്നതില്‍ പിഴവ്: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "`%s' എന്ന ക്രമീകരണ‍ ഫയല്‍ തുറക്കുവാന്‍ സാധിച്ചില്ല: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "`%s' എന്ന ക്രമീകരണ ഫയല്‍ stat ചെയ്യുവാന്‍ സാധിച്ചില്ല : %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "`%s' ക്രമീകരണ ഫയല്‍ വളരെ വലുതാണ് " #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "`%s'എന്ന ക്രമീകരണ ഫയല്‍ വായിക്കുവാന്‍ സാധിച്ചില്ല: %s" #: lib/error.c:62 msgid "success" msgstr "വിജയിച്ചു" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "ക്രമീകരണം കൊണ്ട് മൊഡ്യൂള്‍ പ്രവര്‍‍ത്തനരഹിതമായിരിക്കുന്നു" #: lib/error.c:66 msgid "generic error" msgstr "ജനറിക്ക് പിഴവ്" #: lib/error.c:68 msgid "not enough privileges" msgstr "മതിയായ വിശേഷാവകാശങ്ങളില്ല" #: lib/error.c:70 msgid "access denied" msgstr "പ്രവേശനം നിഷേധിച്ചിരിക്കുന്നു" #: lib/error.c:72 msgid "bad user/group name" msgstr "അസാധുവായ ഉപയോക്തൃ/സംഘ നാമം" #: lib/error.c:74 msgid "bad user/group id" msgstr "അസാധുവായ ഉപയോക്തൃ/സംഘ id" #: lib/error.c:76 msgid "user/group name in use" msgstr "ഉപയോക്തൃ‍/ ഉപയോഗത്തിലുളള സംഘനാമം" #: lib/error.c:78 msgid "user/group id in use" msgstr "ഉപയോക്തൃ‍/ ഉപയോഗത്തിലുളള സംഘ id" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "അഗ്രിമത്തിന്റെ വൈശിഷ്ട്യങ്ങള്‍ കൈകാര്യം ചെയ്യുന്നതില്‍ പിഴവ്" #: lib/error.c:82 msgid "error opening file" msgstr "ഫയല്‍ തുറക്കുന്നതില്‍ പിഴവ്" #: lib/error.c:84 msgid "error locking file" msgstr "ഫയല്‍ ലോക്ക് ചെയ്യുന്നതില്‍ പിഴവ്" #: lib/error.c:86 msgid "error statting file" msgstr "ഫയല്‍ stat ചെയ്യുന്നതില്‍ പിഴവ്" #: lib/error.c:88 msgid "error reading file" msgstr "ഫയല്‍ വായിക്കുന്നതില്‍ പിഴവ്" #: lib/error.c:90 msgid "error writing to file" msgstr "ഫയല്‍‍ എഴുതുന്നതില്‍ പിഴവ്" #: lib/error.c:92 msgid "data not found in file" msgstr "ഡാറ്റാ ഫയലില്‍ ലഭ്യ‌‌മല്ല" #: lib/error.c:94 msgid "internal initialization error" msgstr "ആന്തരീകമായ പ്രാരംഭ പിഴവ്" #: lib/error.c:96 msgid "error loading module" msgstr "മൊഡ്യൂള്‍ ലോഡ് ചെയ്യുന്നതില്‍ പിഴവ് സംഭവിച്ചിരിക്കുന്നു" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "മൊഡ്യൂ‌‌ളില്‍ പ്രതീകം തീരുമാനിക്കുന്നതില്‍ പിഴവ്" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "ലൈബ്രറി/മൌഡ്യൂള്‍ പതിപ്പില്‍ പൊരുത്തക്കേട്" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "അണ്‍ലോക്കിംഗ് ചെയ്താല്‍ രഹസ്യവാക്കിനുള്ള ഫീല്‍‍ഡ് കാലിയാകും" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "അജ്ഞാത പിഴവ്" #: lib/misc.c:240 msgid "invalid number" msgstr "അസാധുവായ നമ്പര്‍" #: lib/misc.c:254 msgid "invalid ID" msgstr "അസാധുവായ ഐഡി" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "%sഎന്ന പ്രാരംഭ ധര്മ്മം `%s'ല്‍ ലഭ്യ‌‌മല്ല" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "%sല്‍ മൊഡ്യൂള്‍ പതിപ്പില്‍‍ പൊരുത്തക്കേട്" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "'%s' മൊഡ്യൂള്‍ വ്യാ‌‌ഖ്യാനിച്ചിട്ടില്ല `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "ടെര്‍‍മിനലിന്റെ ഗുണഗണങ്ങള്‍ വായിക്കുന്നതില്‍ പിഴവ്" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "ടെര്‍‍മിനലിന്റെ ഗുണഗണങ്ങള്‍ സജ്ജമാക്കുന്നതില്‍ പിഴവ്" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "ടെര്‍‍മിനലില്‍ നിന്നും വായിക്കുന്നതില്‍ പിഴവ്" #: lib/user.c:218 msgid "name is not set" msgstr "പേര് ഉറപ്പാക്കിയിട്ടില്ല" #: lib/user.c:223 msgid "name is too short" msgstr "പേര് വളരെ ചെറുതാണ്" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "പേര് വളരെ വലുതാണ് (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "non-ASCII ചിഹ്നങ്ങള്‍ പേരില്‍ അടങ്ങുന്നു" #: lib/user.c:242 msgid "name contains control characters" msgstr "control ചിഹ്നങ്ങള്‍ പേരില്‍ അടങ്ങുന്നു" #: lib/user.c:249 msgid "name contains whitespace" msgstr "ശുഭ്രസ്ഥലം പേരില്‍ അടങ്ങുന്നു" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "പേര് ഹൈഫന്‍ കൊണ്ട് തുടങ്ങുന്നു" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "പേരില്‍ '%c' എന്ന അസാധുവായ ചിഹ്നം" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "%s എന്ന ഉപയോക്താവിന് UID ലഭ്യ‌‌മല്ല" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "ഗ്രൂപ്പ് %s-ന് GID ലഭ്യ‌‌മല്ല" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "" "%jd എന്ന ഉപയോക്താവിന്\n" "പേരില്ല" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "%jdഎന്ന ഗ്രൂപ്പിന് പേരില്ല" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "ഉപയോഗിക്കുന്ന ആളിന് പേരോ UID-യോ ഇല്ല" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "ഗ്രൂപ്പിന് പേരോ GID-യോ ഇല്ല" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "സ്വതവേയുള്ള അപകടകാരിയായ `%s' ഹോം ഡയറക്ടറി ഉപയോഗിക്കുന്നതു് നിഷേധിക്കുന്നു" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s ഫീല്‍‍ഡിന്റെ തനത് മൂല്യം: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "ഫയല്‍‍ ലോക്ക് ചെയ്യുന്നതില്‍ പിഴവ്: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "സ്വതവേയുള്ള സെക്യൂരിറ്റി കോണ്‍ടെക്സ്റ്റ ലഭ്യ‌‌മാക്കുവാന്‍ സാദ്ധ്യ‌‌മായില്ല: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "`%sന്റെ സെക്യൂരിറ്റി കോണ്‍ടെക്സ്റ്റ ലഭ്യ‌‌മാക്കുവാന്‍ കഴിഞ്ഞില്ല: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr " `%sന്റെ തനത് സെക്യൂരിറ്റി കോണ്ടെക്സ്റ്റ് ഉറപ്പിക്കാന്‍ കഴിഞ്ഞില്ല:%s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "`%s'- നുള്ള സെക്യൂരിറ്റി കോണ്‍ടെക്സ്റ്റ് ലഭ്യമാക്കുവാന്‍ സാധ്യമായില്ല: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' തുറക്കുവാന്‍ സാധിച്ചില്ല: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s' stat ചെയ്യുവാന്‍ സാധിച്ചില്ല: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "`%s' നിര്മ്മിക്കുന്നതില്‍‍ പിഴവ്: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "%s എന്ന ബാക്കപ്പ് ഫയല്‍‍ നിലവിലുണ്ട്, അത് ഒരു സാധാരണ ഫയലല്ല" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "`%s' ഉടമസ്ഥനെ മാറ്റുന്നതില്‍ പിഴവ്: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "`%s' വായിക്കുന്നതില്‍ പിഴവ്: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "`%s'എഴുതുന്നതില്‍ പിഴവ്: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "ബാക്കപ്പ് ഫയലിന്റെ വലിപ്പത്തില്‍ പൊരുത്തക്കേട്" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s മൂല്യം `%s': `:' അനുവദിക്കുന്നതല്ല" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "`%s' നിന്നും വായിക്കുവാന്‍ സാധിച്ചില്ല: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "ഫയലില്‍ ചേര്ത്തത് നിലനില്‍ക്കുന്നു" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "`%s'ലേക്ക് എഴുതുവാന്‍ സാധിച്ചില്ല : %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "entity object has no %s attribute" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "ഫയലിലുള്ള പൊരുത്തപ്പെടാത്ത പേരിലുള്ള എന്‍ട്രി" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "എന്‍ക്രിപ്റ്റ് ചെയ്തിട്ടുള്ള രഹസ്യവാക്കുകളില്‍ `:' അനുവദിക്കുന്നതല്ല" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "രഹസ്യവാക്ക് എന്‍ക്രിപ്റ്റ് ചെയ്യുന്നതില്‍ പിഴവ്" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "സൂപ്പര്‍ ഉപയോക്താവായി നിര്‍‌വ്വഹിക്കുന്നില്ല" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "ഷാഡോ ഫയല്‍ ലഭ്യ‌‌മല്ല -- ദുര്‍ബ്ബലമാക്കുന്നു" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "`%s' എന്ന മണ്ഡലത്തില്‍‍ `%s' എന്ന സര്‍‍വീസിനായി kadm5 സര്‍‍വറുമായി കൊളുത്തുന്നതില്‍‍ പിഴവ്: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "kerberos ലൈബ്രറി ആരംഭിക്കുന്നതില്‍ പിഴവ്" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "kerberosന് വേണ്ടി `%s' എന്ന ഉപയോക്തൃ നാമം വ്യാകരിക്കുന്നതില്‍ പിഴവ്" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "entity ഘടനക്ക് %sഒ, അല്ലെങ്കില്‍ %s ഗുണഗണങ്ങളോ ഇല്ല" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entityക്ക് %sഒ, അല്ലെങ്കില്‍ %s ഗുണഗണങ്ങളോ ഇല്ല" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "%s അല്ലെങ്കില്‍ %s ആട്രിബ്യൂട്ടുകള്‍ ഇല്ലാതെയാണ് എന്‍ടൈറ്റി നിര്‍മ്മിച്ചിരിക്കുന്നത്" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "kerberosല്‍ നിന്നും `%s'ന് വിവരം വായിക്കുന്നതില്‍ പിഴവ്" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "എന്‍ടൈറ്റി %s എന്ന ആട്രിബ്യൂട്ട് ഇല്ല" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "`%s' നുള്ള രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പിഴവ്" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos മണ്ഡലം" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos അഡ്മിന്‍ പ്രിന്‍സിപ്പല്‍" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "അഡ്മിന്‍ പ്രിന്‍സിപ്പലിനുള്ള Kerberos രഹസ്യവാക്ക്" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr " ldapലൈബ്രറി ആരംഭിക്കുന്നതില്‍ പിശക്" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "LDAP പ്രോട്ടോക്കോള്‍ വേര്‍‍ഷന്‍ %dലേക്ക് ഉറപ്പിക്കാന്‍ സാധിച്ചില്ല" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "LDAP സെര്‍വറുമായി വിലപേശാന്‍ TLSന് കഴിഞ്ഞില്ല" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "LDAP സര്‍‍വറുമായി ബന്ധിപ്പിക്കാന്‍ സാധിച്ചില്ല" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr " LDAP സര്‍‍വറുമായി ബന്ധിപ്പിക്കാന്‍ സാധിച്ചില്ല, ആദ്യ ശ്രമം `%s': %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "ഉപയോക്തൃ ഒബ്ജക്റ്റിന് %s ആട്രിബ്യൂ‌‌ട്ടുകളില്ല" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "`%s' ഇല്ലാതെയാണ് ഉപയോക്തൃ ഒബ്ജക്റ്റ് സൃഷ്ടിക്കപ്പെട്ടത്" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "ഒരു LDAP ഡയറക്ടറി എന്‍ട്രി നിര്‍മ്മിക്കുന്നതില്‍ പിഴവ്: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "ഒരു LDAP ഡയറക്ടറി എന്‍ട്രിയില്‍ മാറ്റം വരുത്തുന്നതില്‍ പിഴവ്: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "LDAP ഡയറക്ടറി എന്‍ട്രിയുടെ പേര് മാറ്റുന്നതില്‍ പിഴവ്: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "ഒബ്ജക്റ്റിന് %s എന്ന അട്രിബ്യൂട്ടില്ല" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "LDAP ഡയറക്ടറി എന്‍ട്രി നീക്കം ചെയ്യുന്നതില്‍ പിഴവ്: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "ഒബ്ജക്റ്റിന് %s എന്ന അട്രിബ്യൂട്ടില്ല" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "പിന്തുണ ലഭ്യമല്ലാത്ത രഹസ്യവാക്ക് എന്‍ക്രിപ്ഷന്‍ സ്കീം" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "LDAP ഡയറക്ടറിയില്‍ അങ്ങനെ ഒരു ഒബ്ജക്റ്റില്ല" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "%s എന്ന അട്രിബ്യൂട്ട് കണ്ടുകിട്ടിയില്ല" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "LDAP ഡയറക്ടറിയില്‍ %s നായുള്ള രഹസ്യവാക്ക് ഉറപ്പിക്കുന്നതില്‍ പിഴവ്: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP സര്‍വര്‍ നാമം" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP സര്‍ച്ച് ബെയ്‌‌‌സ് DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind രഹസ്യവാക്ക്" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL ഉപയോക്താവ്" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL ചുമതലയുള്ള ഉപയോക്താവ്" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "%sഉപയോക്തൃ സൃഷ്ടിയിലെ Cyrus SASL പിശക്:" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "ഉപയോക്താവിനെ നീക്കുന്നതില്‍ Cyrus SASL പിശക്: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr " Cyrus SASL ആരംഭിക്കുന്നതില്‍ പിശക്:%s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "ഉപയോക്താവിന് ഹോം ഡയറക്ടറി ഉണ്ടാക്കുന്നതില്‍ പിഴവ്" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി നീക്കം ചെയ്യുന്നതില്‍ പിഴവ്" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "ഉപയോക്താവിന്റെ ഹോം ഡയറക്ടറി നീക്കമ് ചെയ്യുന്നതില്‍ പിഴവ്" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr " %s:ആരംഭിക്കുന്നതില്‍ പിശക്%s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "അസാധുവായ ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "ID %jdആയ ഗ്രൂപ്പിനെ തിരയുന്നു.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s എന്ന പേരുളള ഗ്രൂപ്പിനെ തെരയുന്നു.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "ID %jdആയ ഉപയോക്താവിനെ തെരയുന്നു.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s എന്ന പേരുളള ഉപയോക്താവിനെ തെരയുന്നു.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "എന്‍ട്രി കാണ്‍മാനില്ല.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Prompts വിജയിച്ചു.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Prompts പരാജയപ്പെട്ടു.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "ഉപയോക്താവിന്റെ തനത് ഒബ്ജക്റ്റ് ക്ലാസുകള്‍:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "ഉപയോക്താവിന്റെ തനത് ആട്രിബ്യൂട്ട് നാമങ്ങള്‍:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "ഉപയോക്താവിന്റെ തനത് ആട്രിബ്യൂട്ടുകള്‍ ലഭ്യമാക്കുന്നു:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "ഉപയോക്താവിന്റെ ഘടന പകര്‍‍ത്തുന്നു:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%sന് ഹോം ഡയറക്ടറി ഇല്ലായിരുന്നു.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "%s നീക്കം ചെയ്യുന്നതില്‍ പിഴവ്: %s.\n" libuser-0.60~dfsg/po/libuser.pot0000644000175000017500000006625712226342567016732 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: libuser 0.60\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "" #: apps/lchfn.c:136 msgid "Full Name" msgstr "" #: apps/lchfn.c:146 msgid "Surname" msgstr "" #: apps/lchfn.c:157 msgid "Given Name" msgstr "" #: apps/lchfn.c:167 msgid "Office" msgstr "" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "" #: apps/lchsh.c:114 msgid "New Shell" msgstr "" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "" #: apps/lpasswd.c:111 msgid "New password" msgstr "" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "" #: apps/luserdel.c:139 #, c-format msgid "Error removing home directory: %s.\n" msgstr "" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "" #: lib/error.c:62 msgid "success" msgstr "" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "" #: lib/error.c:66 msgid "generic error" msgstr "" #: lib/error.c:68 msgid "not enough privileges" msgstr "" #: lib/error.c:70 msgid "access denied" msgstr "" #: lib/error.c:72 msgid "bad user/group name" msgstr "" #: lib/error.c:74 msgid "bad user/group id" msgstr "" #: lib/error.c:76 msgid "user/group name in use" msgstr "" #: lib/error.c:78 msgid "user/group id in use" msgstr "" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "" #: lib/error.c:82 msgid "error opening file" msgstr "" #: lib/error.c:84 msgid "error locking file" msgstr "" #: lib/error.c:86 msgid "error statting file" msgstr "" #: lib/error.c:88 msgid "error reading file" msgstr "" #: lib/error.c:90 msgid "error writing to file" msgstr "" #: lib/error.c:92 msgid "data not found in file" msgstr "" #: lib/error.c:94 msgid "internal initialization error" msgstr "" #: lib/error.c:96 msgid "error loading module" msgstr "" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "" #: lib/error.c:105 msgid "invalid attribute value" msgstr "" #: lib/error.c:107 msgid "invalid module combination" msgstr "" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "" #: lib/misc.c:240 msgid "invalid number" msgstr "" #: lib/misc.c:254 msgid "invalid ID" msgstr "" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "" #: lib/user.c:218 msgid "name is not set" msgstr "" #: lib/user.c:223 msgid "name is too short" msgstr "" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "" #: lib/user.c:242 msgid "name contains control characters" msgstr "" #: lib/user.c:249 msgid "name contains whitespace" msgstr "" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "" #: modules/files.c:797 msgid "entry already present in file" msgstr "" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "" libuser-0.60~dfsg/po/pa.gmo0000644000175000017500000007013012226342604015616 0ustar tzafrirtzafrirD3l89X5k>*Y$"";Zx <//N)~' 9Un'*)( I`.|((.$I n!x "#!#($L#q. ->%Ms%  '6J[ l z  -#,(Ut," &=X#k'8@V!u  " "7 !Z #| #   + '!3!F!X!%i! !1!!!!$"4"8R"("*"*") #*4#0_#)#)###1$I$`${$$!$!$+$.%L%3j%G%%)%&(&O&!i&#&&&&&&'(5'$^'')'''0'! ('B(&j('( ((3(!.)P)d) z)))")) ))*1*@* `* ** **"+&+?+O+k+}++%+#+ +,'0,X,s,,-, ,-,&-'-<-"O-r-$----5/*/{ 0=020;0!41.V1:171T1[M2>2B2Z+3U3U3N24D4&404M5Ll5155Cu6\6[7Xr787888=85v8K8:8N3929`9l:Y:\:2:;=m;b;S<_b<K<o=N~==k=P>4j>K>K>L7?_?b?SG@3@>@]AlA}A/A&AA;B AB#bBNBkB%ACgC(|C5CCCD!0D#RDvDDD#D8DwEeEGEmDF[FaGzpGrGJ^H HHGH9IAOI4IjI1J2IJb|JJvKY%LSL\LV0M2M+MM9M51NKgNHNeNObO6O7O!Pb=PPPP!PcQ"jQ}QF R=RR6RER? SMS`SVAT\TqT\gU`Uq%V9VIVOWzkW@WF'XCnXPX]Y]aYmYd-Z]ZvZg[2[y\f\9\I5]R]Q]@$^:e^>^\^k<_i_9`bL`0`O`^0aLakafHbybi)cSccLxdGd3 eAeBae;eTe55fkf/{f&ffKf`5gOgDgM+hLyhJhDi0Vi5i*iGi>0jVojfjh-k<kfkJ:lJl lTl2mwOmXmE n>fnWn`nf^oEoL p>1 mL6tIx"KU7 W5*8]#N h)nQA% -fMp9!XikD.o(j0G$cb}^R|:\=2Jr&@lTS[ g _;PwH`vdCEZ?y{V<,OBFs/eza~+43Yqu'%s did not have a gid number. %s does not exist %s is not authorized to change the finger info of %s %s value `%s': `:' not allowedAccount Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Both -L and -U specified. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. Copying user structure: Cyrus SASL error creating user: %sCyrus SASL error removing user: %sDefault user attribute names: Default user object classes: E-Mail AddressEntry not found. Error changing mode of `%s': %sError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error moving %s to %s: %s. Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError reading from file descriptor %d. Error setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Failed to set password for user %s: %s. Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGetting default user attributes: Given NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be deleted: %s. Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be modified: %s. Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Group with GID %jd did not have a group name. Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid ID %s Invalid default value of field %s: %sInvalid group ID %s Invalid user ID %s Kerberos Admin PrincipalKerberos Password for Admin PrincipalKerberos RealmLDAP Bind DNLDAP Bind PasswordLDAP SASL Authorization UserLDAP SASL UserLDAP Search Base DNLDAP Server NameLast Change: %s Maximum: %ld Minimum: %ld NeverNew ShellNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No new home directory for %s. No old home directory for %s. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Prompts failed. Prompts succeeded. Refusing to create account with UID 0. Refusing to use dangerous home directory `%s' by defaultRefusing to use dangerous home directory `%s' for %s by default Searching for group named %s. Searching for group with ID %jd. Searching for user named %s. Searching for user with ID %jd. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s could not be locked: %s. User %s could not be modified: %s. User %s could not be unlocked: %s. User %s does not exist. User mismatch. Warning: %ld Warning: Group with ID %jd does not exist. [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] user`:' not allowed in encrypted passwordaccess deniedbackup file `%s' exists and is not a regular filebackup file size mismatchbad user/group idbad user/group nameconfiguration file `%s' is too largecould not bind to LDAP servercould not bind to LDAP server, first attempt as `%s': %scould not negotiate TLS with LDAP servercould not open configuration file `%s': %scould not read configuration file `%s': %scould not set LDAP protocol to version %dcould not stat configuration file `%s': %scouldn't determine security context for `%s': %scouldn't get default security context: %scouldn't get security context of `%s': %scouldn't open `%s': %scouldn't read from `%s': %scouldn't set default security context to `%s': %scouldn't stat `%s': %scouldn't write to `%s': %sdata not found in fileentity has no %s attributeentity has no %s or %s attributesentity object has no %s attributeentity structure has no %s or %s attributesentity was created with no %s or %s attributesentry already present in fileentry with conflicting name already present in fileerror connecting to the kadm5 server for service `%s' in realm `%s': %serror creating `%s': %serror creating a LDAP directory entry: %serror creating home directory for usererror encrypting passworderror initializing Cyrus SASL: %serror initializing kerberos libraryerror initializing ldap libraryerror loading moduleerror locking fileerror locking file: %serror manipulating terminal attributeserror modifying LDAP directory entry: %serror moving home directory for usererror opening fileerror parsing user name `%s' for kerberoserror reading fileerror reading from terminalerror reading information for `%s' from kerberoserror reading terminal attributeserror removing LDAP directory entry: %serror removing home directory for usererror renaming LDAP directory entry: %serror resolving symbol in moduleerror setting password for `%s'error setting password in LDAP directory for %s: %serror setting terminal attributeserror statting fileerror writing to filegeneric errorgroup %jd has no namegroup %s has no GIDgroup has neither a name nor a GIDinternal initialization errorinvalid IDinvalid attribute valueinvalid module combinationinvalid numberlibrary/module version mismatchmodule `%s' does not define `%s'module disabled by configurationmodule version mismatch in `%s'name contains control charactersname contains invalid char `%c'name contains non-ASCII charactersname contains whitespacename is not setname is too long (%zu > %d)name is too shortname starts with a hyphenno `%s' attribute foundno initialization function %s in `%s'no shadow file present -- disablingno such object in LDAP directorynot enough privilegesnot executing with superuser privilegesobject had no %s attributeobject has no %s attributesuccessthe `%s' and `%s' modules can not be combinedunknown errorunlocking would make the password field emptyunsupported password encryption schemeuser %jd has no nameuser %s has no UIDuser has neither a name nor an UIDuser object had no %s attributeuser object was created with no `%s'user/group id in useuser/group name in useProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/fedora/language/pa/) Language: pa MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s ਕੋਲ gid ਨੰਬਰ ਨਹੀਂ ਸੀ। %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ। %s %s ਦੀ finger ਜਾਣਕਾਰੀ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਪ੍ਰਮਾਣਿਤ ਨਹੀਂ ਹੈ %s ਮੁੱਲ `%s': `:' ਮਨਜੂਰ ਨਹੀਂ ਹੈਖਾਤਾ ਮਿਆਦ ਪੁੱਗ ਗਈ: %s ਖਾਤਾ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ: %s ਖਾਤਾ ਲਾਕ ਹੈ। ਖਾਤਾ ਲਾਕ ਨਹੀਂ ਹੈ। %s ਲਈ ਪ੍ਰਮਾਣਕਿਤਾ ਅਸਫਲ। ਦੋਨੋ -L ਅਤੇ -U ਦਿੱਤੇ ਹਨ। /etc/passwd ਲਈ ਮੂਲ ਪ੍ਰਸੰਗ ਨਹੀਂ ਲੱਭਿਆ ਹੈ %s ਲਈ ਮੁੱਖ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਕਰ ਰਿਹਾ ਹੈ। %s ਲਈ ਗੁਪਤ-ਕੋਡ ਬਦਲਿਆ ਗਿਆ। %s ਲਈ ਸ਼ੈਲ ਤਬਦੀਲ ਕਰ ਰਿਹਾ ਹੈ। ਉਪਭੋਗੀ ਢਾਂਚੇ ਦੀ ਨਕਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: ਉਪਭੋਗੀ ਬਣਾਉਣ ਸਮੇਂ ਸਾਇਰਸ SASL ਗਲਤੀ: %sਉਪਭੋਗੀ ਹਟਾਉਣ ਸਮੇਂ ਸਾਇਰਸ SASL ਗਲਤੀ: %sਮੂਲ ਉਪਭੋਗੀ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ ਦੇ ਨਾਂ: ਮੂਲ ਉਪਭੋਗੀ ਆਬਜੈਕਟ ਕਲਾਸਾਂ: ਈ-ਮੇਲ ਸਿਰਨਾਵਾਂਇੰਦਰਾਜ ਨਹੀਂ ਲੱਭਾ। `%s' ਦਾ ਮੋਡ ਤਬਦੀਲ ਕਰਨ ਵੇਲੇ ਗਲਤੀ: %s'%s' ਦੀ ਮਲਕੀਅਤ ਬਦਲਣ ਦੌਰਾਨ ਗਲਤੀ: %s%s ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s `%s' ਲਈ ਖਾਤਾ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: ਸਤਰ ਦਾ ਫਾਰਮੈਟ ਠੀਕ ਨਹੀਂ ਹੈ। '%s' ਗਰੁੱਪ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s `%s' ਲਈ GID %jd ਨਾਲ ਗਰੁੱਪ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s %s ਲਈ ਘਰ ਡਾਇਰੈਕਟਰੀ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s %s ਲਈ ਉਪਭੋਗੀ ਖਾਤਾ ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s %s ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s %s ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s PAM ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ। %s ਦੀ ਖੋਜ ਵਿੱਚ ਗਲਤੀ: %s। %s ਤੋਂ %s ਵਿੱਚ ਭੇਜਣ ਦੌਰਾਨ ਗਲਤੀ: %s `%s' ਨੂੰ ਖੋਲਣ ਵਿੱਚ ਗਲਤੀ: %s ਆਰਗੂਮਿੰਟ ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s `%s' ਪੜ੍ਹਨ ਵਿੱਚ ਗਲਤੀ: %sਫਾਇਲ ਡਿਸਕਰਿਪਟਰ %d ਤੋਂ ਪੜ੍ਹਨ ਵੇਲੇ ਗਲਤੀ %s ਲਈ ਸ਼ੁਰੂਆਤੀ ਗੁਪਤ-ਕੋਡ ਸੈੱਟ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %s %s ਗਰੁੱਪ ਲਈ ਗੁਪਤ-ਕੋਡ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %s %s ਉਪਭੋਗੀ ਲਈ ਗੁਪਤ-ਕੋਡ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %s `%s' ਲਿਖਣ ਦੌਰਾਨ ਗਲਤੀ: %sਅਧਿਕਾਰ ਛੱਡਣ ਵਿੱਚ ਅਸਫਲ। %s ਲਈ ਉਮਰ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਕਰਨ ਵਿੱਚ ਅਸਫਲ: %s %s ਗਰੁੱਪ ਲਈ ਗੁਪਤ-ਕੋਡ ਦੇਣ ਲਈ ਅਸਫਲ: %s ਉਪਭੋਗੀ %s ਲਈ ਗੁਪਤ-ਕੋਡ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %s। ਮੁੱਖ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਹੋ ਗਈ ਹੈ। ਮੁੱਖ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਨਹੀਂ ਹੋਈ: ਇੰਪੁੱਟ ਗਲਤੀ। ਮੁੱਖ ਜਾਣਕਾਰੀ ਤਬਦੀਲ ਨਹੀਂ ਹੋਈ: %s ਪੂਰਾ ਨਾਂਮੂਲ ਉਪਭੋਗੀ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ ਪ੍ਰਾਪਤ ਕਰ ਰਿਹਾ ਹੈ: ਦਿੱਤਾ ਨਾਂਗਰੁੱਪ %jd ਮੌਜੂਦ ਨਹੀਂ। ਗਰੁੱਪ %s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s। ਗਰੁੱਪ %s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s। %s ਗਰੁੱਪ ਨੂੰ ਲਾਕ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s ਗਰੁੱਪ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s ਗਰੁੱਪ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s। %s ਗਰੁੱਪ ਨੂੰ ਅਣ-ਲਾਕ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s ਗਰੁੱਪ %s ਮੌਜੂਦ ਨਹੀਂ। ਗਰੁੱਪ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ: %s GID %jd ਵਾਲੇ ਗਰੁੱਪ ਦਾ ਗਰੁੱਪ ਨਾਂ ਨਹੀਂ ਹੈ। ਘਰ ਫੋਨਨਾ ਸਰਗਰਮ: %ld ਅੰਦਰੂਨੀ PAM ਗਲਤੀ `%s'। ਅੰਦਰੂਨੀ ਗਲਤੀ। ਗਲਤੀ ID %s %s ਖੇਤਰ ਲਈ ਗਲਤ ਮੂਲ ਮੁੱਲ: %sਗਲਤ ਗਰੁੱਪ ID %s ਗਲਤ ਉਪਭੋਗੀ ID %s ਕੀਰਬੀਰੋਸ ਪਰਸ਼ਾਸ਼ਨ ਪ੍ਰਿੰਸੀਪਲ ਪਰਸ਼ਾਸ਼ਨ ਪ੍ਰਿੰਸੀਪਲ ਲਈ ਕੀਰਬੀਰੋਸ ਗੁਪਤ-ਕੋਡਕੀਰਬੀਰੋਸ ਖੇਤਰLDAP ਬੰਧਨ DNLDAP ਬੰਧਨ ਗੁਪਤ-ਕੋਡLDAP SASL ਪ੍ਰਬੰਧਕੀ ਉਪਯੋਗੀLDAP SASL ਉਪਯੋਗੀLDAP ਖੋਜ ਮੂਲ DNLDAP ਸਰਵਰ ਨਾਂਆਖਰੀ ਬਦਲਾਅ: %s ਵੱਧ ਤੋਂ ਵੱਧ: %ld ਘੱਟੋ-ਘੱਟ: %ld ਕਦੇ ਨਹੀਂਨਵੀਂ ਸ਼ੈਲਨਵਾਂ ਗੁਪਤ-ਕੋਡਨਵਾਂ ਗੁਪਤ-ਕੋਡ (ਪੁਸ਼ਟੀ)ਕੋਈ ਗਰੁੱਪ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ, gid %d ਲਈ ਕੋਈ ਨਾਂ ਨਹੀਂ। ਕੋਈ ਗਰੁੱਪ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ, %s ਵਰਤਣ ਵਾਲਾ। ਕੋਈ ਗਰੁੱਪ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ। GID %jd ਵਾਲਾ ਕੋਈ ਗਰੁੱਪ ਮੌਜੂਦ ਨਹੀਂ, ਹਟਾਇਆ ਨਹੀਂ। %s ਲਈ ਕੋਈ ਨਵੀਂ ਘਰ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ। %s ਲਈ ਕੋਈ ਪੁਰਾਣੀ ਘਰ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ। ਕੋਈ ਉਪਭੋਗੀ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ, uid %d ਲਈ ਕੋਈ ਨਾਂ ਨਹੀਂ। ਕੋਈ ਉਪਭੋਗੀ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ, %s ਦੀ ਵਰਤੋਂ ਕਰਕੇ। ਕੋਈ ਉਪਭੋਗੀ ਨਾਂ ਨਹੀਂ ਦਰਸਾਇਆ। ਦਫਤਰਦਫਤਰ ਫੋਨਗੁਪਤ-ਕੋਡ ਮਿਆਦ ਖਤਮ ਹੋ ਗਈ ਹੈ: %s ਗੁਪਤ-ਕੋਡ ਨਾ-ਸਰਗਰਮ ਹੈ: %s ਗੁਪਤ-ਕੋਡ ਤਬਦੀਲੀ ਰੱਦ ਹੋਈ। ਗੁਪਤ-ਕੋਡ ਬਦਲਿਆ ਗਿਆ। ਗੁਪਤ-ਕੋਡ ਨੇ ਮੇਲ ਨਹੀਂ ਕੀਤਾ, ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ। ਅਸਫਲ ਹੈ। ਸਫਲਤਾਪੂਰਕ ਮੁਕੰਮਲ। UID 0 ਨਾਲ ਖਾਤਾ ਬਣਾਉਣ ਲਈ ਇਨਕਾਰ ਕਰ ਰਿਹਾ ਹੈ। ਖਤਰਨਾਕ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ `%s' ਨੂੰ ਮੂਲ ਰੂਪ ਵਰਤਣਾ ਰੱਦ ਕਰ ਰਿਹਾ ਹੈਖਤਰਨਾਕ ਘਰੇਲੂ ਡਾਇਰੈਕਟਰੀ `%s' ਨੂੰ ਮੂਲ ਰੂਪ ਵਿੱਚ %s ਲਈ ਵਰਤਣਾ ਰੱਦ ਕਰ ਰਿਹਾ ਹੈ ਨਾਂ %s ਵਾਲੇ ਗਰੁੱਪ ਲਈ ਖੋਜ ਕਰ ਰਿਹਾ ਹੈ। ID %jd ਵਾਲੇ ਗਰੁੱਪ ਲਈ ਖੋਜ ਕਰ ਰਿਹਾ ਹੈ। ਨਾਂ %s ਵਾਲੇ ਉਪਭੋਗੀ ਲਈ ਖੋਜ ਕਰ ਰਿਹਾ ਹੈ। ID %jd ਵਾਲੇ ਉਪਭੋਗੀ ਲਈ ਖੋਜ ਕਰ ਰਿਹਾ ਹੈ। ਸ਼ੈਲ ਤਬਦੀਲ ਹੋ ਗਈ ਹੈ। ਸ਼ੈਲ ਤਬਦੀਲ ਨਹੀਂ: %s ਉਪ ਨਾਂਅਣਜਾਣ ਉਪਭੋਗੀ ਪ੍ਰਸੰਗ। ਅਣਜਾਣ ਉਪਭੋਗੀ ਪ੍ਰਸੰਗਉਪਭੋਗੀ %s ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s ਉਪਭੋਗੀ %s ਲਾਕ ਨਹੀਂ ਹੋ ਸਕਿਆ: %s। ਉਪਭੋਗੀ %s ਨੂੰ ਤਬਦੀਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s। ਉਪਭੋਗੀ %s ਅਣ-ਲਾਕ ਨਹੀਂ ਹੋ ਸਕਿਆ: %s। ਉਪਭੋਗੀ %s ਮੌਜੂਦ ਨਹੀਂ। ਉਪਭੋਗੀ ਰਲਦਾ ਨਹੀਂ ਹੈ। ਚੇਤਾਵਨੀ: %ld ਚੇਤਾਵਨੀ: ID %jd ਵਾਲਾ ਗਰੁੱਪ ਮੌਜੂਦ ਨਹੀਂ ਹੈ। [ਚੋਣ...][ਚੋਣ...] [user][ਚੋਣ...] ਗਰੁੱਪ[ਚੋਣ...] ਉਪਭੋਗੀ`:' ਇਨਕ੍ਰਿਪਟਡ ਪਾਸਵਰਡ ਵਿੱਚ ਮਨਜੂਰ ਨਹੀਂ ਹੈਪਹੁੰਚ ਪਾਬੰਦੀਬੈਕਅੱਪ ਫਾਇਲ `%s' ਮੌਜੂਦ ਹੈ ਅਤੇ ਇਹ ਨਿਯਮਤ ਫਾਇਲ ਨਹੀਂ ਹੈਬੈਕਅੱਪ ਫਾਇਲ ਅਕਾਰ ਰਲਦਾ ਨਹੀਂਗਲਤ ਉਪਯੋਗੀ/ਗਰੁੱਪ ਸ਼ੰਨ-ਨੰਗਲਤ ਉਪਯੋਗੀ/ਗਰੁੱਪ ਨਾਂਸੰਰਚਨਾ ਫਾਇਲ '%s' ਬਹੁਤ ਵੱਡੀ ਹੈLDAP ਸਰਵਰ ਨਾਲ ਜੁੜ ਨਹੀਂ ਸਕਿਆLDAP ਸਰਵਰ ਨਾਲ ਪਹਿਲੀਂ ਕੋਸ਼ਿਸ ਵਿੱਚ `%s' ਵਾਂਗ ਜੁੜਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %sTLS ਨੂੰ LDAP ਸਰਵਰ ਨਾਲ ਗੱਲਬਾਤ ਨਹੀਂ ਕਰਾ ਸਕਿਆਸੰਰਚਨਾ ਫਾਇਲ '%s' ਨੂੰ ਖੋਲ ਨਹੀਂ ਸਕਿਆ: %sਸੰਰਚਨਾ ਫਾਇਲ '%s' ਨੂੰ ਖੋਲ੍ਹ ਨਹੀਂ ਸਕਿਆ: %sਵਰਜਨ %d ਲਈ LDAP ਪ੍ਰੋਟੋਕੋਲ ਨਿਰਧਾਰਿਤ ਨਹੀਂ ਕਰ ਸਕਿਆਸੰਰਚਨਾ ਫਾਇਲ '%s' ਨੂੰ ਖੋਲ੍ਹ ਨਹੀਂ ਸਕਿਆ: %s`%s' ਲਈ ਸੁਰੱਖਿਆ ਦਰਜਾ ਪਤਾ ਨਹੀਂ ਲਗਾ ਸਕਿਆ: %sਮੂਲ ਸੁਰੱਖਿਆ ਦਰਜਾ ਨਹੀਂ ਪ੍ਰਾਪਤ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s`%s' ਵਿੱਚ ਲਿਖ ਨਹੀਂ ਸਕਿਆ: %s`%s' ਨੂੰ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s`%s' ਵਿੱਚੋਂ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s`%s' ਵਿੱਚ ਮੂਲ ਸੁਰੱਖਿਆ ਭਾਗ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s`%s' ਨੂੰ ਦਰਜਾ ਨਹੀਂ ਦੇ ਸਕਿਆ: %s`%s' ਵਿੱਚ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %sਫਾਇਲ ਵਿੱਚ ਡਾਟਾ ਨਹੀਂ ਲੱਭਿਆਇਕਾਈ ਵਿੱਚ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈਇਕਾਈ ਵਿੱਚ ਕੋਈ %s ਜਾਂ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈਇੰਦਰਾਜ ਇਕਾਈ ਦੀ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈਇਕਾਈ ਢਾਂਚੇ ਵਿੱਚ ਕੋਈ %s ਜਾਂ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈਇਕਾਈ %s ਜਾਂ %s ਵਿਸ਼ੇਸ਼ਤਾ ਤੋਂ ਬਿਨਾ ਬਣਾਈ ਗਈ ਸੀਫਾਇਲ ਵਿੱਚ ਇੰਦਰਾਜ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈਫਾਇਲ ਵਿੱਚ ਪ੍ਰਤੀਰੋਧੀ ਐਂਟਰੀ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ`%s' ਸੇਵਾ ਲਈ `%s' ਖੇਤਰ ਵਿੱਚ kadm5 ਸਰਵਰ ਨਾਲ ਜੁੜਨ ਵਿੱਚ ਗਲਤੀ: %s`%s' ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %sLDAP ਡਾਇਰੈਕਟਰੀ ਇੰਦਰਾਜ ਨੂੰ ਮੁੜ ਨਾਂ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %sਉਪਭੋਗੀ ਲਈ ਘਰ ਡਾਇਰੈਕਟਰੀ ਬਣਾਉਣ ਸਮੇਂ ਗਲਤੀਗੁਪਤ-ਕੋਡ ਇਕਰਿਪਸ਼ਨ ਗਲਤੀਸਾਇਰਸ SASL ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %skerberos ਲਾਇਬਰੇਰੀ ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀldap ਲਾਇਬ੍ਰੇਰੀ ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਗਲਤੀਮੋਡੀਊਲ ਲੋਡ ਕਰਨ ਵਿੱਚ ਗਲਤੀਫਾਇਲ ਲਾਕ ਕਰਨ ਵਿੱਚ ਗਲਤੀਫਾਇਲ ਲਾਕ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %sਟਰਮੀਨਲ ਵਿਸ਼ੇਸ਼ਤਾ ਤਬਦੀਲ ਕਰਨ ਵਿੱਚ ਗਲਤੀLDAP ਡਾਇਰੈਕਟਰੀ ਇੰਦਰਾਜ ਤਬਦੀਲ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %sਉਪਭੋਗੀ ਲਈ ਘਰ ਡਾਇਰੈਕਟਰੀ ਹਿਲਾਉਣ ਸਮੇਂ ਗਲਤੀਫਾਇਲ ਖੋਲ੍ਹਣ ਵਿੱਚ ਗਲਤੀkerberos ਲਈ ਉਪਭੋਗੀ ਨਾਂ `%s' ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਗਲਤੀਫਾਇਲ ਪੜਨ ਵਿੱਚ ਗਲਤੀਟਰਮੀਨਲ ਵਿੱਚੋਂ ਪੜ੍ਹਨ ਵਿੱਚ ਗਲਤੀkerberos ਵਿੱਚੋ `%s' ਲਈ ਜਾਣਕਾਰੀ ਪੜਨ ਵਿੱਚ ਗਲਤੀਟਰਮੀਨਲ ਵਿਸ਼ੇਸ਼ਤਾ ਪੜਨ ਵਿੱਚ ਗਲਤੀLDAP ਡਾਇਰੈਕਟਰੀ ਇੰਦਰਾਜ ਨੂੰ ਹਟਾਉਣ ਵਿੱਚ ਗਲਤੀ: %sਉਪਭੋਗੀ ਲਈ ਘਰ ਡਾਇਰੈਕਟਰੀ ਹਟਾਉਣ ਸਮੇਂ ਗਲਤੀLDAP ਡਾਇਰੈਕਟਰੀ ਇੰਦਰਾਜ ਨੂੰ ਮੁੜ ਨਾਂ ਦੇਣ ਵਿੱਚ ਗਲਤੀ: %sਮੋਡੀਊਲ ਵਿੱਚ ਚਿੰਨ੍ਹ ਨਿਸਚਿਤ ਕਰਨ ਵਿੱਚ ਗਲਤੀ`%s' ਲਈ ਗੁਪਤ-ਕੋਡ ਸੈੱਟ ਕਰਨ ਵਿੱਚ ਗਲਤੀ%s ਲਈ LDAP ਡਾਇਰੈਕਟਰੀ ਵਿੱਚ ਗੁਪਤ-ਕੋਡ ਨਿਰਧਾਰਿਤ ਕਰਨ ਵਿੱਚ ਗਲਤੀ : %sਟਰਮੀਨਲ ਵਿਸ਼ੇਸ਼ਤਾ ਦੇਣ ਵਿੱਚ ਗਲਤੀਫਾਇਲ ਨੂੰ ਦਰਜਾ ਦੇਣ ਵਿੱਚ ਗਲਤੀਫਾਇਲ ਲਿਖਣ ਵਿੱਚ ਗਲਤੀਸਾਧਾਰਨ ਗਲਤੀਗਰੁੱਪ %jd ਦਾ ਕੋਈ ਨਾਂ ਨਹੀਂ ਹੈਗਰੁੱਪ %s ਦਾ ਕੋਈ GID ਨਹੀਂ ਹੈਗਰੁੱਪ ਦਾ ਨਾ ਤਾਂ ਕੋਈ ਨਾਂ ਹੈ ਨਾ ਹੀ GIDਅੰਦਰੂਨੀ ਸ਼ੁਰੂਆਤ ਗਲਤੀਗਲਤੀ IDਗਲਤ ਐਟਰੀਬਿਊਟ ਮੁੱਲਗਲਤ ਮੋਡੀਊਲ ਜੋੜਗਲਤ ਨੰਬਰਲਾਇਬਰੇਰੀ/ਮੋਡੀਊਲ ਵਰਜਨ ਭਿੰਨਤਾ`%s' ਮੈਡੀਊਲ `%s' ਨੂੰ ਪਰਭਾਸ਼ਿਤ ਨਹੀਂ ਕਰਦਾ ਹੈਸੰਰਚਨਾ ਰਾਹੀਂ ਅਯੋਗ ਕੀਤਾ ਮੋਡੀਊਲ`%s' ਵਿੱਚ ਮੋਡੀਊਲ ਵਰਜਨ ਭਿੰਨਤਾਨਾਂ ਵਿੱਚ ਕੰਟਰੋਲ ਅੱਖਰ ਸ਼ਾਮਿਲ ਹਨਨਾਂ ਵਿੱਚ ਅਯੋਗ ਅੱਖਰ `%c' ਸ਼ਾਮਿਲ ਹਨਨਾਂ ਵਿੱਚ ਨਾਨ-ASCII ਅੱਖਰ ਸ਼ਾਮਿਲ ਹਨਨਾਂ ਵਿੱਚ ਖਾਲੀ ਥਾਂ ਸ਼ਾਮਿਲ ਹੈਨਾਂ ਨਹੀਂ ਦਿੱਤਾ ਗਿਆਨਾਂ ਬਹੁਤ ਵੱਡਾ ਹੈ (%zu > %d)ਨਾਂ ਬਹੁਤ ਛੋਟਾ ਹੈਨਾਂ ਹਾਈਫਨ ਨਾਲ ਸ਼ੁਰੂ ਹੁੰਦਾ ਹੈਕੋਈ `%s' ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਲੱਭੀ`%2$s' ਵਿੱਚ ਕੋਈ ਸ਼ੁਰੂਆਤੀ ਫੰਕਸ਼ਨ %1$s ਨਹੀਂ ਕੋਈ ਪਰਛਾਵਾਂ ਫਾਇਲ ਮੌਜੂਦ ਨਹੀਂ -- ਅਯੋਗ ਕੀਤਾLDAP ਡਾਇਰੈਕਟਰੀ ਵਿੱਚ ਅਜਿਹੀ ਕੋਈ ਇਕਾਈ ਨਹੀਂ ਹੈਲੋੜੀਂਦੇ ਅਧਿਕਾਰ ਨਹੀਂ ਹਨਮੁੱਖ-ਉਪਭੋਗੀ ਅਧਿਕਾਰਾਂ ਨਾਲ ਚੱਲ ਨਹੀਂ ਰਿਹਾਇਕਾਈ ਦੀ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਸੀਇਕਾਈ ਦੀ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈਸਫ਼ਲ`%s' ਅਤੇ `%s' ਮੋਡੀਊਲ ਜੋੜੇ ਨਹੀਂ ਜਾ ਸਕਦੇਅਣਜਾਣ ਗਲਤੀਤਾਲਾ ਖੋਲ੍ਹਣ ਨਾਲ ਗੁਪਤ-ਕੋਡ ਖੇਤਰ ਖਾਲੀ ਹੋ ਜਾਵੇਗਾ।ਨਾ-ਸਹਿਯੋਗੀ ਪਾਸਵਰਡ ਇਨਕ੍ਰਿਪਸ਼ਨ ਸਕੀਮਉਪਭੋਗੀ %jd ਦਾ ਕੋਈ ਨਾਂ ਨਹੀਂ ਹੈਉਪਭੋਗੀ %s ਦਾ ਕੋਈ UID ਨਹੀਂ ਹੈਉਪਭੋਗੀ ਦਾ ਨਾ ਤਾਂ ਕੋਈ ਨਾਂ ਹੈ ਨਾ ਹੀ UIDਉਪਭੋਗੀ ਇਕਾਈ ਕੋਲ ਕੋਈ %s ਵਿਸ਼ੇਸ਼ਤਾ ਨਹੀਂ ਹੈਉਪਭੋਗੀ ਇਕਾਈ ਬਿਨਾਂ ਕਿਸੇ `%s' ਤੋਂ ਬਣਾਈ ਗਈ ਹੈਵਰਤਿਆ ਜਾਂਦਾ ਉਪਯੋਗੀ/ਗਰੁੱਪ idਵਰਤਿਆ ਜਾਂਦਾ ਉਪਯੋਗੀ/ਗਰੁੱਪ ਨਾਂlibuser-0.60~dfsg/po/hu.po0000644000175000017500000011730312226342567015502 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Arpad Biro , 2004, 2005, 2007 # Laszlo Dvornik , 2004 # Miloslav Trmač , 2011 # Nikolas Slivka , 2010 # ptr , 2011 # Tamas Szanto , 2003 # Zoltan Hoppár , 2011-2013 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora/" "language/hu/)\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Jogosultságok eldobása sikertelen.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Belső hiba.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "%s nem jogosult %s személyes adatainak megváltoztatására\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Ismeretlen felhasználói környezet" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "" "Az alapértelmezett kontextus beállítása nem sikerült a /etc/passwd " "esetében \n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Hiba a PAM inicializálásakor.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Azonosítás mint \"%s\" sikertelen\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Belső PAM hiba `%s'.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Ismeretlen felhasználó hitelesítve.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Felhasználói eltérés.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "összes információ megjelenítése" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "lista a felhasználó időkorlát paramétereiről" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "minimális napok száma jelszó váltások között" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "NAPOK" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "maximális napok száma jelszó váltások között" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "az utolsó jelszó cseréje napokban 1970/1/1 óta" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "hány nappal a jelszó lejárata után váljon a regisztrált fiók inaktívvá" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "jelszó lejárati ideje napokban 1970/01/01 óta" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "hány nappal kezdjen el a lejárat előtt figyelmeztetést küldeni " #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[OPCIÓ...] felhasználó" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Hiba a paraméter értelmezésekor: %s.\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Nincs felhasználónév megadva.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Hiba a(z) %s inicializálásakor: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "%s felhasználó nem létezik.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Azonosító zárolva.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Fiók nincs lezárva.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimum:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maximum:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "Maximum:\tNincs\n" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Figyelmeztetés:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Inaktív:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "Inaktív:\tSoha\n" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "Meg kell változtatnia jelszavát a következő bejelentkezésnél" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Soha" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Utolsó módosítás:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Jelszó lejár:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "jelszó inaktív:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Azonosító lejár:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "%s elévülési információit nem sikerült módosítani: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[OPCIÓ...] [felhasználó]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Nincs felhasználónév megadva, nincs név a(z) %d uid-hoz.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "%s személyes adatainak megváltoztatása.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Teljes név" #: apps/lchfn.c:146 msgid "Surname" msgstr "Vezetéknév" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Utónév" #: apps/lchfn.c:167 msgid "Office" msgstr "Munkahely" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Munkahelyi telefon" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Otthoni telefon" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "E-mail cím" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "A személyes információk nem változtak: beviteli hiba. \n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Az információ frissítése megtörtént.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "A személyes adatok nem változtak: %s \n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "%s parancsértelmezőjének megváltoztatása. \n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Új shell" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Shell nem változott: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Shell megváltozott.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "az új csoport GID azonosítója" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "SZÁM" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "rendszercsoport készítése" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[OPCIÓ...] csoport" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Nincs csoportnév megadva.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Érvénytelen csoportazonosító %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Csoportl étrehozása meghiúsult: %s\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "A(z) %s csoport nem létezik.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "A(z) %s csoport nem törölhető : %s\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "GID beállítása a csoporthoz" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "csoport megváltoztatása egy megadott névre" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "NÉV" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "sima szöveges jelszó csoporttal való használathoz" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "SZÖVEG" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "elő-hash-elt jelszó a csoporttal való használathoz" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "hozzáadandó adminisztrátorok listája" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "eltávolítandó adminisztrátorok listája" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "hozzáadandó csoporttagok listája" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "eltávolítandó csoporttagok listája" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "csoport zárolása" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "csoport feloldása" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "-L és -U is meg van adva.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Hiba a(z) %s csoport jelszavának beállításakor: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "%s csoportot nem lehet zárolni: %s\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "%s csoportot nem lehet feloldani: %s\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "%s csoportot nem lehet módosítani: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Hiba %s keresése közben: %s \n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" "csak a megnevezett csoport tagjait listázza - a megnevezett felhasználó " "csoporttagságai helyett" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "csak tagsági információkat listázza - de ne UID/GID, hanem név alapján" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Nincs csoportnév megadva, %s használata.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Nincs csoportnév megadva, nincs név a(z) %d gid-hez.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Nincs felhasználónév megadva, %s használata.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s nem létezik\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "fájl felhasználói információs bejegyzésekkel" #: apps/lnewusers.c:47 msgid "PATH" msgstr "ELÉRÉSI ÚT" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "ne készítsen home könyvtárakat" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "ne készítsen levélgyüjtőket" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[OPCIÓ...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Hiba a(z) `%s' megnyitásakor: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "" "A fiók létrehozása `%s' számára nem sikerült: a sor nem megfelelően " "formázott.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Érvénytelen felhasználói azonosító %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Felhasználó létrehozása 0 UID-val megtagadva.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "A(z) `%s' csoport nem hozható létre %jd GID-el: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "`%s' veszélyes home könyvtár használati jogának megtagadása %s számára " "alapértelmezésként\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Hiba történt %s saját könyvtárának létrehozásakor: %s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "Hiba a levéltár %s részére való létrehozásakor: %s\n" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "%s kezdeti jelszávanak beállítása nem sikerült: %s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Hiba történt %s felhasználói fiók létrehozásakor: %s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "állítsa be a csoport jelszavának a felhasználó jelszava helyett" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "új titkosítatlan jelszó" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "új titkosított jelszó" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "az új titkosítatlan jelszó beolvasása a megadott leírófájlból" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "az új titkosított jelszó beolvasása a megadott leírófájlból" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "%s jelszavának megváltoztatása.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Új jelszó" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Új jelszó (megerősítés)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "A két jelszó nem egyezik meg, próbálja újból.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Jelszóváltoztatás megszakítva.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Hiba %d fájl leírójának olvasásakor.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Hiba történt %s felhasználó jelszavának beállításakor: %s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Hiba történt %s csoport jelszavának beállításakor: %s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "A jelszó megváltoztatva.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "rendszer felhasználó készítése" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "az új felhasználó GECOS információi" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "az új felhasználó home mappája" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "az új felhasználó könyvtára fájlokkal" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "az új felhasználó shell-je" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "az új felhasználó UID-je" #: apps/luseradd.c:69 msgid "group for new user" msgstr "az új felhasználó csoportja" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "ne készítsen home könyvtárat a felhasználó számára" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "ne készítsen felhasználó nevével megegyező csoportot" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "az új felhasználó közös neve" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "az új felhasználó kitalált neve" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "az új felhasználó utóneve" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "az új felhasználó szobaszáma" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "az új felhasználó telefonszáma" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "az új felhasználó otthoni telefonszáma" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "%jd csoport nem létezik\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Hiba történt `%s' csoport létrehozásakor: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Azonosító létrehozása meghiúsult: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Hiba történt %s létrehozásakor: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "Hiba a levéltár létrehozásakor: %s\n" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" "ne távolítsa el a felhasználó privát csoportját, ha rendelkezik ilyennel" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "távolítsa el felhasználók home mappáját" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "%s felhasználó nem törölhető: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s nem rendelkezik GID számmal.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Nincs csoport %jd GID azonosítóval, így nincs eltávolítás sem.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "A %jd GID azonosítójú csoportnak nincs csoportneve.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "%s csoportot nem lehet törölni: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "hiba a felhasználó saját könyvtárának eltávolításakor" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "Hiba a levéltár törlésekor: %s" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "GECOS információk" #: apps/lusermod.c:60 msgid "home directory" msgstr "home könyvtár" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "home könyvtár tartalmának elmozgatása" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "parancsértelmező beállítása fehasználó számára" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "UID beállítása a felhasználó számára" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "elsődleges GID beállítása a felhasználó számára" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "bejelentkezési név megváltozatása a felhasználónál" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "egyszerű szöveges jelszó a felhasználónak" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "elő-hash-elt jelszó a felhasználó számára" #: apps/lusermod.c:75 msgid "lock account" msgstr "felhasználói fiók zárolása" #: apps/lusermod.c:78 msgid "unlock account" msgstr "felhasználói fiók feloldása" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "közös név megadása a felhasználó számára" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "megadott név beállítása a felhasználó számára" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "vezetéknév beállítása a felhasználó számára" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "szobaszám beállítása a felhasználó számára" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "telefonszám beállítása a felhasználó számára" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "otthoni telefonszám beállítása a felhasználó számára" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Hiba történt %s felhasználó jelszavának beállításakor: %s.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "%s felhasználót nem lehet zárolni: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "%s felhasználó nem megnyitható: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Figyelem: Csoport %jd GID azonosítóval nem létezik.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "%s felhasználó nem módosítható: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "%s csoport nem módosítható: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "%s nem rendelkezik régi saját könyvtárral.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "%s nem rendelkezik új saját könyvtárral.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Hiba történt %s mozgatásakor %s: %s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "`%s' konfigurációs fájl nem nyitható meg: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "`%s' konfigurációs fájl nem elérhető: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "`%s' konfigurációs fájl túl nagy" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "a(z) `%s' konfigurációs fájlt nem lehet olvasni: %s" #: lib/error.c:62 msgid "success" msgstr "kész" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "modul kikapcsolva a konfigurációból" #: lib/error.c:66 msgid "generic error" msgstr "általános hiba" #: lib/error.c:68 msgid "not enough privileges" msgstr "nincs elég jogosultság" #: lib/error.c:70 msgid "access denied" msgstr "hozzáférés megtagadva" #: lib/error.c:72 msgid "bad user/group name" msgstr "rossz felhasználónév / csoportnév" #: lib/error.c:74 msgid "bad user/group id" msgstr "rossz felhasználó/csoport azonosító" #: lib/error.c:76 msgid "user/group name in use" msgstr "felhasználónév/csoportnév használatban" #: lib/error.c:78 msgid "user/group id in use" msgstr "felhasználó/csoport azonosító használatban" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "hiba a terminálattribútumok kezelésekor" #: lib/error.c:82 msgid "error opening file" msgstr "hiba a fájl megnyitásakor" #: lib/error.c:84 msgid "error locking file" msgstr "hiba a fájl zárolásakor" #: lib/error.c:86 msgid "error statting file" msgstr "hiba a fájl beállításakor" #: lib/error.c:88 msgid "error reading file" msgstr "hiba a fájl olvasásakor" #: lib/error.c:90 msgid "error writing to file" msgstr "hiba a fájlba való íráskor" #: lib/error.c:92 msgid "data not found in file" msgstr "az adat nem található a fájlban" #: lib/error.c:94 msgid "internal initialization error" msgstr "belső inicializálási hiba" #: lib/error.c:96 msgid "error loading module" msgstr "hiba a modul betöltésekor" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "hiba a modulszimbólum feloldásakor" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "könyvtár/modul verzió eltérő" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "a feloldás üresen hagyná a jelszó-mezőt" #: lib/error.c:105 msgid "invalid attribute value" msgstr "rossz attributum érték" #: lib/error.c:107 msgid "invalid module combination" msgstr "helytelen modulkombináció" #: lib/error.c:109 #, fuzzy msgid "user's home directory not owned by them" msgstr "az új felhasználó home mappája" #: lib/error.c:115 msgid "unknown error" msgstr "ismeretlen hiba" #: lib/misc.c:240 msgid "invalid number" msgstr "érvénytelen szám" #: lib/misc.c:254 msgid "invalid ID" msgstr "érvénytelen azonosító" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "Nem található %s inicializáló funkció itt: %s" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "modul verzió eltérés itt: %s" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "`%s' modul nincs meghatározva `%s'" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "hiba a terminálattribútumok olvasásakor" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "hiba a terminálattribútumok beállításakor" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "hiba a terminálból való olvasáskor" #: lib/user.c:218 msgid "name is not set" msgstr "név nincs beállítva" #: lib/user.c:223 msgid "name is too short" msgstr "név túl rövid" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "név túl hosszú (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "név tartalmaz nem ASCII karaktereket" #: lib/user.c:242 msgid "name contains control characters" msgstr "név tartalmaz vezérlőkaraktereket" #: lib/user.c:249 msgid "name contains whitespace" msgstr "a név tartalmaz szóközt" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "név kötőjellel kezdődik" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "név érvénytelen `%c' karaktert tartalmaz" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "%s felhasználónak nincs UID azonosítója" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "%s felhasználó nem található" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "%s csoportnak nincs GID azonosítója" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "%s csoport nem található" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "%jd felhasználónak nincs neve" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "%jd csoportnak nincs neve" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "felhasználónak nincs se neve se UID azonosítója" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "csoportnak nincs neve, sem GID azonosítója" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "" "alapértelmezésben`%s' veszélyes home könyvtár használatának megtagadása" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "%s mező érvénytelen alapértelmezett értéke: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "hiba a fájl zárolásakor: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "Nem sikerült lekérni az alap futtatási kontextust: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "%s biztonsági kontextusa nem kérhető le: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "Nem sikerült beállítani az alap futtatási kontextust erre: %s: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "" "Nem sikerült meghatározni az alapértelmezett kontextust az alábbi program " "számára: %s: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "`%s' nem nyitható meg: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "`%s'-t nem lehet beállítani: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "hiba a(z) `%s' létrehozásakor: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "`%s' backup fájl már létezik és nem szabályos fájl" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "Hiba a(z) `%s' tulajdonosának változatásakor: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "Hiba a '%s' mód váltáskor: %s" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Hiba a(z) `%s' olvasásakor: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Hiba a(z) `%s' írasakor: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "backup fájl mérete nem egyezik" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s érték `%s': `:' nem engedélyezett" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "%s nem olvasható: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "bejegyzés már megtalálható a fájlban" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "%s nem írható: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "A(z) %s entitás-objektumnak nincs attribútuma" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "bejegyzés ellentétes névvel már a fájlban van" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "`:' nem megengedett a titkosított jelszavakban" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "hiba a jelszó titkosításakor" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "az `%s' és a `%s' modulok nem kombinálhatóak" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "nem végrehajtható rendszergazdai jogosultságokkal" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "nincs árnyék fájl -- kikapcsolás" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "hiba a kadm5 kiszolgálóhoz való kapcsolódáskor `%s' szolgáltatásért, a(z) `" "%s' tartományban: %s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "hiba a kerberos könyvtár beállításakor" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "hiba a(z) `%s' felhasználónév kerberoshoz való feldolgozásakor" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "Az entitás struktúrájának nincsen sem %s, sem %s attribútuma" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "entitásnak nincs %s vagy %s attribútumai" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "az entitás %s és %s attribútumok nélkül jött létre" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "hiba a(z) `%s' információ kerberosból való olvasásakor" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "entitásnak nincs %s attribútuma" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "hiba a(z) `%s' jelszavának beállításakor" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Tartomány" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "Kerberos Elsődleges Adminisztrátor" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "Elsődleges Adminisztrátor Kerberos jelszava" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "hiba az ldap könyvtár beállításakor" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "az LDAP protokoll nincs beállítva a(z) %d verzióra" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "nem lehet egyeztetni a TLS-t az LDAP kiszolgálóval" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "nem lehet kapcsolódni az LDAP kiszolgálóhoz" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "LDAP kiszolgáló elérése nem sikerült. Első próbálkozás, mint %s: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "A felhasználói objektumnak nincs %s attribútuma" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "felhasználói objektum létrehozva `%s' nélkül" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "hiba az LDAP könyvtár-bejegyzés létrehozásakor: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "hiba az LDAP könyvtár-bejegyzés módosításakor: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "hiba az LDAP könyvtár-bejegyzés átnevezésekor: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "objektumnak nem volt %s attribútuma" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "hiba az LDAP könyvtár-bejegyzés eltávolításakor: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "objektumnak nincs %s attribútuma" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "nem támogatott jelszó-titkosítási séma " #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "nincs ilyen objektum az LDAP könyvtárban" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "nincs `%s' attribútum" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "hiba történt %s jelszavának beállításakor az LDAP könyvtárban: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP kiszolgálónév" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP keresés Base DN-je" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP keresés DN-je" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP kapcsolódási jelszó" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL felhasználó" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL hitelesített felhasználó" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL hiba %s felhasználó létrehozásakor" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL hiba %s felhasználó eltávolításakor" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "hiba a Cyrus SASL előkészítésekor: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "hiba a felhasználó saját könyvtárának létrehozásakor" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "hiba a felhasználó saját könyvtárának eltávolításakor" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "hiba a felhasználó saját könyvtárának mozgatásakor" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Hiba történt %s inicializálásakor: %s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Érvénytelen azonosító %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "%jd azonosítójú csoport keresése.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "%s nevű csoport keresése.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "%jd azonosítóval rendelkező felhasználó keresése.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "%s nevű felhasználó keresése.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "A bejegyzés nem található.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Kérések teljesítve.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Kérések meghiúsultak.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Alapértelmezett felhasználói objektumosztályok:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Alapértelmezett felhasználói attríbútumok nevei: \n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Alapértelmezett felhasználói attribútumok lekérése: \n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Felhasználói szerkezet másolása:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s nem rendelkezik saját könyvtárral.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Hiba történt %s eltávolításakor: %s.\n" libuser-0.60~dfsg/po/he.gmo0000644000175000017500000001763312226342604015623 0ustar tzafrirtzafrirUql015P*$/To < /+ )[ '      2 *I )t (   . () R .o $  " ! #7 #[        " 3 A O U b -y #  , ,"?b{ #'6F]e"  "3:W*#4 #M86$!.(GNp3FA:C|& ($/M#}EGG/#w/R6'U?}3  % *1-\+6%%9M%a""$4FGe6!SAZ6!!8Vu>F)G#W!{9##0Ba~2F(09?S@M/-DRP>1.5KE*! BIHL#$J%)U83<O ',AQ+ ;CN6 :TG"74= &%s did not have a gid number. %s is not authorized to change the finger info of %s Account Expires: %s Account creation failed: %s. Account is locked. Account is not locked. Authentication failed for %s. Can't set default context for /etc/passwd Changing finger information for %s. Changing password for %s. Changing shell for %s. E-Mail AddressError changing owner of `%s': %sError creating %s: %s. Error creating account for `%s': line improperly formatted. Error creating group `%s': %s Error creating group for `%s' with GID %jd: %s Error creating home directory for %s: %s Error creating user account for %s: %s Error initializing %s: %s. Error initializing PAM. Error looking up %s: %s Error opening `%s': %s. Error parsing arguments: %s. Error reading `%s': %sError setting initial password for %s: %s Error setting password for group %s: %s. Error setting password for user %s: %s. Error writing `%s': %sFailed to drop privileges. Failed to modify aging information for %s: %s Failed to set password for group %s: %s Finger information changed. Finger information not changed: input error. Finger information not changed: %s. Full NameGiven NameGroup %jd does not exist Group %s could not be deleted: %s Group %s could not be locked: %s Group %s could not be modified: %s Group %s could not be unlocked: %s Group %s does not exist. Group creation failed: %s Home PhoneInactive: %ld Internal PAM error `%s'. Internal error. Invalid group ID %s Invalid user ID %s Last Change: %s Maximum: %ld Minimum: %ld NeverNew passwordNew password (confirm)No group name specified, no name for gid %d. No group name specified, using %s. No group name specified. No group with GID %jd exists, not removing. No user name specified, no name for uid %d. No user name specified, using %s. No user name specified. OfficeOffice PhonePassword Expires: %s Password Inactive: %s Password change canceled. Password changed. Passwords do not match, try again. Refusing to create account with UID 0. Shell changed. Shell not changed: %s SurnameUnknown user authenticated. Unknown user contextUser %s could not be deleted: %s. User %s does not exist. User mismatch. Warning: %ld [OPTION...][OPTION...] [user][OPTION...] group[OPTION...] userProject-Id-Version: libuser Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/ POT-Creation-Date: 2013-10-12 23:52+0200 PO-Revision-Date: 2013-04-29 08:37+0000 Last-Translator: Miloslav Trmač Language-Team: Hebrew (http://www.transifex.com/projects/p/fedora/language/he/) Language: he MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); לקבוצה %s לא היה מספר זיהוי (gid).‏ המשתמש %s אינו מורשה לשנות מידע כללי (finger info) של %s פקיעת תוקף חשבון: %s יצירת חשבון משתמש נכשלה: %s.‏ החשבון נעול. החשבון אינו נעול. שגיאת אימות עבור %s. קביעת ברירת מחדל להקשר עבור ‎/etc/passwd נכשלה שינוי מידע כללי (finger) עבור %s.‏ שינוי ססמה עבור %s.‏ מעדכן shell עבור %s.‏ כתובת דוארשגיאה בשינוי בעלות '%s`:‏ %sכישלון ביצירת %s:‏ %s.‏ יצירת חשבון עבור '%s` נכשלה: שורה במבנה שגוי. שגיאה ביצירת קבוצה '%s`:‏ %s.‏ יצירת קבוצה עבור '%s` נכשלה עם GID ‏%jd:‏ %s כישלון ביצירת תיקיית בית עבור %s:‏ %s כישלון ביצירת חשבון משתמש עבור %s:‏ %s שגיאה באתחול %s:‏ %s.‏ שגיאה באתחול PAM.‏ איתור %s נכשל: %s שגיאה בפתיחת '%s`:‏ %s.‏ שגיאה בפענוח פרמטרים: %s.‏ שגיאה בקריאת '%s`:‏ %sכישלון בקביעת ססמה התחלתית עבור %s:‏ %s כישלון בקביעת ססמה עבור הקבוצה %s:‏ %s.‏ כישלון בקביעת ססמה עבור המשתמש %s:‏ %s.‏ שגיאה בכתיבת '%s`:‏ %sכישלון בוויתור על הרשאות. כישלון בעדכון מידע אודות התיישנות עבור %s:‏ %s נכשלה קביעת ססמה לקבוצה %s:‏ %s מידע כללי (finger) עודכן. מידע כללי (finger) לא עודכן: שגיאת קלט. מידע כללי (finger) לא עודכן: %s.‏ שם מלאשם פרטיהקבוצה %jd אינה קיימת מחיקת הקבוצה %s נכשלה: %s נכשלה נעילת הקבוצה %s:‏ %s נכשל עדכון הקבוצה %s:‏ %s נכשל שחרור נעילת הקבוצה %s:‏ %s הקבוצה %s אינה קיימת. יצירת קבוצה נכשלה: %s טלפון בביתלא פעיל: %ld שגיאת PAM פנימית '%s`.‏ שגיאה פנימית. זיהוי קבוצה %s שגוי זיהוי משתמש שגוי %s עדכון אחרון: %s מירבי: %ld מזערי: %ld לעולם לאססמה חדשהססמה חדשה (אישור)לא צויין שם קבוצה, אין שם עבור gid‏‏ %d.‏ לא צויין שם קבוצה, משתמש ב-%s.‏ לא צויין שם קבוצה. אין קבוצה עם מספר זיהוי (GID)‏ %jd, לא ניתן למחוק. לא צויין שם משתמש, אין שם עבור uid %d.‏ לא צויין שם חשבון, משתמש ב-%s.‏ לא צויין שם משתמש. משרדטלפון בעבודהפקיעת תוקף ססמה: %s ססמה לא פעילה: %s שינוי ססמה בוטל. ססמה עודכנה. ססמאות אינן תואמות, יש לנסות שנית. מסרב ליצור חשבון עם זיהוי משתמש (UID)‏ 0. ה-shell עודכן. ה-shell לא עודכן: %s שם משפחהאומת משתמש לא מוכר. הקשר משתמש לא ידועלא ניתן למחוק את המשתמש %s:‏ %s.‏ המשתמש %s אינו קיים. אי התאמה של המשתמש. אתרעה: %ld [אפשרות...][אפשרות...] [משתמש][אפשרות...] קבוצה[אפשרות...] משתמשlibuser-0.60~dfsg/po/fi.po0000644000175000017500000010650212226342567015463 0ustar tzafrirtzafrir# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Red Hat, Inc. # This file is distributed under the same license as the PACKAGE package. # # Translators: # Mikko Ikola , 2004 # Miloslav Trmač , 2011 # Ville Skyttä , 2011 msgid "" msgstr "" "Project-Id-Version: libuser\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/bugzilla/\n" "POT-Creation-Date: 2013-10-12 23:52+0200\n" "PO-Revision-Date: 2013-04-29 08:37+0000\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/fedora/language/" "fi/)\n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps/apputil.c:197 apps/apputil.c:201 #, c-format msgid "Failed to drop privileges.\n" msgstr "Oikeuksien pudottaminen epäonnistui.\n" #: apps/apputil.c:210 #, c-format msgid "Internal error.\n" msgstr "Sisäinen virhe.\n" #: apps/apputil.c:231 #, c-format msgid "%s is not authorized to change the finger info of %s\n" msgstr "" "käyttäjällä %s ei ole valtuutusta muuttaa käyttäjän %s finger-tietoja\n" #: apps/apputil.c:233 msgid "Unknown user context" msgstr "Tuntematon käyttäjäympäristö" #: apps/apputil.c:241 #, c-format msgid "Can't set default context for /etc/passwd\n" msgstr "Tiedoston /etc/passwd oletusympäristöä ei voi asettaa\n" #: apps/apputil.c:250 #, c-format msgid "Error initializing PAM.\n" msgstr "Virhe PAM:n alustamisessa.\n" #: apps/apputil.c:260 apps/apputil.c:287 #, c-format msgid "Authentication failed for %s.\n" msgstr "Todennus epäonnistui %s:lle.\n" #: apps/apputil.c:268 #, c-format msgid "Internal PAM error `%s'.\n" msgstr "Sisäinen PAM-virhe ”%s”.\n" #: apps/apputil.c:273 #, c-format msgid "Unknown user authenticated.\n" msgstr "Tuntematon käyttäjä on kirjautunut.\n" #: apps/apputil.c:277 #, c-format msgid "User mismatch.\n" msgstr "Käyttäjän tiedot ei täsmää.\n" #: apps/lchage.c:84 apps/lchfn.c:53 apps/lchsh.c:44 apps/lgroupadd.c:47 #: apps/lgroupdel.c:42 apps/lgroupmod.c:54 apps/lid.c:115 apps/lnewusers.c:45 #: apps/lpasswd.c:47 apps/luseradd.c:55 apps/luserdel.c:45 apps/lusermod.c:56 msgid "prompt for all information" msgstr "" #: apps/lchage.c:86 msgid "list aging parameters for the user" msgstr "" #: apps/lchage.c:88 msgid "minimum days between password changes" msgstr "" #: apps/lchage.c:88 apps/lchage.c:90 apps/lchage.c:93 apps/lchage.c:96 #: apps/lchage.c:99 apps/lchage.c:102 msgid "DAYS" msgstr "" #: apps/lchage.c:90 msgid "maximum days between password changes" msgstr "" #: apps/lchage.c:92 msgid "date of last password change in days since 1/1/70" msgstr "" #: apps/lchage.c:95 msgid "" "number of days after password expiration date when account is considered " "inactive" msgstr "" #: apps/lchage.c:98 msgid "password expiration date in days since 1/1/70" msgstr "" #: apps/lchage.c:101 msgid "days before expiration to begin warning user" msgstr "" #: apps/lchage.c:114 apps/lid.c:130 apps/lpasswd.c:68 apps/luseradd.c:100 #: apps/luserdel.c:59 apps/lusermod.c:101 msgid "[OPTION...] user" msgstr "[VALITSIN...] käyttäjä" #: apps/lchage.c:117 apps/lchfn.c:70 apps/lchsh.c:58 apps/lgroupadd.c:65 #: apps/lgroupdel.c:56 apps/lgroupmod.c:85 apps/lid.c:133 apps/lnewusers.c:66 #: apps/lpasswd.c:71 apps/luseradd.c:103 apps/luserdel.c:62 #: apps/lusermod.c:104 #, c-format msgid "Error parsing arguments: %s.\n" msgstr "Argumenttien käsittelyssä tapahtui virhe: %s\n" #: apps/lchage.c:126 apps/lpasswd.c:85 apps/luseradd.c:118 apps/luserdel.c:70 #: apps/lusermod.c:115 #, c-format msgid "No user name specified.\n" msgstr "Käyttäjänimeä ei ole määritelty.\n" #: apps/lchage.c:138 apps/lchfn.c:103 apps/lchsh.c:91 apps/lgroupadd.c:102 #: apps/lgroupdel.c:77 apps/lgroupmod.c:119 apps/lid.c:179 apps/lnewusers.c:79 #: apps/lpasswd.c:97 apps/luseradd.c:143 apps/luserdel.c:81 #: apps/lusermod.c:157 samples/enum.c:56 samples/testuser.c:71 #, c-format msgid "Error initializing %s: %s.\n" msgstr "Virhe alustettaessa %s: %s.\n" #: apps/lchage.c:147 apps/lchfn.c:114 apps/lchsh.c:102 apps/lpasswd.c:148 #: apps/luserdel.c:89 apps/lusermod.c:171 #, c-format msgid "User %s does not exist.\n" msgstr "Käyttäjää %s ei ole olemassa.\n" #: apps/lchage.c:160 #, c-format msgid "Account is locked.\n" msgstr "Tunnus on lukittu.\n" #: apps/lchage.c:162 #, c-format msgid "Account is not locked.\n" msgstr "Tunnus ei ole lukittu.\n" #: apps/lchage.c:166 #, c-format msgid "Minimum:\t%ld\n" msgstr "Minimi:\t%ld\n" #: apps/lchage.c:170 #, c-format msgid "Maximum:\t%ld\n" msgstr "Maksimi:\t%ld\n" #: apps/lchage.c:172 #, c-format msgid "Maximum:\tNone\n" msgstr "" #: apps/lchage.c:175 #, c-format msgid "Warning:\t%ld\n" msgstr "Varoitus:\t%ld\n" #: apps/lchage.c:180 #, c-format msgid "Inactive:\t%ld\n" msgstr "Pois käytöstä:\t%ld\n" #: apps/lchage.c:182 #, c-format msgid "Inactive:\tNever\n" msgstr "" #: apps/lchage.c:186 apps/lchage.c:194 apps/lchage.c:204 msgid "Must change password on next login" msgstr "" #: apps/lchage.c:188 apps/lchage.c:196 apps/lchage.c:206 apps/lchage.c:215 msgid "Never" msgstr "Ei koskaan" #: apps/lchage.c:191 #, c-format msgid "Last Change:\t%s\n" msgstr "Edellinen muutos:\t%s\n" #: apps/lchage.c:201 #, c-format msgid "Password Expires:\t%s\n" msgstr "Salasana vanhentuu:\t%s\n" #: apps/lchage.c:213 #, c-format msgid "Password Inactive:\t%s\n" msgstr "Salasana pois käytöstä:\t%s\n" #: apps/lchage.c:219 #, c-format msgid "Account Expires:\t%s\n" msgstr "Tunnus vanhentuu:\t%s\n" #: apps/lchage.c:240 #, c-format msgid "Failed to modify aging information for %s: %s\n" msgstr "Vanhenemistiedon muuttaminen epäonnistui %s:lle: %s\n" #: apps/lchfn.c:67 apps/lchsh.c:55 msgid "[OPTION...] [user]" msgstr "[VALITSIN...] [käyttäjä]" #: apps/lchfn.c:86 apps/lchsh.c:74 apps/lid.c:164 #, c-format msgid "No user name specified, no name for uid %d.\n" msgstr "Käyttäjänimeä ei määritelty, ei nimeä uid:lle %d.\n" #: apps/lchfn.c:96 #, c-format msgid "Changing finger information for %s.\n" msgstr "Vaihdetaan käyttäjän %s finger-tiedot.\n" #: apps/lchfn.c:136 msgid "Full Name" msgstr "Koko nimi" #: apps/lchfn.c:146 msgid "Surname" msgstr "Sukunimi" #: apps/lchfn.c:157 msgid "Given Name" msgstr "Etunimi" #: apps/lchfn.c:167 msgid "Office" msgstr "Toimisto" #: apps/lchfn.c:176 msgid "Office Phone" msgstr "Toimistopuhelin" #: apps/lchfn.c:185 msgid "Home Phone" msgstr "Kotipuhelin" #: apps/lchfn.c:195 msgid "E-Mail Address" msgstr "Sähköpostiosoite" #: apps/lchfn.c:208 #, c-format msgid "Finger information not changed: input error.\n" msgstr "Finger-tietoja ei muutettu: syöttövirhe.\n" #: apps/lchfn.c:270 msgid "Finger information changed.\n" msgstr "Finger-tiedot muutettu.\n" #: apps/lchfn.c:273 #, c-format msgid "Finger information not changed: %s.\n" msgstr "Finger-tietoja ei muutettu: %s.\n" #: apps/lchsh.c:84 #, c-format msgid "Changing shell for %s.\n" msgstr "Vaihdetaan käyttäjän %s komentotulkki.\n" #: apps/lchsh.c:114 msgid "New Shell" msgstr "Uusi komentotulkki" #: apps/lchsh.c:121 apps/lchsh.c:136 #, c-format msgid "Shell not changed: %s\n" msgstr "Komentotulkkia ei vaihdettu: %s\n" #: apps/lchsh.c:133 msgid "Shell changed.\n" msgstr "Komentotulkki vaihdettu.\n" #: apps/lgroupadd.c:49 msgid "gid for new group" msgstr "" #: apps/lgroupadd.c:49 apps/lgroupmod.c:56 apps/lpasswd.c:56 apps/lpasswd.c:59 #: apps/luseradd.c:67 apps/lusermod.c:66 apps/lusermod.c:68 msgid "NUM" msgstr "" #: apps/lgroupadd.c:51 msgid "create a system group" msgstr "" #: apps/lgroupadd.c:62 apps/lgroupdel.c:53 apps/lgroupmod.c:82 msgid "[OPTION...] group" msgstr "[VALITSIN...] ryhmä" #: apps/lgroupadd.c:74 apps/lgroupdel.c:65 apps/lgroupmod.c:93 #, c-format msgid "No group name specified.\n" msgstr "Ryhmän nimeä ei määritelty.\n" #: apps/lgroupadd.c:87 apps/lgroupmod.c:105 apps/lnewusers.c:172 #: apps/luseradd.c:164 apps/lusermod.c:127 #, c-format msgid "Invalid group ID %s\n" msgstr "Epäkelpo ryhmätunnus %s\n" #: apps/lgroupadd.c:119 #, c-format msgid "Group creation failed: %s\n" msgstr "Ryhmän luominen epäonnistui: %s.\n" #: apps/lgroupdel.c:85 apps/lgroupmod.c:132 apps/lpasswd.c:153 #, c-format msgid "Group %s does not exist.\n" msgstr "Ryhmää %s ei ole olemassa.\n" #: apps/lgroupdel.c:91 #, c-format msgid "Group %s could not be deleted: %s\n" msgstr "Ryhmää %s ei voitu poistaa: %s.\n" #: apps/lgroupmod.c:56 msgid "set GID for group" msgstr "" #: apps/lgroupmod.c:58 msgid "change group to have given name" msgstr "" #: apps/lgroupmod.c:58 msgid "NAME" msgstr "" #: apps/lgroupmod.c:60 apps/luseradd.c:75 msgid "plaintext password for use with group" msgstr "" #: apps/lgroupmod.c:60 apps/lgroupmod.c:62 apps/lgroupmod.c:64 #: apps/lgroupmod.c:66 apps/lgroupmod.c:68 apps/lgroupmod.c:70 #: apps/lpasswd.c:51 apps/lpasswd.c:53 apps/luseradd.c:59 apps/luseradd.c:61 #: apps/luseradd.c:63 apps/luseradd.c:65 apps/luseradd.c:69 apps/luseradd.c:75 #: apps/luseradd.c:77 apps/luseradd.c:79 apps/luseradd.c:81 apps/luseradd.c:83 #: apps/luseradd.c:85 apps/luseradd.c:87 apps/luseradd.c:89 apps/lusermod.c:58 #: apps/lusermod.c:60 apps/lusermod.c:64 apps/lusermod.c:70 apps/lusermod.c:72 #: apps/lusermod.c:74 apps/lusermod.c:80 apps/lusermod.c:82 apps/lusermod.c:84 #: apps/lusermod.c:86 apps/lusermod.c:88 apps/lusermod.c:90 msgid "STRING" msgstr "" #: apps/lgroupmod.c:62 apps/luseradd.c:77 msgid "pre-hashed password for use with group" msgstr "" #: apps/lgroupmod.c:64 msgid "list of administrators to add" msgstr "" #: apps/lgroupmod.c:66 msgid "list of administrators to remove" msgstr "" #: apps/lgroupmod.c:68 msgid "list of group members to add" msgstr "" #: apps/lgroupmod.c:70 msgid "list of group members to remove" msgstr "" #: apps/lgroupmod.c:71 msgid "lock group" msgstr "" #: apps/lgroupmod.c:72 msgid "unlock group" msgstr "" #: apps/lgroupmod.c:125 apps/lusermod.c:164 #, c-format msgid "Both -L and -U specified.\n" msgstr "Sekä -L että -U annettu.\n" #: apps/lgroupmod.c:139 apps/lgroupmod.c:148 #, c-format msgid "Failed to set password for group %s: %s\n" msgstr "Salasanan asettaminen ryhmälle %s epäonnistui: %s\n" #: apps/lgroupmod.c:157 #, c-format msgid "Group %s could not be locked: %s\n" msgstr "Ryhmää %s ei voitu lukita: %s.\n" #: apps/lgroupmod.c:166 #, c-format msgid "Group %s could not be unlocked: %s\n" msgstr "Ryhmän %s lukitusta ei voitu avata: %s.\n" #: apps/lgroupmod.c:242 apps/lgroupmod.c:257 #, c-format msgid "Group %s could not be modified: %s\n" msgstr "Ryhmää %s ei voitu muokata: %s\n" #: apps/lid.c:42 apps/lid.c:74 apps/lid.c:188 #, c-format msgid "Error looking up %s: %s\n" msgstr "Virhe etsittäessä %s: %s\n" #: apps/lid.c:117 msgid "" "list members of a named group instead of the group memberships for the named " "user" msgstr "" #: apps/lid.c:120 msgid "only list membership information by name, and not UID/GID" msgstr "" #: apps/lid.c:146 #, c-format msgid "No group name specified, using %s.\n" msgstr "Ryhmänimeä ei määritelty, käytetään %s.\n" #: apps/lid.c:150 #, c-format msgid "No group name specified, no name for gid %d.\n" msgstr "Ryhmänimeä ei määritelty, ei nimeä gid:lle %d.\n" #: apps/lid.c:160 #, c-format msgid "No user name specified, using %s.\n" msgstr "Käyttäjänimeä ei määritelty, käytetään %s.\n" #: apps/lid.c:192 #, c-format msgid "%s does not exist\n" msgstr "%s ei ole olemassa\n" #: apps/lnewusers.c:47 msgid "file with user information records" msgstr "" #: apps/lnewusers.c:47 msgid "PATH" msgstr "" #: apps/lnewusers.c:49 msgid "don't create home directories" msgstr "" #: apps/lnewusers.c:51 msgid "don't create mail spools" msgstr "" #: apps/lnewusers.c:63 msgid "[OPTION...]" msgstr "[VALITSIN...]" #: apps/lnewusers.c:88 #, c-format msgid "Error opening `%s': %s.\n" msgstr "Virhe avattaessa ”%s”: %s.\n" #: apps/lnewusers.c:118 #, c-format msgid "Error creating account for `%s': line improperly formatted.\n" msgstr "Virhe luotaessa tunnusta käyttäjälle ”%s”: virheellinen rivi.\n" #: apps/lnewusers.c:129 apps/luseradd.c:128 apps/lusermod.c:142 #, c-format msgid "Invalid user ID %s\n" msgstr "Epäkelpo käyttäjätunnus %s\n" #: apps/lnewusers.c:136 msgid "Refusing to create account with UID 0.\n" msgstr "Kieltäydytään luomasta tunnusta UID:llä 0.\n" #: apps/lnewusers.c:206 #, c-format msgid "Error creating group for `%s' with GID %jd: %s\n" msgstr "Virhe luotaessa ryhmää ”%s” GID:llä %jd: %s\n" #: apps/lnewusers.c:246 #, c-format msgid "Refusing to use dangerous home directory `%s' for %s by default\n" msgstr "" "Vaarallista kotihakemistoa ”%s” ei käytetä käyttäjälle ”%s” oletuksena\n" #: apps/lnewusers.c:257 #, c-format msgid "Error creating home directory for %s: %s\n" msgstr "Virhe kotihakemiston luomisessa kohteelle %s:%s\n" #: apps/lnewusers.c:270 #, c-format msgid "Error creating mail spool for %s: %s\n" msgstr "" #: apps/lnewusers.c:285 #, c-format msgid "Error setting initial password for %s: %s\n" msgstr "Virhe ensimmäisen salasanan asettamisessa käyttäjälle %s:%s\n" #: apps/lnewusers.c:295 #, c-format msgid "Error creating user account for %s: %s\n" msgstr "Virhe käyttäjätunnuksen luomisessa kohteelle %s:%s\n" #: apps/lpasswd.c:49 msgid "set group password instead of user password" msgstr "" #: apps/lpasswd.c:51 msgid "new plain password" msgstr "" #: apps/lpasswd.c:53 msgid "new crypted password" msgstr "" #: apps/lpasswd.c:55 msgid "read new plain password from given descriptor" msgstr "" #: apps/lpasswd.c:58 msgid "read new crypted password from given descriptor" msgstr "" #: apps/lpasswd.c:83 #, c-format msgid "Changing password for %s.\n" msgstr "Vaihdetaan salasana käyttäjälle %s.\n" #: apps/lpasswd.c:111 msgid "New password" msgstr "Uusi salasana" #: apps/lpasswd.c:114 msgid "New password (confirm)" msgstr "Uusi salasana (vahvistus)" #: apps/lpasswd.c:128 #, c-format msgid "Passwords do not match, try again.\n" msgstr "Salasanat eivät täsmää, yritä uudelleen.\n" #: apps/lpasswd.c:133 #, c-format msgid "Password change canceled.\n" msgstr "Salasanan vaihto peruutettu.\n" #: apps/lpasswd.c:165 apps/lpasswd.c:182 #, c-format msgid "Error reading from file descriptor %d.\n" msgstr "Virhe luettaessa tiedostokuvaajasta %d.\n" #: apps/lpasswd.c:203 apps/luseradd.c:302 apps/luseradd.c:311 #, c-format msgid "Error setting password for user %s: %s.\n" msgstr "Virhe salasanan asettamisessa käyttäjälle %s:%s.\n" #: apps/lpasswd.c:212 #, c-format msgid "Error setting password for group %s: %s.\n" msgstr "Virhe salasanan asettamisessa ryhmälle %s:%s.\n" #: apps/lpasswd.c:224 #, c-format msgid "Password changed.\n" msgstr "Salasana vaihdettu.\n" #: apps/luseradd.c:57 msgid "create a system user" msgstr "" #: apps/luseradd.c:59 msgid "GECOS information for new user" msgstr "" #: apps/luseradd.c:61 msgid "home directory for new user" msgstr "" #: apps/luseradd.c:63 msgid "directory with files for the new user" msgstr "" #: apps/luseradd.c:65 msgid "shell for new user" msgstr "" #: apps/luseradd.c:67 msgid "uid for new user" msgstr "" #: apps/luseradd.c:69 msgid "group for new user" msgstr "" #: apps/luseradd.c:71 msgid "don't create home directory for user" msgstr "" #: apps/luseradd.c:73 msgid "don't create group with same name as user" msgstr "" #: apps/luseradd.c:79 msgid "common name for new user" msgstr "" #: apps/luseradd.c:81 msgid "given name for new user" msgstr "" #: apps/luseradd.c:83 msgid "surname for new user" msgstr "" #: apps/luseradd.c:85 msgid "room number for new user" msgstr "" #: apps/luseradd.c:87 msgid "telephone number for new user" msgstr "" #: apps/luseradd.c:89 msgid "home telephone number for new user" msgstr "" #: apps/luseradd.c:189 #, c-format msgid "Group %jd does not exist\n" msgstr "Ryhmää %jd ei ole olemassa\n" #: apps/luseradd.c:207 apps/luseradd.c:220 #, c-format msgid "Error creating group `%s': %s\n" msgstr "Virhe luotaessa ryhmää ”%s”: %s\n" #: apps/luseradd.c:260 #, c-format msgid "Account creation failed: %s.\n" msgstr "Tunnuksen luominen epäonnistu: %s.\n" #: apps/luseradd.c:283 #, c-format msgid "Error creating %s: %s.\n" msgstr "Virhe luotaessa %s: %s.\n" #: apps/luseradd.c:290 #, c-format msgid "Error creating mail spool: %s\n" msgstr "" #: apps/luserdel.c:47 msgid "don't remove the user's private group, if the user has one" msgstr "" #: apps/luserdel.c:50 msgid "remove the user's home directory" msgstr "" #: apps/luserdel.c:94 #, c-format msgid "User %s could not be deleted: %s.\n" msgstr "Käyttäjää %s ei voitu poistaa: %s.\n" #: apps/luserdel.c:108 #, c-format msgid "%s did not have a gid number.\n" msgstr "%s:lla ei ollut gid-numeroa.\n" #: apps/luserdel.c:114 #, c-format msgid "No group with GID %jd exists, not removing.\n" msgstr "Ryhmää GID:llä %jd ei ole olemassa, ei poisteta.\n" #: apps/luserdel.c:120 #, c-format msgid "Group with GID %jd did not have a group name.\n" msgstr "Ryhmällä, jonka GID on %jd, ei ollut ryhmänimeä.\n" #: apps/luserdel.c:126 #, c-format msgid "Group %s could not be deleted: %s.\n" msgstr "Ryhmää %s ei voitu poistaa: %s.\n" #: apps/luserdel.c:139 #, fuzzy, c-format msgid "Error removing home directory: %s.\n" msgstr "virhe kotihakemiston poistamisessa käyttäjälle" #: apps/luserdel.c:145 #, c-format msgid "Error removing mail spool: %s" msgstr "" #: apps/lusermod.c:58 msgid "GECOS information" msgstr "" #: apps/lusermod.c:60 msgid "home directory" msgstr "" #: apps/lusermod.c:62 msgid "move home directory contents" msgstr "" #: apps/lusermod.c:64 msgid "set shell for user" msgstr "" #: apps/lusermod.c:66 msgid "set UID for user" msgstr "" #: apps/lusermod.c:68 msgid "set primary GID for user" msgstr "" #: apps/lusermod.c:70 msgid "change login name for user" msgstr "" #: apps/lusermod.c:72 msgid "plaintext password for the user" msgstr "" #: apps/lusermod.c:74 msgid "pre-hashed password for the user" msgstr "" #: apps/lusermod.c:75 msgid "lock account" msgstr "" #: apps/lusermod.c:78 msgid "unlock account" msgstr "" #: apps/lusermod.c:80 msgid "set common name for user" msgstr "" #: apps/lusermod.c:82 msgid "set given name for user" msgstr "" #: apps/lusermod.c:84 msgid "set surname for user" msgstr "" #: apps/lusermod.c:86 msgid "set room number for user" msgstr "" #: apps/lusermod.c:88 msgid "set telephone number for user" msgstr "" #: apps/lusermod.c:90 msgid "set home telephone number for user" msgstr "" #: apps/lusermod.c:180 apps/lusermod.c:193 #, c-format msgid "Failed to set password for user %s: %s.\n" msgstr "Salasanan asettaminen käyttäjälle %s:%s epäonnistui.\n" #: apps/lusermod.c:203 #, c-format msgid "User %s could not be locked: %s.\n" msgstr "Käyttäjää %s ei voitu lukita: %s.\n" #: apps/lusermod.c:211 #, c-format msgid "User %s could not be unlocked: %s.\n" msgstr "Käyttäjän %s lukitusta ei voitu avata: %s.\n" #: apps/lusermod.c:232 #, c-format msgid "Warning: Group with ID %jd does not exist.\n" msgstr "Varoitus: Ryhmää ID:llä %jd ei ole olemassa.\n" #: apps/lusermod.c:275 #, c-format msgid "User %s could not be modified: %s.\n" msgstr "Käyttäjää %s ei voitu muokata: %s.\n" #: apps/lusermod.c:326 #, c-format msgid "Group %s could not be modified: %s.\n" msgstr "Ryhmää %s ei voitu muokata: %s.\n" #: apps/lusermod.c:342 #, c-format msgid "No old home directory for %s.\n" msgstr "Käyttäjällä %s ei ole vanhaa kotihakemistoa.\n" #: apps/lusermod.c:347 #, c-format msgid "No new home directory for %s.\n" msgstr "Käyttäjällä %s ei ole uutta kotihakemistoa.\n" #: apps/lusermod.c:353 #, c-format msgid "Error moving %s to %s: %s.\n" msgstr "Virhe siirrettäessä %s kohteeseen %s:%s.\n" #: lib/config.c:128 #, c-format msgid "could not open configuration file `%s': %s" msgstr "ei voitu avata asetustiedostoa ”%s”: %s" #: lib/config.c:134 #, c-format msgid "could not stat configuration file `%s': %s" msgstr "ei voitu avata asetustiedostoa ”%s”: %s" #: lib/config.c:143 #, c-format msgid "configuration file `%s' is too large" msgstr "asetustiedosto ”%s” on liian suuri" #: lib/config.c:159 #, c-format msgid "could not read configuration file `%s': %s" msgstr "ei voitu avata asetustiedostoa ”%s”: %s" #: lib/error.c:62 msgid "success" msgstr "onnistui" #: lib/error.c:64 msgid "module disabled by configuration" msgstr "moduuli asetettu pois käytöstä" #: lib/error.c:66 msgid "generic error" msgstr "yleinen virhe" #: lib/error.c:68 msgid "not enough privileges" msgstr "ei riittävästi oikeuksia" #: lib/error.c:70 msgid "access denied" msgstr "pääsy evätty" #: lib/error.c:72 msgid "bad user/group name" msgstr "väärä käyttäjä/ryhmä nimi" #: lib/error.c:74 msgid "bad user/group id" msgstr "väärä käyttäjä/ryhmä id" #: lib/error.c:76 msgid "user/group name in use" msgstr "käyttäjä/ryhmä nimi käytössä" #: lib/error.c:78 msgid "user/group id in use" msgstr "käyttäjä/ryhmä id käytössä" #: lib/error.c:80 msgid "error manipulating terminal attributes" msgstr "virhe päätteen attribuutteja muutettaessa" #: lib/error.c:82 msgid "error opening file" msgstr "virhe tiedoston avaamisessa" #: lib/error.c:84 msgid "error locking file" msgstr "virhe tiedoston lukitsemisessa" #: lib/error.c:86 msgid "error statting file" msgstr "virhe tiedoston avaamisessa" #: lib/error.c:88 msgid "error reading file" msgstr "virhe tiedoston lukemisessa" #: lib/error.c:90 msgid "error writing to file" msgstr "virhe tiedostoon kirjoittamisessa" #: lib/error.c:92 msgid "data not found in file" msgstr "dataa ei löytynyt tiedostosta" #: lib/error.c:94 msgid "internal initialization error" msgstr "sisäinen alustusvirhe" #: lib/error.c:96 msgid "error loading module" msgstr "virhe moduulin lataamisessa" #: lib/error.c:98 msgid "error resolving symbol in module" msgstr "virhe symbolin selvityksessä moduulissa" #: lib/error.c:100 msgid "library/module version mismatch" msgstr "kirjasto/moduuli versioristiriita" #: lib/error.c:102 msgid "unlocking would make the password field empty" msgstr "lukituksen avaaminen tyhjentäisi salasanakentän" #: lib/error.c:105 msgid "invalid attribute value" msgstr "epäkelpo attribuutin arvo" #: lib/error.c:107 msgid "invalid module combination" msgstr "epäkelpo moduuliyhdistelmä" #: lib/error.c:109 msgid "user's home directory not owned by them" msgstr "" #: lib/error.c:115 msgid "unknown error" msgstr "tuntematon virhe" #: lib/misc.c:240 msgid "invalid number" msgstr "virheellinen numero" #: lib/misc.c:254 msgid "invalid ID" msgstr "virheellinen ID" #: lib/modules.c:61 #, c-format msgid "no initialization function %s in `%s'" msgstr "ei alustusfunktiota %s kohteessa ”%s”" #: lib/modules.c:79 #, c-format msgid "module version mismatch in `%s'" msgstr "moduulin versioristiriita ”%s”" #: lib/modules.c:92 #, c-format msgid "module `%s' does not define `%s'" msgstr "moduuli ”%s” ei määrittele ”%s”" #: lib/prompt.c:88 msgid "error reading terminal attributes" msgstr "virhe päätteen attribuutteja luettaessa" #: lib/prompt.c:95 lib/prompt.c:107 msgid "error setting terminal attributes" msgstr "virhe päätteen attribuutteja asetettaessa" #: lib/prompt.c:101 msgid "error reading from terminal" msgstr "virhe luettaessa päätteeltä" #: lib/user.c:218 msgid "name is not set" msgstr "nimeä ei ole asetettu" #: lib/user.c:223 msgid "name is too short" msgstr "nimi on liian lyhyt" #: lib/user.c:228 #, c-format msgid "name is too long (%zu > %d)" msgstr "nimi on liian pitkä (%zu > %d)" #: lib/user.c:235 msgid "name contains non-ASCII characters" msgstr "nimi sisältää ei-ASCII-merkkejä" #: lib/user.c:242 msgid "name contains control characters" msgstr "nimi sisältää kontrollimerkkejä" #: lib/user.c:249 msgid "name contains whitespace" msgstr "nimi sisältää välilyöntejä" #: lib/user.c:261 msgid "name starts with a hyphen" msgstr "nimi alkaa väliviivalla" #: lib/user.c:272 #, c-format msgid "name contains invalid char `%c'" msgstr "nimi sisältää virheellisen merkin ”%c”" #: lib/user.c:308 lib/user.c:360 #, c-format msgid "user %s has no UID" msgstr "Käyttäjällä %s ei ole UID:tä" #: lib/user.c:310 #, c-format msgid "user %s not found" msgstr "" #: lib/user.c:333 lib/user.c:361 #, c-format msgid "group %s has no GID" msgstr "ryhmällä %s ei ole GID:tä" #: lib/user.c:335 #, c-format msgid "group %s not found" msgstr "" #: lib/user.c:355 #, c-format msgid "user %jd has no name" msgstr "käyttäjällä %jd ei ole nimeä" #: lib/user.c:356 #, c-format msgid "group %jd has no name" msgstr "ryhmällä %jd ei ole nimeä" #: lib/user.c:364 msgid "user has neither a name nor an UID" msgstr "käyttäjällä ei ole nimeä eikä UID:tä" #: lib/user.c:365 msgid "group has neither a name nor a GID" msgstr "ryhmällä ei ole nimeä eikä GID:tä" #: lib/user.c:1311 #, c-format msgid "Refusing to use dangerous home directory `%s' by default" msgstr "Vaarallista kotihakemistoa ”%s” ei käytetä oletuksena" #: lib/user.c:2310 #, c-format msgid "Invalid default value of field %s: %s" msgstr "Kentän %s oletusarvo ei kelpaa: %s" #: lib/util.c:300 #, c-format msgid "error locking file: %s" msgstr "virhe tiedoston lukitsemisessa: %s" #: lib/util.c:706 #, c-format msgid "couldn't get default security context: %s" msgstr "ei voitu hakea oletusturvaympäristöä: %s" #: lib/util.c:733 lib/util.c:759 lib/util.c:785 #, c-format msgid "couldn't get security context of `%s': %s" msgstr "ei voitu hakea turvaympäristöä ”%s”: %s" #: lib/util.c:739 lib/util.c:765 lib/util.c:791 lib/util.c:823 #, c-format msgid "couldn't set default security context to `%s': %s" msgstr "ei voitu asettaa oletusturvakontekstia ”%s”: %s" #: lib/util.c:815 #, c-format msgid "couldn't determine security context for `%s': %s" msgstr "ei voitu määrittää turvaympäristöä ”%s”: %s" #: modules/files.c:123 modules/files.c:453 modules/files.c:765 #: modules/files.c:992 modules/files.c:1158 modules/files.c:1379 #: modules/files.c:1452 modules/files.c:1659 modules/files.c:1821 #: modules/files.c:1838 modules/files.c:1923 modules/files.c:1942 #: modules/files.c:2010 modules/files.c:2031 modules/files.c:2124 #: modules/files.c:2139 modules/files.c:2196 modules/files.c:2211 #: modules/files.c:2309 modules/files.c:2324 #, c-format msgid "couldn't open `%s': %s" msgstr "ei voitu avata ”%s”: %s" #: modules/files.c:135 modules/files.c:153 modules/files.c:231 #: modules/files.c:777 modules/files.c:1002 modules/files.c:1170 #, c-format msgid "couldn't stat `%s': %s" msgstr "ei voitu avata ”%s”: %s" #: modules/files.c:146 #, c-format msgid "error creating `%s': %s" msgstr "virhe luotaessa ”%s”: %s" #: modules/files.c:159 #, c-format msgid "backup file `%s' exists and is not a regular file" msgstr "varmuuskopiotiedosto ”%s” on olemassa eikä se ole normaali tiedosto" #: modules/files.c:171 #, c-format msgid "Error changing owner of `%s': %s" msgstr "”%s”:n omistajaa vaihdettaessa tapahtui virhe: %s" #: modules/files.c:177 #, c-format msgid "Error changing mode of `%s': %s" msgstr "" #: modules/files.c:193 #, c-format msgid "Error reading `%s': %s" msgstr "Virhe luettaessa ”%s”: %s" #: modules/files.c:208 modules/files.c:223 #, c-format msgid "Error writing `%s': %s" msgstr "Virhe kirjoitettaessa ”%s”: %s" #: modules/files.c:239 msgid "backup file size mismatch" msgstr "varmuuskopiotiedoston koko ei täsmää" #: modules/files.c:671 #, c-format msgid "%s value `%s': `:' not allowed" msgstr "%s arvo ”%s”: merkkiä ”:” ei sallita" #: modules/files.c:788 modules/files.c:1010 modules/files.c:1179 #, c-format msgid "couldn't read from `%s': %s" msgstr "ei voitu lukea kohteesta ”%s”: %s" #: modules/files.c:797 msgid "entry already present in file" msgstr "merkintä on jo tiedostossa" #: modules/files.c:804 modules/files.c:814 modules/files.c:825 #: modules/files.c:1234 modules/files.c:1242 modules/files.c:1250 #, c-format msgid "couldn't write to `%s': %s" msgstr "ei voitu kirjoittaa ”%s”: %s" #: modules/files.c:969 #, c-format msgid "entity object has no %s attribute" msgstr "" #: modules/files.c:1030 msgid "entry with conflicting name already present in file" msgstr "tiedostossa on jo merkintä samalla nimellä" #: modules/files.c:1698 msgid "`:' not allowed in encrypted password" msgstr "merkkiä ”:” ei sallita salatussa salasanassa" #: modules/files.c:1710 modules/ldap.c:1543 modules/ldap.c:1812 msgid "error encrypting password" msgstr "virhe salasanan kryptauksessa" #: modules/files.c:2475 modules/ldap.c:2410 #, c-format msgid "the `%s' and `%s' modules can not be combined" msgstr "\"%s\" ja \"%s\" moduuleita ei voi yhdistää" #: modules/files.c:2559 modules/files.c:2637 msgid "not executing with superuser privileges" msgstr "ei suoriteta pääkäyttäjän oikeuksilla" #: modules/files.c:2650 msgid "no shadow file present -- disabling" msgstr "varjosalasanatiedostoa ei ole – otetaan pois käytöstä" #: modules/krb5.c:100 #, c-format msgid "error connecting to the kadm5 server for service `%s' in realm `%s': %s" msgstr "" "virhe yhdistettäessä kadm5-palvelimelle palvelua ”%s” varten realmissa ”%s”: " "%s" #: modules/krb5.c:132 modules/krb5.c:198 modules/krb5.c:297 modules/krb5.c:385 #: modules/krb5.c:437 modules/krb5.c:525 modules/krb5.c:591 msgid "error initializing kerberos library" msgstr "virhe kerberos-kirjaston alustamisessa" #: modules/krb5.c:139 modules/krb5.c:219 modules/krb5.c:329 modules/krb5.c:337 #: modules/krb5.c:405 modules/krb5.c:458 modules/krb5.c:546 modules/krb5.c:608 #, c-format msgid "error parsing user name `%s' for kerberos" msgstr "virhe jäsennettäessä käyttäjänimeä ”%s” kerberokselle" #: modules/krb5.c:209 modules/krb5.c:396 modules/krb5.c:448 modules/krb5.c:536 #, c-format msgid "entity structure has no %s or %s attributes" msgstr "" #: modules/krb5.c:307 #, c-format msgid "entity has no %s or %s attributes" msgstr "" #: modules/krb5.c:320 #, c-format msgid "entity was created with no %s or %s attributes" msgstr "" #: modules/krb5.c:471 modules/krb5.c:559 #, c-format msgid "error reading information for `%s' from kerberos" msgstr "Virhe luettaessa tietoja kohteelle ”%s” kerberokselta" #: modules/krb5.c:600 #, c-format msgid "entity has no %s attribute" msgstr "" #: modules/krb5.c:638 #, c-format msgid "error setting password for `%s'" msgstr "virhe salasanan asettamisessa käyttäjälle ”%s”" #: modules/krb5.c:764 msgid "Kerberos Realm" msgstr "Kerberos Realm" #: modules/krb5.c:771 msgid "Kerberos Admin Principal" msgstr "" #: modules/krb5.c:793 msgid "Kerberos Password for Admin Principal" msgstr "" #: modules/ldap.c:199 msgid "error initializing ldap library" msgstr "virhe ldap-kirjaston alustamisessa" #: modules/ldap.c:210 #, c-format msgid "could not set LDAP protocol to version %d" msgstr "ei voitu asettaa LDAP-protokollaa versioon %d" #: modules/ldap.c:229 msgid "could not negotiate TLS with LDAP server" msgstr "ei voitu tehdä TLS-neuvottelua LDAP-palvelimen kanssa" #: modules/ldap.c:424 msgid "could not bind to LDAP server" msgstr "sitoutuminen LDAP-palvelimeen epäonnistui" #: modules/ldap.c:427 #, c-format msgid "could not bind to LDAP server, first attempt as `%s': %s" msgstr "ei voitu sitoutua LDAP-palvelimelle, ensimmäinen yritys ”%s”: %s" #: modules/ldap.c:1315 #, c-format msgid "user object had no %s attribute" msgstr "käyttäjäobjektilla ei ole attribuuttia %s" #: modules/ldap.c:1324 #, c-format msgid "user object was created with no `%s'" msgstr "käyttäjäobjekti luotiin ilman attribuuttia ”%s”" #: modules/ldap.c:1344 #, c-format msgid "error creating a LDAP directory entry: %s" msgstr "virhe LDAP-hakemistomerkinnän luomisessa: %s" #: modules/ldap.c:1370 modules/ldap.c:1604 #, c-format msgid "error modifying LDAP directory entry: %s" msgstr "virhe LDAP-hakemistomerkinnän luomisessa: %s" #: modules/ldap.c:1395 #, c-format msgid "error renaming LDAP directory entry: %s" msgstr "virhe LDAP-hakemistomerkinnän uudelleennimeämisessä: %s" #: modules/ldap.c:1440 #, c-format msgid "object had no %s attribute" msgstr "elementillä ei ollut %s-attribuuttia" #: modules/ldap.c:1456 #, c-format msgid "error removing LDAP directory entry: %s" msgstr "virhe poistettaessa LDAP-hakemistomerkintää: %s" #: modules/ldap.c:1506 modules/ldap.c:1521 modules/ldap.c:1635 #: modules/ldap.c:1730 #, c-format msgid "object has no %s attribute" msgstr "elementillä ei ole %s-attribuuttia" #: modules/ldap.c:1533 msgid "unsupported password encryption scheme" msgstr "salasanojen salausmuotoa ei tueta" #: modules/ldap.c:1658 msgid "no such object in LDAP directory" msgstr "objektia ei ole LDAP-hakemistossa" #: modules/ldap.c:1670 #, c-format msgid "no `%s' attribute found" msgstr "”%s”-attribuuttia ei löytynyt" #: modules/ldap.c:1843 #, c-format msgid "error setting password in LDAP directory for %s: %s" msgstr "virhe asetettaessa salasanaa LDAP-hakemiston kohteelle %s: %s" #: modules/ldap.c:2446 msgid "LDAP Server Name" msgstr "LDAP-palvelimen nimi" #: modules/ldap.c:2452 msgid "LDAP Search Base DN" msgstr "LDAP-haun Base DN" #: modules/ldap.c:2458 msgid "LDAP Bind DN" msgstr "LDAP Bind DN" #: modules/ldap.c:2465 msgid "LDAP Bind Password" msgstr "LDAP Bind -salasana" #: modules/ldap.c:2471 msgid "LDAP SASL User" msgstr "LDAP SASL -käyttäjä" #: modules/ldap.c:2478 msgid "LDAP SASL Authorization User" msgstr "LDAP SASL -valtuutuksen käyttäjä" #: modules/sasldb.c:132 #, c-format msgid "Cyrus SASL error creating user: %s" msgstr "Cyrus SASL -virhe käyttäjän luomisessa: %s" #: modules/sasldb.c:136 #, c-format msgid "Cyrus SASL error removing user: %s" msgstr "Cyrus SASL -virhe käyttäjän poistamisessa: %s" #: modules/sasldb.c:503 modules/sasldb.c:511 #, c-format msgid "error initializing Cyrus SASL: %s" msgstr "virhe alustettaessa Cyrus SASL: %s" #: python/admin.c:518 msgid "error creating home directory for user" msgstr "virhe kotihakemiston luomisessa käyttäjälle" #: python/admin.c:557 python/admin.c:596 msgid "error removing home directory for user" msgstr "virhe kotihakemiston poistamisessa käyttäjälle" #: python/admin.c:667 msgid "error moving home directory for user" msgstr "virhe kotihakemiston siirtämisessä käyttäjälle" #: samples/lookup.c:63 #, c-format msgid "Error initializing %s: %s\n" msgstr "Virhe alustettaessa %s:%s\n" #: samples/lookup.c:76 #, c-format msgid "Invalid ID %s\n" msgstr "Epäkelpo ID %s\n" #: samples/lookup.c:88 #, c-format msgid "Searching for group with ID %jd.\n" msgstr "Etsitään ryhmää ID:llä %jd.\n" #: samples/lookup.c:92 #, c-format msgid "Searching for group named %s.\n" msgstr "Etsitään %s-nimistä ryhmää.\n" #: samples/lookup.c:99 #, c-format msgid "Searching for user with ID %jd.\n" msgstr "Etsitään käyttäjää ID:llä %jd.\n" #: samples/lookup.c:103 #, c-format msgid "Searching for user named %s.\n" msgstr "Etsitään %s-nimistä käyttäjää.\n" #: samples/lookup.c:117 msgid "Entry not found.\n" msgstr "Merkintää ei löydy.\n" #: samples/prompt.c:48 msgid "Prompts succeeded.\n" msgstr "Kehotteet onnistuivat.\n" #: samples/prompt.c:58 msgid "Prompts failed.\n" msgstr "Kehotteet epäonnistuivat.\n" #: samples/testuser.c:76 msgid "Default user object classes:\n" msgstr "Oletuskäyttäjäobjektiluokat:\n" #: samples/testuser.c:82 msgid "Default user attribute names:\n" msgstr "Oletuskäyttäjäattribuuttien nimet:\n" #: samples/testuser.c:88 msgid "Getting default user attributes:\n" msgstr "Haetaan oletuskäyttäjäattribuutteja:\n" #: samples/testuser.c:95 msgid "Copying user structure:\n" msgstr "Kopioidaan käyttäjän rakenne:\n" #~ msgid "%s did not have a home directory.\n" #~ msgstr "%s:lla ei ollut kotikansiota.\n" #~ msgid "Error removing %s: %s.\n" #~ msgstr "Virhe poistettaessa %s:%s.\n" libuser-0.60~dfsg/libuser.pc.in0000644000175000017500000000050512226342567016501 0ustar tzafrirtzafrirprefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: libuser Description: A user and group account administration library. Version: @VERSION@ Libs: -L${libdir} -luser Libs.private: @CRYPT_LIBS@ Requires: glib-2.0 gobject-2.0 Requires.private: gmodule-no-export-2.0 Cflags: -I${includedir} libuser-0.60~dfsg/libuser.conf0000644000175000017500000000452712226342567016427 0ustar tzafrirtzafrir# See libuser.conf(5) for more information. # Do not modify the default module list if you care about unattended calls # to programs (i.e., scripts) working! [import] # Data from these files is used when libuser.conf does not define a value. # The mapping is documented in the man page. login_defs = /etc/login.defs default_useradd = /etc/default/useradd [defaults] # The default (/usr/lib*/libuser) is usually correct # moduledir = /your/custom/directory # The following variables are usually imported: # skeleton = /etc/skel # mailspooldir = /var/mail crypt_style = sha512 modules = files shadow create_modules = files shadow # modules = files shadow ldap # create_modules = ldap [userdefaults] LU_USERNAME = %n # This is better imported from /etc/login.defs: # LU_UIDNUMBER = 500 LU_GIDNUMBER = %u # LU_USERPASSWORD = !! # LU_GECOS = %n # LU_HOMEDIRECTORY = /home/%n # LU_LOGINSHELL = /bin/bash # LU_SHADOWNAME = %n # LU_SHADOWPASSWORD = !! # LU_SHADOWLASTCHANGE = %d # LU_SHADOWMIN = 0 # LU_SHADOWMAX = 99999 # LU_SHADOWWARNING = 7 # LU_SHADOWINACTIVE = -1 # LU_SHADOWEXPIRE = -1 # LU_SHADOWFLAG = -1 [groupdefaults] LU_GROUPNAME = %n # This is better imported from /etc/login.defs: # LU_GIDNUMBER = 500 # # LU_GROUPPASSWORD = !! # LU_MEMBERUID = # LU_ADMINISTRATORUID = [files] # This is useful for the case where some master files are used to # populate a different NSS mechanism which this workstation uses. # directory = /etc [shadow] # This is useful for the case where some master files are used to # populate a different NSS mechanism which this workstation uses. # directory = /etc [ldap] # Setting these is always necessary. # server = ldap # basedn = dc=example,dc=com # Setting these is rarely necessary, since it's usually correct. # userBranch = ou=People # groupBranch = ou=Group # Set only if your administrative user uses simple bind operations to # connect to the server. # binddn = cn=Manager,dc=example,dc=com # Set this only if the default user (as determined by SASL) is incorrect # for SASL bind operations. Usually, it's correct, so you'll rarely need # to set these. # user = Manager # authuser = Manager [sasl] # Set these only if your sasldb is only used by a particular application, and # in a particular domain. The default (all applications, all domains) is # probably correct for most installations. # appname = imap # domain = EXAMPLE.COM libuser-0.60~dfsg/samples/0000755000175000017500000000000012226342602015535 5ustar tzafrirtzafrirlibuser-0.60~dfsg/samples/testuser.c0000644000175000017500000000550512226342570017570 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include "../lib/user_private.h" static void dump_attribute(const char *attribute, struct lu_ent *ent) { GValueArray *array; array = lu_ent_get(ent, attribute); if (array != NULL) { size_t i; for (i = 0; i < array->n_values; i++) { GValue *value; value = g_value_array_get_nth(array, i); if (G_VALUE_HOLDS_STRING(value)) g_print("attribute %s = `%s'\n", attribute, g_value_get_string(value)); else if (G_VALUE_HOLDS_LONG(value)) g_print("attribute %s = %ld\n", attribute, g_value_get_long(value)); else if (G_VALUE_HOLDS_INT64(value)) g_print("attribute %s = %lld\n", attribute, (long long)g_value_get_int64(value)); } } } int main(void) { struct lu_context *ctx; struct lu_ent *ent, *tmp, *temp; struct lu_error *error = NULL; GList *ret; size_t i; void *control; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); control = g_malloc0(65536); ctx = lu_start(NULL, 0, NULL, NULL, lu_prompt_console, NULL, &error); if (ctx == NULL) { fprintf(stderr, gettext("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); exit(1); } g_print(gettext("Default user object classes:\n")); ret = lu_cfg_read(ctx, "userdefaults/objectclass", "bar"); for (i = 0; i < g_list_length(ret); i++) { g_print(" %s\n", (char *) g_list_nth(ret, i)->data); } g_print(gettext("Default user attribute names:\n")); ret = lu_cfg_read_keys(ctx, "userdefaults"); for (i = 0; i < g_list_length(ret); i++) { g_print(" %s\n", (char *) g_list_nth(ret, i)->data); } g_print(gettext("Getting default user attributes:\n")); ent = lu_ent_new(); lu_user_default(ctx, "newuser", FALSE, ent); lu_ent_dump(ent, stdout); dump_attribute(LU_UIDNUMBER, ent); g_print(gettext("Copying user structure:\n")); tmp = lu_ent_new(); lu_ent_copy(ent, tmp); temp = lu_ent_new(); lu_ent_copy(tmp, temp); lu_ent_dump(temp, stdout); lu_ent_free(ent); lu_ent_free(tmp); lu_ent_free(temp); lu_end(ctx); g_free(control); return 0; } libuser-0.60~dfsg/samples/prompt.c0000644000175000017500000000337212226342570017233 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include "../lib/user_private.h" int main(void) { struct lu_prompt prompts[] = { {"main/name", "Name", PACKAGE, TRUE, g_strdup("anonymous"), NULL, NULL}, {"main/password1", "Password1", PACKAGE, TRUE, g_strdup("anonymous"), NULL, NULL}, {"main/password2", "Password2", PACKAGE, FALSE, g_strdup("anonymous"), NULL, NULL}, }; struct lu_error *error = NULL; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); if (lu_prompt_console(prompts, sizeof(prompts) / sizeof(prompts[0]), NULL, &error)) { size_t i; g_print(gettext("Prompts succeeded.\n")); for (i = 0; i < sizeof(prompts) / sizeof(prompts[0]); i++) { if (prompts[i].value) { g_print("`%s'\n", prompts[i].value); prompts[i].free_value(prompts[i].value); } else { g_print("(null)\n"); } } } else { g_print(gettext("Prompts failed.\n")); } return 0; } libuser-0.60~dfsg/samples/genusers0000755000175000017500000000106212226342570017321 0ustar tzafrirtzafrir#!/bin/sh userlist() { uid=$1 max=$2 while [ "$uid" -lt "$max" ] ; do echo "joe${uid}:password${uid}:${uid}:${uid}:joe with uid ${uid}:/var/joe${uid}:/bin/bash" uid=`expr $uid + 1` echo "joe${uid}:password${uid}:${uid}:joe${uid}:joe with uid ${uid}:/var/joe${uid}:/bin/bash" uid=`expr $uid + 1` echo "joe${uid}:password${uid}:${uid}:users:joe with uid ${uid}:/var/joe${uid}:/bin/bash" uid=`expr $uid + 1` done } if [ x$1 = x ] ; then uid=50000 else uid=$1 fi if [ x$2 = x ] ; then count=50 else count=$2 fi userlist $uid `expr $uid + $count` libuser-0.60~dfsg/samples/field.c0000644000175000017500000000372412226342570016776 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include "../lib/user_private.h" int main(int argc, char **argv) { int fd; struct lu_error *error = NULL; gpointer lock; if (argc < 4) { printf("usage: %s [value]\n", strchr(argv[0], '/') ? strrchr(argv[0], '/') + 1 : argv[0]); exit(1); } fd = open(argv[1], (argc > 4) ? O_RDWR : O_RDONLY); if (fd == -1) { fprintf(stderr, "error opening `%s': %s\n", argv[1], strerror(errno)); exit(2); } if ((lock = lu_util_lock_obtain(fd, &error)) == NULL) { fprintf(stderr, "failed to lock `%s': %s\n", argv[1], lu_strerror(error)); close(fd); exit(3); } if (argc > 4) { if (!lu_util_field_write(fd, argv[2], atoi(argv[3]), argv[4], &error)) { fprintf(stderr, "failed to modify `%s': %s\n", argv[1], lu_strerror(error)); } } else { char *ret; ret = lu_util_field_read(fd, argv[2], atoi(argv[3]), &error); if (ret == NULL) { fprintf(stderr, "failed to read `%s': %s\n", argv[1], lu_strerror(error)); } printf("`%s'\n", ret); g_free(ret); } lu_util_lock_free(lock); close(fd); return 0; } libuser-0.60~dfsg/samples/lookup.c0000644000175000017500000000543512226342570017225 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include "../lib/user_private.h" int main(int argc, char **argv) { struct lu_context *lu; gboolean success, group = FALSE, byid = FALSE; int c; id_t id; struct lu_ent *ent, *tmp; struct lu_error *error = NULL; const char *modules = NULL; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); while ((c = getopt(argc, argv, "m:gn")) != -1) { switch (c) { case 'g': group = TRUE; break; case 'n': byid = TRUE; break; case 'm': modules = optarg; break; default: break; } } lu = lu_start(NULL, 0, modules, modules, lu_prompt_console, NULL, &error); if (lu == NULL) { fprintf(stderr, gettext("Error initializing %s: %s\n"), PACKAGE, lu_strerror(error)); return 1; } if (optind < argc) { intmax_t imax; char *end; errno = 0; imax = strtoimax(argv[optind], &end, 10); if (errno != 0 || *end != 0 || end == argv[optind] || (id_t)imax != imax) { fprintf(stderr, gettext("Invalid ID %s\n"), argv[optind]); return 1; } id = imax; } else id = 0; tmp = lu_ent_new(); if (group) { if (byid) { g_print(gettext("Searching for group with ID %jd.\n"), (intmax_t)id); success = lu_group_lookup_id(lu, id, tmp, &error); } else { g_print(gettext("Searching for group named %s.\n"), argv[optind]); success = lu_group_lookup_name(lu, argv[optind], tmp, &error); } } else { if (byid) { g_print(gettext ("Searching for user with ID %jd.\n"), (intmax_t)id); success = lu_user_lookup_id(lu, id, tmp, &error); } else { g_print(gettext("Searching for user named %s.\n"), argv[optind]); success = lu_user_lookup_name(lu, argv[optind], tmp, &error); } } ent = tmp; if (success) { fflush(NULL); lu_ent_dump(ent, stdout); fflush(NULL); } else { g_print(gettext("Entry not found.\n")); } lu_ent_free(ent); lu_end(lu); return 0; } libuser-0.60~dfsg/samples/enum.c0000644000175000017500000000471612226342570016661 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include "../lib/user.h" int main(int argc, char **argv) { struct lu_context *lu; struct lu_error *error = NULL; gboolean group = FALSE, full = FALSE; int c; size_t i; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); while ((c = getopt(argc, argv, "fg")) != -1) { switch (c) { case 'f': full = TRUE; break; case 'g': group = TRUE; break; default: break; } } lu = lu_start(NULL, 0, NULL, NULL, lu_prompt_console, NULL, &error); if (lu == NULL) { fprintf(stderr, gettext("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } if (full == FALSE) { GValueArray *names; if (group == FALSE) { names = lu_users_enumerate(lu, argv[optind], &error); } else { names = lu_groups_enumerate(lu, argv[optind], &error); } for (i = 0; (names != NULL) && (i < names->n_values); i++) { GValue *name; name = g_value_array_get_nth(names, i); g_print(" Found %s named `%s'.\n", group ? "group" : "user", g_value_get_string(name)); } if (names != NULL) { g_value_array_free(names); } } else { GPtrArray *accounts; if (group == FALSE) { accounts = lu_users_enumerate_full(lu, argv[optind], &error); } else { accounts = lu_groups_enumerate_full(lu, argv[optind], &error); } for (i = 0; (accounts != NULL) && (i < accounts->len); i++) { struct lu_ent *ent; ent = g_ptr_array_index(accounts, i); g_print("Found account:\n"); lu_ent_dump(ent, stdout); lu_ent_free(ent); } if (accounts != NULL) { g_ptr_array_free(accounts, TRUE); } } lu_end(lu); return 0; } libuser-0.60~dfsg/samples/homedir.c0000644000175000017500000000421612226342570017337 0ustar tzafrirtzafrir/* * Copyright (C) 2001,2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include "../apps/apputil.h" int main(int argc, char **argv) { struct lu_error *error = NULL; int add = 0, mod = 0, rem = 0, c; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); while ((c = getopt(argc, argv, "arm")) != -1) { switch (c) { case 'a': add = 1; break; case 'r': rem = 1; break; case 'm': mod = 1; default: break; } } if (add) { struct lu_context *ctx; struct lu_error *error; error = NULL; ctx = lu_start(NULL, 0, NULL, NULL, lu_prompt_console, NULL, &error); if (ctx == NULL) { fprintf(stderr, gettext("Error initializing %s: %s\n"), PACKAGE, lu_strerror(error)); return 1; } if (!lu_homedir_populate(ctx, "/etc/skel", argv[optind], 500, 500, 0700, &error)) { fprintf(stderr, "populate_homedir(%s) failed: %s\n", argv[optind], lu_strerror(error)); return 1; } lu_end(ctx); } if (mod && !lu_homedir_move(argv[optind], argv[optind + 1], &error)) { fprintf(stderr, "move_homedir(%s, %s) failed: %s\n", argv[optind], argv[optind + 1], lu_strerror(error)); return 1; } if (rem && !lu_homedir_remove(argv[optind], &error)) { fprintf(stderr, "remove_homedir(%s) failed: %s\n", argv[optind], lu_strerror(error)); return 1; } return 0; } libuser-0.60~dfsg/Makefile.in0000644000175000017500000044721212226342575016161 0ustar tzafrirtzafrir# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @LDAP_TRUE@am__append_1 = tests/default_pw_test tests/ldap_test bin_PROGRAMS = apps/lchfn$(EXEEXT) apps/lchsh$(EXEEXT) sbin_PROGRAMS = apps/lchage$(EXEEXT) apps/lgroupadd$(EXEEXT) \ apps/lgroupdel$(EXEEXT) apps/lgroupmod$(EXEEXT) \ apps/lid$(EXEEXT) apps/lnewusers$(EXEEXT) \ apps/lpasswd$(EXEEXT) apps/luseradd$(EXEEXT) \ apps/luserdel$(EXEEXT) apps/lusermod$(EXEEXT) noinst_PROGRAMS = samples/enum$(EXEEXT) samples/field$(EXEEXT) \ samples/homedir$(EXEEXT) samples/lookup$(EXEEXT) \ samples/prompt$(EXEEXT) samples/testuser$(EXEEXT) \ tests/config_test$(EXEEXT) check_PROGRAMS = tests/alloc_port$(EXEEXT) \ tests/wait_for_slapd_exit$(EXEEXT) \ tests/wait_for_slapd_start$(EXEEXT) @KRB5_TRUE@am__append_2 = modules/libuser_krb5.la @LDAP_TRUE@am__append_3 = modules/libuser_ldap.la @SASL_TRUE@am__append_4 = modules/libuser_sasldb.la subdir = . DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \ $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) \ $(srcdir)/config.h.in $(srcdir)/libuser.pc.in ABOUT-NLS \ lib/getdate.c $(dist_noinst_SCRIPTS) \ $(top_srcdir)/admin/depcomp $(top_srcdir)/admin/ylwrap \ $(dist_man_MANS) $(dist_sysconf_DATA) $(noinst_HEADERS) \ $(pkginclude_HEADERS) $(top_srcdir)/admin/test-driver COPYING \ TODO admin/ar-lib admin/compile admin/config.guess \ admin/config.rpath admin/config.sub admin/depcomp \ admin/install-sh admin/missing admin/ylwrap admin/ltmain.sh \ $(top_srcdir)/admin/ar-lib $(top_srcdir)/admin/compile \ $(top_srcdir)/admin/config.guess \ $(top_srcdir)/admin/config.rpath \ $(top_srcdir)/admin/config.sub $(top_srcdir)/admin/install-sh \ $(top_srcdir)/admin/ltmain.sh $(top_srcdir)/admin/missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = libuser.pc CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkglibdir)" \ "$(DESTDIR)$(pyexecdir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man1dir)" \ "$(DESTDIR)$(sysconfdir)" "$(DESTDIR)$(pkgconfigdir)" \ "$(DESTDIR)$(pkgincludedir)" LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES) \ $(pkglib_LTLIBRARIES) $(pyexec_LTLIBRARIES) apps_libapputil_la_LIBADD = am__dirstamp = $(am__leading_dot)dirstamp am_apps_libapputil_la_OBJECTS = apps/apps_libapputil_la-apputil.lo apps_libapputil_la_OBJECTS = $(am_apps_libapputil_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = apps_libapputil_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(apps_libapputil_la_LDFLAGS) \ $(LDFLAGS) -o $@ am__DEPENDENCIES_1 = lib_libuser_la_DEPENDENCIES = $(am__DEPENDENCIES_1) am_lib_libuser_la_OBJECTS = lib/lib_libuser_la-common.lo \ lib/lib_libuser_la-config.lo lib/lib_libuser_la-entity.lo \ lib/lib_libuser_la-error.lo lib/lib_libuser_la-fs.lo \ lib/lib_libuser_la-getdate.lo lib/lib_libuser_la-misc.lo \ lib/lib_libuser_la-modules.lo lib/lib_libuser_la-prompt.lo \ lib/lib_libuser_la-scache.lo lib/lib_libuser_la-user.lo \ lib/lib_libuser_la-util.lo lib_libuser_la_OBJECTS = $(am_lib_libuser_la_OBJECTS) lib_libuser_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(lib_libuser_la_LDFLAGS) $(LDFLAGS) -o \ $@ modules_libuser_files_la_DEPENDENCIES = lib/libuser.la am_modules_libuser_files_la_OBJECTS = modules/files.lo modules_libuser_files_la_OBJECTS = \ $(am_modules_libuser_files_la_OBJECTS) modules_libuser_files_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(modules_libuser_files_la_LDFLAGS) \ $(LDFLAGS) -o $@ modules_libuser_krb5_la_DEPENDENCIES = lib/libuser.la am_modules_libuser_krb5_la_OBJECTS = modules/krb5.lo modules_libuser_krb5_la_OBJECTS = \ $(am_modules_libuser_krb5_la_OBJECTS) modules_libuser_krb5_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(modules_libuser_krb5_la_LDFLAGS) \ $(LDFLAGS) -o $@ @KRB5_TRUE@am_modules_libuser_krb5_la_rpath = -rpath $(pkglibdir) modules_libuser_ldap_la_DEPENDENCIES = lib/libuser.la am_modules_libuser_ldap_la_OBJECTS = modules/ldap.lo modules_libuser_ldap_la_OBJECTS = \ $(am_modules_libuser_ldap_la_OBJECTS) modules_libuser_ldap_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(modules_libuser_ldap_la_LDFLAGS) \ $(LDFLAGS) -o $@ @LDAP_TRUE@am_modules_libuser_ldap_la_rpath = -rpath $(pkglibdir) modules_libuser_sasldb_la_DEPENDENCIES = lib/libuser.la am_modules_libuser_sasldb_la_OBJECTS = modules/sasldb.lo modules_libuser_sasldb_la_OBJECTS = \ $(am_modules_libuser_sasldb_la_OBJECTS) modules_libuser_sasldb_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(modules_libuser_sasldb_la_LDFLAGS) \ $(LDFLAGS) -o $@ @SASL_TRUE@am_modules_libuser_sasldb_la_rpath = -rpath $(pkglibdir) modules_libuser_shadow_la_DEPENDENCIES = lib/libuser.la am_modules_libuser_shadow_la_OBJECTS = modules/files.lo modules_libuser_shadow_la_OBJECTS = \ $(am_modules_libuser_shadow_la_OBJECTS) modules_libuser_shadow_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(modules_libuser_shadow_la_LDFLAGS) \ $(LDFLAGS) -o $@ python_libusermodule_la_DEPENDENCIES = lib/libuser.la am_python_libusermodule_la_OBJECTS = \ python/python_libusermodule_la-libusermodule.lo python_libusermodule_la_OBJECTS = \ $(am_python_libusermodule_la_OBJECTS) python_libusermodule_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(python_libusermodule_la_LDFLAGS) \ $(LDFLAGS) -o $@ @WITH_PYTHON_TRUE@am_python_libusermodule_la_rpath = -rpath \ @WITH_PYTHON_TRUE@ $(pyexecdir) PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) $(sbin_PROGRAMS) apps_lchage_SOURCES = apps/lchage.c apps_lchage_OBJECTS = apps/apps_lchage-lchage.$(OBJEXT) apps_lchage_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) apps_lchage_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(apps_lchage_LDFLAGS) $(LDFLAGS) -o $@ apps_lchfn_SOURCES = apps/lchfn.c apps_lchfn_OBJECTS = apps/apps_lchfn-lchfn.$(OBJEXT) apps_lchfn_DEPENDENCIES = apps/libapputil.la lib/libuser.la \ $(am__DEPENDENCIES_1) apps_lchfn_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(apps_lchfn_LDFLAGS) $(LDFLAGS) -o $@ apps_lchsh_SOURCES = apps/lchsh.c apps_lchsh_OBJECTS = apps/apps_lchsh-lchsh.$(OBJEXT) apps_lchsh_DEPENDENCIES = apps/libapputil.la lib/libuser.la \ $(am__DEPENDENCIES_1) apps_lchsh_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(apps_lchsh_LDFLAGS) $(LDFLAGS) -o $@ apps_lgroupadd_SOURCES = apps/lgroupadd.c apps_lgroupadd_OBJECTS = apps/apps_lgroupadd-lgroupadd.$(OBJEXT) apps_lgroupadd_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) apps_lgroupadd_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(apps_lgroupadd_LDFLAGS) $(LDFLAGS) -o \ $@ apps_lgroupdel_SOURCES = apps/lgroupdel.c apps_lgroupdel_OBJECTS = apps/apps_lgroupdel-lgroupdel.$(OBJEXT) apps_lgroupdel_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) apps_lgroupdel_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(apps_lgroupdel_LDFLAGS) $(LDFLAGS) -o \ $@ apps_lgroupmod_SOURCES = apps/lgroupmod.c apps_lgroupmod_OBJECTS = apps/apps_lgroupmod-lgroupmod.$(OBJEXT) apps_lgroupmod_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) apps_lgroupmod_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(apps_lgroupmod_LDFLAGS) $(LDFLAGS) -o \ $@ apps_lid_SOURCES = apps/lid.c apps_lid_OBJECTS = apps/apps_lid-lid.$(OBJEXT) apps_lid_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) apps_lid_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(apps_lid_LDFLAGS) $(LDFLAGS) -o $@ apps_lnewusers_SOURCES = apps/lnewusers.c apps_lnewusers_OBJECTS = apps/apps_lnewusers-lnewusers.$(OBJEXT) apps_lnewusers_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) apps_lnewusers_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(apps_lnewusers_LDFLAGS) $(LDFLAGS) -o \ $@ apps_lpasswd_SOURCES = apps/lpasswd.c apps_lpasswd_OBJECTS = apps/apps_lpasswd-lpasswd.$(OBJEXT) apps_lpasswd_DEPENDENCIES = apps/libapputil.la lib/libuser.la \ $(am__DEPENDENCIES_1) apps_lpasswd_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(apps_lpasswd_LDFLAGS) $(LDFLAGS) -o $@ apps_luseradd_SOURCES = apps/luseradd.c apps_luseradd_OBJECTS = apps/apps_luseradd-luseradd.$(OBJEXT) apps_luseradd_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) apps_luseradd_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(apps_luseradd_LDFLAGS) $(LDFLAGS) -o $@ apps_luserdel_SOURCES = apps/luserdel.c apps_luserdel_OBJECTS = apps/apps_luserdel-luserdel.$(OBJEXT) apps_luserdel_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) apps_luserdel_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(apps_luserdel_LDFLAGS) $(LDFLAGS) -o $@ apps_lusermod_SOURCES = apps/lusermod.c apps_lusermod_OBJECTS = apps/apps_lusermod-lusermod.$(OBJEXT) apps_lusermod_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) apps_lusermod_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(apps_lusermod_LDFLAGS) $(LDFLAGS) -o $@ samples_enum_SOURCES = samples/enum.c samples_enum_OBJECTS = samples/samples_enum-enum.$(OBJEXT) samples_enum_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) samples_enum_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(samples_enum_LDFLAGS) $(LDFLAGS) -o $@ samples_field_SOURCES = samples/field.c samples_field_OBJECTS = samples/field.$(OBJEXT) samples_field_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) samples_field_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(samples_field_LDFLAGS) $(LDFLAGS) -o $@ samples_homedir_SOURCES = samples/homedir.c samples_homedir_OBJECTS = samples/samples_homedir-homedir.$(OBJEXT) samples_homedir_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) samples_homedir_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(samples_homedir_LDFLAGS) $(LDFLAGS) \ -o $@ samples_lookup_SOURCES = samples/lookup.c samples_lookup_OBJECTS = samples/samples_lookup-lookup.$(OBJEXT) samples_lookup_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) samples_lookup_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(samples_lookup_LDFLAGS) $(LDFLAGS) -o \ $@ samples_prompt_SOURCES = samples/prompt.c samples_prompt_OBJECTS = samples/samples_prompt-prompt.$(OBJEXT) samples_prompt_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) samples_prompt_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(samples_prompt_LDFLAGS) $(LDFLAGS) -o \ $@ samples_testuser_SOURCES = samples/testuser.c samples_testuser_OBJECTS = \ samples/samples_testuser-testuser.$(OBJEXT) samples_testuser_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) samples_testuser_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(samples_testuser_LDFLAGS) $(LDFLAGS) \ -o $@ tests_alloc_port_SOURCES = tests/alloc_port.c tests_alloc_port_OBJECTS = tests/alloc_port.$(OBJEXT) tests_alloc_port_LDADD = $(LDADD) tests_alloc_port_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(tests_alloc_port_LDFLAGS) $(LDFLAGS) \ -o $@ tests_config_test_SOURCES = tests/config_test.c tests_config_test_OBJECTS = tests/config_test.$(OBJEXT) tests_config_test_DEPENDENCIES = lib/libuser.la $(am__DEPENDENCIES_1) tests_config_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(tests_config_test_LDFLAGS) $(LDFLAGS) \ -o $@ tests_wait_for_slapd_exit_SOURCES = tests/wait_for_slapd_exit.c tests_wait_for_slapd_exit_OBJECTS = \ tests/wait_for_slapd_exit.$(OBJEXT) tests_wait_for_slapd_exit_LDADD = $(LDADD) tests_wait_for_slapd_exit_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(tests_wait_for_slapd_exit_LDFLAGS) \ $(LDFLAGS) -o $@ tests_wait_for_slapd_start_SOURCES = tests/wait_for_slapd_start.c tests_wait_for_slapd_start_OBJECTS = \ tests/wait_for_slapd_start.$(OBJEXT) tests_wait_for_slapd_start_LDADD = $(LDADD) tests_wait_for_slapd_start_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(tests_wait_for_slapd_start_LDFLAGS) \ $(LDFLAGS) -o $@ SCRIPTS = $(dist_noinst_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/admin/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = am__yacc_c2h = sed -e s/cc$$/hh/ -e s/cpp$$/hpp/ -e s/cxx$$/hxx/ \ -e s/c++$$/h++/ -e s/c$$/h/ YACCCOMPILE = $(YACC) $(AM_YFLAGS) $(YFLAGS) LTYACCCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(YACC) $(AM_YFLAGS) $(YFLAGS) AM_V_YACC = $(am__v_YACC_@AM_V@) am__v_YACC_ = $(am__v_YACC_@AM_DEFAULT_V@) am__v_YACC_0 = @echo " YACC " $@; am__v_YACC_1 = YLWRAP = $(top_srcdir)/admin/ylwrap SOURCES = $(apps_libapputil_la_SOURCES) $(lib_libuser_la_SOURCES) \ $(modules_libuser_files_la_SOURCES) \ $(modules_libuser_krb5_la_SOURCES) \ $(modules_libuser_ldap_la_SOURCES) \ $(modules_libuser_sasldb_la_SOURCES) \ $(modules_libuser_shadow_la_SOURCES) \ $(python_libusermodule_la_SOURCES) apps/lchage.c apps/lchfn.c \ apps/lchsh.c apps/lgroupadd.c apps/lgroupdel.c \ apps/lgroupmod.c apps/lid.c apps/lnewusers.c apps/lpasswd.c \ apps/luseradd.c apps/luserdel.c apps/lusermod.c samples/enum.c \ samples/field.c samples/homedir.c samples/lookup.c \ samples/prompt.c samples/testuser.c tests/alloc_port.c \ tests/config_test.c tests/wait_for_slapd_exit.c \ tests/wait_for_slapd_start.c DIST_SOURCES = $(apps_libapputil_la_SOURCES) $(lib_libuser_la_SOURCES) \ $(modules_libuser_files_la_SOURCES) \ $(modules_libuser_krb5_la_SOURCES) \ $(modules_libuser_ldap_la_SOURCES) \ $(modules_libuser_sasldb_la_SOURCES) \ $(modules_libuser_shadow_la_SOURCES) \ $(python_libusermodule_la_SOURCES) apps/lchage.c apps/lchfn.c \ apps/lchsh.c apps/lgroupadd.c apps/lgroupdel.c \ apps/lgroupmod.c apps/lid.c apps/lnewusers.c apps/lpasswd.c \ apps/luseradd.c apps/luserdel.c apps/lusermod.c samples/enum.c \ samples/field.c samples/homedir.c samples/lookup.c \ samples/prompt.c samples/testuser.c tests/alloc_port.c \ tests/config_test.c tests/wait_for_slapd_exit.c \ tests/wait_for_slapd_start.c RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac man1dir = $(mandir)/man1 NROFF = nroff MANS = $(dist_man_MANS) DATA = $(dist_sysconf_DATA) $(pkgconfig_DATA) HEADERS = $(noinst_HEADERS) $(pkginclude_HEADERS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope check recheck distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope am__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". am__list_recheck_tests = $(AWK) '{ \ recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ { \ if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ { \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ { \ break; \ } \ }; \ if (recheck) \ print $$0; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ function fatal(msg) \ { \ print "fatal: making $@: " msg | "cat >&2"; \ exit 1; \ } \ function rst_section(header) \ { \ print header; \ len = length(header); \ for (i = 1; i <= len; i = i + 1) \ printf "="; \ printf "\n\n"; \ } \ { \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".trs"); \ if (line ~ /$(am__global_test_result_rx)/) \ { \ sub("$(am__global_test_result_rx)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ copy_in_global_log = 0; \ }; \ if (copy_in_global_log) \ { \ rst_section(global_test_result ": " $$0); \ while ((rc = (getline line < ($$0 ".log"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ printf "\n"; \ }; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # Restructured Text title. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } # Solaris 10 'make', and several other traditional 'make' implementations, # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it # by disabling -e (using the XSI extension "set +e") if it's set. am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the # directory for the log if needed. Stores in $dir the directory # containing $f, in $tst the test, in $log the log. Executes the # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and # passes TESTS_ENVIRONMENT. Set up options for the wrapper that # will run the test scripts (or their associated LOG_COMPILER, if # thy have one). am__check_pre = \ $(am__sh_e_setup); \ $(am__vpath_adj_setup) $(am__vpath_adj) \ $(am__tty_colors); \ srcdir=$(srcdir); export srcdir; \ case "$@" in \ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ *) am__odir=.;; \ esac; \ test "x$$am__odir" = x"." || test -d "$$am__odir" \ || $(MKDIR_P) "$$am__odir" || exit $$?; \ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ am__enable_hard_errors=yes; \ fi; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ am__expect_failure=yes;; \ *) \ am__expect_failure=no;; \ esac; \ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) # A shell command to get the names of the tests scripts with any registered # extension removed (i.e., equivalently, the names of the test logs, with # the '.log' extension removed). The result is saved in the shell variable # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", # since that might cause problem with VPATH rewrites for suffix-less tests. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. am__set_TESTS_bases = \ bases='$(TEST_LOGS)'; \ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ bases=`echo $$bases` RECHECK_LOGS = $(TEST_LOGS) TEST_SUITE_LOG = test-suite.log TEST_EXTENSIONS = @EXEEXT@ .test LOG_DRIVER = $(SHELL) $(top_srcdir)/admin/test-driver LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) am__set_b = \ case '$@' in \ */*) \ case '$*' in \ */*) b='$*';; \ *) b=`echo '$@' | sed 's/\.log$$//'`; \ esac;; \ *) \ b='$*';; \ esac am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) TEST_LOGS = $(am__test_logs2:.test.log=.log) TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/admin/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" GZIP_ENV = --best DIST_ARCHIVES = $(distdir).tar.xz DIST_TARGETS = dist-xz distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CRYPT_LIBS = @CRYPT_LIBS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GOBJECT_CFLAGS = @GOBJECT_CFLAGS@ GOBJECT_LIBS = @GOBJECT_LIBS@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ GTKDOC_MKPDF = @GTKDOC_MKPDF@ GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ NSCD = @NSCD@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SELINUX_LIBS = @SELINUX_LIBS@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ YACC = @YACC@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ pkgconfigdir = $(libdir)/pkgconfig ACLOCAL_AMFLAGS = -I m4 AM_DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --with-ldap HGTAG = 'libuser-$(VERSION)' AM_CPPFLAGS = $(GOBJECT_CFLAGS) LOCALEDIR_CPPFLAGS = -DLOCALEDIR='"$(localedir)"' PYTHON_CPPFLAGS = -I/usr/include/python$(PYTHON_VERSION) # Ignore possibly lost, there are too many due to Python. --gen-suppressions # makes the run interactive, which is not good for regression testing - we # are not there yet. VG_EXECUTION = libtool --mode=execute \ valgrind --quiet --suppressions=$(srcdir)/tests/valgrind.supp \ --leak-check=full --num-callers=20 --log-fd=3 \ --gen-suppressions=yes --show-possibly-lost=no VG_ENVIRONMENT = G_SLICE=always-malloc \ G_DEBUG=gc-friendly,resident-modules SUBDIRS = po docs TESTS = tests/config_test.sh tests/fs_test tests/files_test \ tests/pwhash_test tests/utils_test $(am__append_1) EXTRA_DIST = \ $(EXTRA_MANS) \ python/modules.txt \ samples/genusers \ tests/config.conf.in tests/config_default_useradd \ tests/config_import.conf.in tests/config_import2.conf.in \ tests/config_login.defs tests/config_login2.defs \ tests/config_override.conf.in tests/config_test.py \ tests/config_test.sh \ tests/default_pw.conf.in tests/default_pw_test tests/default_pw_test.py \ tests/files.conf.in tests/files_test tests/files_test.py \ tests/fs.conf.in tests/fs_test tests/fs_test.py \ tests/ldap.conf.in tests/ldaprc tests/ldap_skel.ldif tests/ldap_test \ tests/ldap_test.py \ tests/pwhash.conf.in tests/pwhash.py tests/pwhash_test \ tests/slapd.conf.in \ tests/utils.conf.in tests/utils_group tests/utils_gshadow \ tests/utils_passwd tests/utils_shadow tests/utils_test \ tests/valgrind.supp noinst_LTLIBRARIES = apps/libapputil.la lib_LTLIBRARIES = lib/libuser.la pkglib_LTLIBRARIES = modules/libuser_files.la \ modules/libuser_shadow.la $(am__append_2) $(am__append_3) \ $(am__append_4) @WITH_PYTHON_TRUE@pyexec_LTLIBRARIES = python/libusermodule.la dist_man_MANS = apps/lgroupadd.1 apps/lgroupdel.1 apps/lgroupmod.1 \ apps/lchage.1 apps/lchfn.1 apps/lchsh.1 apps/lid.1 apps/lnewusers.1 \ apps/lpasswd.1 apps/luseradd.1 apps/luserdel.1 apps/lusermod.1 pkgconfig_DATA = $(PACKAGE).pc dist_sysconf_DATA = libuser.conf pkginclude_HEADERS = lib/config.h lib/entity.h lib/error.h lib/fs.h \ lib/prompt.h lib/user.h lib/user_private.h dist_noinst_SCRIPTS = python/ldap-script python/test-script noinst_HEADERS = python/admin.c python/ent.c python/misc.c apps_libapputil_la_CPPFLAGS = $(AM_CPPFLAGS) apps_libapputil_la_SOURCES = apps/apputil.c apps/apputil.h apps_libapputil_la_LDFLAGS = $(GOBJECT_LIBS) -lpam -lpam_misc $(SELINUX_LIBS) apps_lchage_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lchage_LDADD = lib/libuser.la $(LTLIBINTL) apps_lchage_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lchfn_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lchfn_LDADD = apps/libapputil.la lib/libuser.la $(LTLIBINTL) apps_lchfn_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lchsh_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lchsh_LDADD = apps/libapputil.la lib/libuser.la $(LTLIBINTL) apps_lchsh_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lgroupadd_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lgroupadd_LDADD = lib/libuser.la $(LTLIBINTL) apps_lgroupadd_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lgroupdel_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lgroupdel_LDADD = lib/libuser.la $(LTLIBINTL) apps_lgroupdel_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lgroupmod_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lgroupmod_LDADD = lib/libuser.la $(LTLIBINTL) apps_lgroupmod_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lid_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lid_LDADD = lib/libuser.la $(LTLIBINTL) apps_lid_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lnewusers_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lnewusers_LDADD = lib/libuser.la $(LTLIBINTL) apps_lnewusers_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lpasswd_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lpasswd_LDADD = apps/libapputil.la lib/libuser.la $(LTLIBINTL) apps_lpasswd_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_luseradd_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_luseradd_LDADD = lib/libuser.la $(LTLIBINTL) apps_luseradd_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_luserdel_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_luserdel_LDADD = lib/libuser.la $(LTLIBINTL) apps_luserdel_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lusermod_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lusermod_LDADD = lib/libuser.la $(LTLIBINTL) apps_lusermod_LDFLAGS = $(GMODULE_LIBS) -lpopt lib_libuser_la_SOURCES = lib/common.c lib/config.c lib/entity.c lib/error.c \ lib/fs.c lib/getdate.y lib/internal.h lib/misc.c lib/modules.c \ lib/prompt.c lib/scache.c lib/user.c lib/util.c # -Ilib so that "../config.h" is the result of configure lib_libuser_la_CPPFLAGS = $(GMODULE_CFLAGS) -Ilib $(LOCALEDIR_CPPFLAGS) \ -DMODULEDIR='"$(pkglibdir)"' -DNSCD='"$(NSCD)"' \ -DSYSCONFDIR='"$(sysconfdir)"' lib_libuser_la_LDFLAGS = $(GMODULE_LIBS) $(CRYPT_LIBS) $(SELINUX_LIBS) \ -version-info 6:0:5 lib_libuser_la_LIBADD = $(LTLIBINTL) modules_libuser_files_la_SOURCES = modules/files.c modules_libuser_files_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) modules_libuser_files_la_LIBADD = lib/libuser.la modules_libuser_shadow_la_SOURCES = modules/files.c modules_libuser_shadow_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) modules_libuser_shadow_la_LIBADD = lib/libuser.la modules_libuser_krb5_la_SOURCES = modules/krb5.c modules_libuser_krb5_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) modules_libuser_krb5_la_LIBADD = lib/libuser.la modules_libuser_ldap_la_SOURCES = modules/ldap.c modules_libuser_ldap_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) -lldap modules_libuser_ldap_la_LIBADD = lib/libuser.la modules_libuser_sasldb_la_SOURCES = modules/sasldb.c modules_libuser_sasldb_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) \ -lsasl2 modules_libuser_sasldb_la_LIBADD = lib/libuser.la python_libusermodule_la_SOURCES = python/libusermodule.c python/common.h \ python/debug.h python_libusermodule_la_CPPFLAGS = $(AM_CPPFLAGS) $(PYTHON_CPPFLAGS) python_libusermodule_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) python_libusermodule_la_LIBADD = lib/libuser.la samples_enum_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_enum_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_enum_LDFLAGS = -no-install samples_field_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_field_LDFLAGS = -no-install samples_homedir_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_homedir_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_homedir_LDFLAGS = -no-install samples_lookup_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_lookup_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_lookup_LDFLAGS = -no-install samples_prompt_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_prompt_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_prompt_LDFLAGS = -no-install samples_testuser_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_testuser_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_testuser_LDFLAGS = -no-install tests_alloc_port_LDFLAGS = -no-install tests_config_test_LDADD = lib/libuser.la $(GMODULE_LIBS) tests_config_test_LDFLAGS = -no-install tests_wait_for_slapd_exit_LDFLAGS = -no-install tests_wait_for_slapd_start_LDFLAGS = -no-install all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs .y am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then rm -f stamp-h1; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 libuser.pc: $(top_builddir)/config.status $(srcdir)/libuser.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \ } uninstall-pkglibLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \ done clean-pkglibLTLIBRARIES: -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES) @list='$(pkglib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } install-pyexecLTLIBRARIES: $(pyexec_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(pyexec_LTLIBRARIES)'; test -n "$(pyexecdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(pyexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pyexecdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pyexecdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pyexecdir)"; \ } uninstall-pyexecLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(pyexec_LTLIBRARIES)'; test -n "$(pyexecdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pyexecdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pyexecdir)/$$f"; \ done clean-pyexecLTLIBRARIES: -test -z "$(pyexec_LTLIBRARIES)" || rm -f $(pyexec_LTLIBRARIES) @list='$(pyexec_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } apps/$(am__dirstamp): @$(MKDIR_P) apps @: > apps/$(am__dirstamp) apps/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) apps/$(DEPDIR) @: > apps/$(DEPDIR)/$(am__dirstamp) apps/apps_libapputil_la-apputil.lo: apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/libapputil.la: $(apps_libapputil_la_OBJECTS) $(apps_libapputil_la_DEPENDENCIES) $(EXTRA_apps_libapputil_la_DEPENDENCIES) apps/$(am__dirstamp) $(AM_V_CCLD)$(apps_libapputil_la_LINK) $(apps_libapputil_la_OBJECTS) $(apps_libapputil_la_LIBADD) $(LIBS) lib/$(am__dirstamp): @$(MKDIR_P) lib @: > lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) lib/$(DEPDIR) @: > lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-common.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-config.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-entity.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-error.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-fs.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-getdate.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-misc.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-modules.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-prompt.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-scache.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-user.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/lib_libuser_la-util.lo: lib/$(am__dirstamp) \ lib/$(DEPDIR)/$(am__dirstamp) lib/libuser.la: $(lib_libuser_la_OBJECTS) $(lib_libuser_la_DEPENDENCIES) $(EXTRA_lib_libuser_la_DEPENDENCIES) lib/$(am__dirstamp) $(AM_V_CCLD)$(lib_libuser_la_LINK) -rpath $(libdir) $(lib_libuser_la_OBJECTS) $(lib_libuser_la_LIBADD) $(LIBS) modules/$(am__dirstamp): @$(MKDIR_P) modules @: > modules/$(am__dirstamp) modules/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) modules/$(DEPDIR) @: > modules/$(DEPDIR)/$(am__dirstamp) modules/files.lo: modules/$(am__dirstamp) \ modules/$(DEPDIR)/$(am__dirstamp) modules/libuser_files.la: $(modules_libuser_files_la_OBJECTS) $(modules_libuser_files_la_DEPENDENCIES) $(EXTRA_modules_libuser_files_la_DEPENDENCIES) modules/$(am__dirstamp) $(AM_V_CCLD)$(modules_libuser_files_la_LINK) -rpath $(pkglibdir) $(modules_libuser_files_la_OBJECTS) $(modules_libuser_files_la_LIBADD) $(LIBS) modules/krb5.lo: modules/$(am__dirstamp) \ modules/$(DEPDIR)/$(am__dirstamp) modules/libuser_krb5.la: $(modules_libuser_krb5_la_OBJECTS) $(modules_libuser_krb5_la_DEPENDENCIES) $(EXTRA_modules_libuser_krb5_la_DEPENDENCIES) modules/$(am__dirstamp) $(AM_V_CCLD)$(modules_libuser_krb5_la_LINK) $(am_modules_libuser_krb5_la_rpath) $(modules_libuser_krb5_la_OBJECTS) $(modules_libuser_krb5_la_LIBADD) $(LIBS) modules/ldap.lo: modules/$(am__dirstamp) \ modules/$(DEPDIR)/$(am__dirstamp) modules/libuser_ldap.la: $(modules_libuser_ldap_la_OBJECTS) $(modules_libuser_ldap_la_DEPENDENCIES) $(EXTRA_modules_libuser_ldap_la_DEPENDENCIES) modules/$(am__dirstamp) $(AM_V_CCLD)$(modules_libuser_ldap_la_LINK) $(am_modules_libuser_ldap_la_rpath) $(modules_libuser_ldap_la_OBJECTS) $(modules_libuser_ldap_la_LIBADD) $(LIBS) modules/sasldb.lo: modules/$(am__dirstamp) \ modules/$(DEPDIR)/$(am__dirstamp) modules/libuser_sasldb.la: $(modules_libuser_sasldb_la_OBJECTS) $(modules_libuser_sasldb_la_DEPENDENCIES) $(EXTRA_modules_libuser_sasldb_la_DEPENDENCIES) modules/$(am__dirstamp) $(AM_V_CCLD)$(modules_libuser_sasldb_la_LINK) $(am_modules_libuser_sasldb_la_rpath) $(modules_libuser_sasldb_la_OBJECTS) $(modules_libuser_sasldb_la_LIBADD) $(LIBS) modules/libuser_shadow.la: $(modules_libuser_shadow_la_OBJECTS) $(modules_libuser_shadow_la_DEPENDENCIES) $(EXTRA_modules_libuser_shadow_la_DEPENDENCIES) modules/$(am__dirstamp) $(AM_V_CCLD)$(modules_libuser_shadow_la_LINK) -rpath $(pkglibdir) $(modules_libuser_shadow_la_OBJECTS) $(modules_libuser_shadow_la_LIBADD) $(LIBS) python/$(am__dirstamp): @$(MKDIR_P) python @: > python/$(am__dirstamp) python/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) python/$(DEPDIR) @: > python/$(DEPDIR)/$(am__dirstamp) python/python_libusermodule_la-libusermodule.lo: \ python/$(am__dirstamp) python/$(DEPDIR)/$(am__dirstamp) python/libusermodule.la: $(python_libusermodule_la_OBJECTS) $(python_libusermodule_la_DEPENDENCIES) $(EXTRA_python_libusermodule_la_DEPENDENCIES) python/$(am__dirstamp) $(AM_V_CCLD)$(python_libusermodule_la_LINK) $(am_python_libusermodule_la_rpath) $(python_libusermodule_la_OBJECTS) $(python_libusermodule_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list clean-noinstPROGRAMS: @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list install-sbinPROGRAMS: $(sbin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \ } \ ; done uninstall-sbinPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(sbindir)" && rm -f $$files clean-sbinPROGRAMS: @list='$(sbin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list apps/apps_lchage-lchage.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lchage$(EXEEXT): $(apps_lchage_OBJECTS) $(apps_lchage_DEPENDENCIES) $(EXTRA_apps_lchage_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lchage$(EXEEXT) $(AM_V_CCLD)$(apps_lchage_LINK) $(apps_lchage_OBJECTS) $(apps_lchage_LDADD) $(LIBS) apps/apps_lchfn-lchfn.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lchfn$(EXEEXT): $(apps_lchfn_OBJECTS) $(apps_lchfn_DEPENDENCIES) $(EXTRA_apps_lchfn_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lchfn$(EXEEXT) $(AM_V_CCLD)$(apps_lchfn_LINK) $(apps_lchfn_OBJECTS) $(apps_lchfn_LDADD) $(LIBS) apps/apps_lchsh-lchsh.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lchsh$(EXEEXT): $(apps_lchsh_OBJECTS) $(apps_lchsh_DEPENDENCIES) $(EXTRA_apps_lchsh_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lchsh$(EXEEXT) $(AM_V_CCLD)$(apps_lchsh_LINK) $(apps_lchsh_OBJECTS) $(apps_lchsh_LDADD) $(LIBS) apps/apps_lgroupadd-lgroupadd.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lgroupadd$(EXEEXT): $(apps_lgroupadd_OBJECTS) $(apps_lgroupadd_DEPENDENCIES) $(EXTRA_apps_lgroupadd_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lgroupadd$(EXEEXT) $(AM_V_CCLD)$(apps_lgroupadd_LINK) $(apps_lgroupadd_OBJECTS) $(apps_lgroupadd_LDADD) $(LIBS) apps/apps_lgroupdel-lgroupdel.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lgroupdel$(EXEEXT): $(apps_lgroupdel_OBJECTS) $(apps_lgroupdel_DEPENDENCIES) $(EXTRA_apps_lgroupdel_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lgroupdel$(EXEEXT) $(AM_V_CCLD)$(apps_lgroupdel_LINK) $(apps_lgroupdel_OBJECTS) $(apps_lgroupdel_LDADD) $(LIBS) apps/apps_lgroupmod-lgroupmod.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lgroupmod$(EXEEXT): $(apps_lgroupmod_OBJECTS) $(apps_lgroupmod_DEPENDENCIES) $(EXTRA_apps_lgroupmod_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lgroupmod$(EXEEXT) $(AM_V_CCLD)$(apps_lgroupmod_LINK) $(apps_lgroupmod_OBJECTS) $(apps_lgroupmod_LDADD) $(LIBS) apps/apps_lid-lid.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lid$(EXEEXT): $(apps_lid_OBJECTS) $(apps_lid_DEPENDENCIES) $(EXTRA_apps_lid_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lid$(EXEEXT) $(AM_V_CCLD)$(apps_lid_LINK) $(apps_lid_OBJECTS) $(apps_lid_LDADD) $(LIBS) apps/apps_lnewusers-lnewusers.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lnewusers$(EXEEXT): $(apps_lnewusers_OBJECTS) $(apps_lnewusers_DEPENDENCIES) $(EXTRA_apps_lnewusers_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lnewusers$(EXEEXT) $(AM_V_CCLD)$(apps_lnewusers_LINK) $(apps_lnewusers_OBJECTS) $(apps_lnewusers_LDADD) $(LIBS) apps/apps_lpasswd-lpasswd.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lpasswd$(EXEEXT): $(apps_lpasswd_OBJECTS) $(apps_lpasswd_DEPENDENCIES) $(EXTRA_apps_lpasswd_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lpasswd$(EXEEXT) $(AM_V_CCLD)$(apps_lpasswd_LINK) $(apps_lpasswd_OBJECTS) $(apps_lpasswd_LDADD) $(LIBS) apps/apps_luseradd-luseradd.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/luseradd$(EXEEXT): $(apps_luseradd_OBJECTS) $(apps_luseradd_DEPENDENCIES) $(EXTRA_apps_luseradd_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/luseradd$(EXEEXT) $(AM_V_CCLD)$(apps_luseradd_LINK) $(apps_luseradd_OBJECTS) $(apps_luseradd_LDADD) $(LIBS) apps/apps_luserdel-luserdel.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/luserdel$(EXEEXT): $(apps_luserdel_OBJECTS) $(apps_luserdel_DEPENDENCIES) $(EXTRA_apps_luserdel_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/luserdel$(EXEEXT) $(AM_V_CCLD)$(apps_luserdel_LINK) $(apps_luserdel_OBJECTS) $(apps_luserdel_LDADD) $(LIBS) apps/apps_lusermod-lusermod.$(OBJEXT): apps/$(am__dirstamp) \ apps/$(DEPDIR)/$(am__dirstamp) apps/lusermod$(EXEEXT): $(apps_lusermod_OBJECTS) $(apps_lusermod_DEPENDENCIES) $(EXTRA_apps_lusermod_DEPENDENCIES) apps/$(am__dirstamp) @rm -f apps/lusermod$(EXEEXT) $(AM_V_CCLD)$(apps_lusermod_LINK) $(apps_lusermod_OBJECTS) $(apps_lusermod_LDADD) $(LIBS) samples/$(am__dirstamp): @$(MKDIR_P) samples @: > samples/$(am__dirstamp) samples/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) samples/$(DEPDIR) @: > samples/$(DEPDIR)/$(am__dirstamp) samples/samples_enum-enum.$(OBJEXT): samples/$(am__dirstamp) \ samples/$(DEPDIR)/$(am__dirstamp) samples/enum$(EXEEXT): $(samples_enum_OBJECTS) $(samples_enum_DEPENDENCIES) $(EXTRA_samples_enum_DEPENDENCIES) samples/$(am__dirstamp) @rm -f samples/enum$(EXEEXT) $(AM_V_CCLD)$(samples_enum_LINK) $(samples_enum_OBJECTS) $(samples_enum_LDADD) $(LIBS) samples/field.$(OBJEXT): samples/$(am__dirstamp) \ samples/$(DEPDIR)/$(am__dirstamp) samples/field$(EXEEXT): $(samples_field_OBJECTS) $(samples_field_DEPENDENCIES) $(EXTRA_samples_field_DEPENDENCIES) samples/$(am__dirstamp) @rm -f samples/field$(EXEEXT) $(AM_V_CCLD)$(samples_field_LINK) $(samples_field_OBJECTS) $(samples_field_LDADD) $(LIBS) samples/samples_homedir-homedir.$(OBJEXT): samples/$(am__dirstamp) \ samples/$(DEPDIR)/$(am__dirstamp) samples/homedir$(EXEEXT): $(samples_homedir_OBJECTS) $(samples_homedir_DEPENDENCIES) $(EXTRA_samples_homedir_DEPENDENCIES) samples/$(am__dirstamp) @rm -f samples/homedir$(EXEEXT) $(AM_V_CCLD)$(samples_homedir_LINK) $(samples_homedir_OBJECTS) $(samples_homedir_LDADD) $(LIBS) samples/samples_lookup-lookup.$(OBJEXT): samples/$(am__dirstamp) \ samples/$(DEPDIR)/$(am__dirstamp) samples/lookup$(EXEEXT): $(samples_lookup_OBJECTS) $(samples_lookup_DEPENDENCIES) $(EXTRA_samples_lookup_DEPENDENCIES) samples/$(am__dirstamp) @rm -f samples/lookup$(EXEEXT) $(AM_V_CCLD)$(samples_lookup_LINK) $(samples_lookup_OBJECTS) $(samples_lookup_LDADD) $(LIBS) samples/samples_prompt-prompt.$(OBJEXT): samples/$(am__dirstamp) \ samples/$(DEPDIR)/$(am__dirstamp) samples/prompt$(EXEEXT): $(samples_prompt_OBJECTS) $(samples_prompt_DEPENDENCIES) $(EXTRA_samples_prompt_DEPENDENCIES) samples/$(am__dirstamp) @rm -f samples/prompt$(EXEEXT) $(AM_V_CCLD)$(samples_prompt_LINK) $(samples_prompt_OBJECTS) $(samples_prompt_LDADD) $(LIBS) samples/samples_testuser-testuser.$(OBJEXT): samples/$(am__dirstamp) \ samples/$(DEPDIR)/$(am__dirstamp) samples/testuser$(EXEEXT): $(samples_testuser_OBJECTS) $(samples_testuser_DEPENDENCIES) $(EXTRA_samples_testuser_DEPENDENCIES) samples/$(am__dirstamp) @rm -f samples/testuser$(EXEEXT) $(AM_V_CCLD)$(samples_testuser_LINK) $(samples_testuser_OBJECTS) $(samples_testuser_LDADD) $(LIBS) tests/$(am__dirstamp): @$(MKDIR_P) tests @: > tests/$(am__dirstamp) tests/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) tests/$(DEPDIR) @: > tests/$(DEPDIR)/$(am__dirstamp) tests/alloc_port.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) tests/alloc_port$(EXEEXT): $(tests_alloc_port_OBJECTS) $(tests_alloc_port_DEPENDENCIES) $(EXTRA_tests_alloc_port_DEPENDENCIES) tests/$(am__dirstamp) @rm -f tests/alloc_port$(EXEEXT) $(AM_V_CCLD)$(tests_alloc_port_LINK) $(tests_alloc_port_OBJECTS) $(tests_alloc_port_LDADD) $(LIBS) tests/config_test.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) tests/config_test$(EXEEXT): $(tests_config_test_OBJECTS) $(tests_config_test_DEPENDENCIES) $(EXTRA_tests_config_test_DEPENDENCIES) tests/$(am__dirstamp) @rm -f tests/config_test$(EXEEXT) $(AM_V_CCLD)$(tests_config_test_LINK) $(tests_config_test_OBJECTS) $(tests_config_test_LDADD) $(LIBS) tests/wait_for_slapd_exit.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) tests/wait_for_slapd_exit$(EXEEXT): $(tests_wait_for_slapd_exit_OBJECTS) $(tests_wait_for_slapd_exit_DEPENDENCIES) $(EXTRA_tests_wait_for_slapd_exit_DEPENDENCIES) tests/$(am__dirstamp) @rm -f tests/wait_for_slapd_exit$(EXEEXT) $(AM_V_CCLD)$(tests_wait_for_slapd_exit_LINK) $(tests_wait_for_slapd_exit_OBJECTS) $(tests_wait_for_slapd_exit_LDADD) $(LIBS) tests/wait_for_slapd_start.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) tests/wait_for_slapd_start$(EXEEXT): $(tests_wait_for_slapd_start_OBJECTS) $(tests_wait_for_slapd_start_DEPENDENCIES) $(EXTRA_tests_wait_for_slapd_start_DEPENDENCIES) tests/$(am__dirstamp) @rm -f tests/wait_for_slapd_start$(EXEEXT) $(AM_V_CCLD)$(tests_wait_for_slapd_start_LINK) $(tests_wait_for_slapd_start_OBJECTS) $(tests_wait_for_slapd_start_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f apps/*.$(OBJEXT) -rm -f apps/*.lo -rm -f lib/*.$(OBJEXT) -rm -f lib/*.lo -rm -f modules/*.$(OBJEXT) -rm -f modules/*.lo -rm -f python/*.$(OBJEXT) -rm -f python/*.lo -rm -f samples/*.$(OBJEXT) -rm -f tests/*.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lchage-lchage.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lchfn-lchfn.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lchsh-lchsh.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lgroupadd-lgroupadd.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lgroupdel-lgroupdel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lgroupmod-lgroupmod.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_libapputil_la-apputil.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lid-lid.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lnewusers-lnewusers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lpasswd-lpasswd.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_luseradd-luseradd.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_luserdel-luserdel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@apps/$(DEPDIR)/apps_lusermod-lusermod.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-common.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-config.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-entity.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-error.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-fs.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-getdate.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-misc.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-modules.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-prompt.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-scache.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-user.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libuser_la-util.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@modules/$(DEPDIR)/files.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@modules/$(DEPDIR)/krb5.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@modules/$(DEPDIR)/ldap.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@modules/$(DEPDIR)/sasldb.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@python/$(DEPDIR)/python_libusermodule_la-libusermodule.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/field.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/samples_enum-enum.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/samples_homedir-homedir.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/samples_lookup-lookup.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/samples_prompt-prompt.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/samples_testuser-testuser.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/alloc_port.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/config_test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/wait_for_slapd_exit.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/wait_for_slapd_start.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< apps/apps_libapputil_la-apputil.lo: apps/apputil.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_libapputil_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_libapputil_la-apputil.lo -MD -MP -MF apps/$(DEPDIR)/apps_libapputil_la-apputil.Tpo -c -o apps/apps_libapputil_la-apputil.lo `test -f 'apps/apputil.c' || echo '$(srcdir)/'`apps/apputil.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_libapputil_la-apputil.Tpo apps/$(DEPDIR)/apps_libapputil_la-apputil.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/apputil.c' object='apps/apps_libapputil_la-apputil.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_libapputil_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_libapputil_la-apputil.lo `test -f 'apps/apputil.c' || echo '$(srcdir)/'`apps/apputil.c lib/lib_libuser_la-common.lo: lib/common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-common.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-common.Tpo -c -o lib/lib_libuser_la-common.lo `test -f 'lib/common.c' || echo '$(srcdir)/'`lib/common.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-common.Tpo lib/$(DEPDIR)/lib_libuser_la-common.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/common.c' object='lib/lib_libuser_la-common.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-common.lo `test -f 'lib/common.c' || echo '$(srcdir)/'`lib/common.c lib/lib_libuser_la-config.lo: lib/config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-config.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-config.Tpo -c -o lib/lib_libuser_la-config.lo `test -f 'lib/config.c' || echo '$(srcdir)/'`lib/config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-config.Tpo lib/$(DEPDIR)/lib_libuser_la-config.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/config.c' object='lib/lib_libuser_la-config.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-config.lo `test -f 'lib/config.c' || echo '$(srcdir)/'`lib/config.c lib/lib_libuser_la-entity.lo: lib/entity.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-entity.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-entity.Tpo -c -o lib/lib_libuser_la-entity.lo `test -f 'lib/entity.c' || echo '$(srcdir)/'`lib/entity.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-entity.Tpo lib/$(DEPDIR)/lib_libuser_la-entity.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/entity.c' object='lib/lib_libuser_la-entity.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-entity.lo `test -f 'lib/entity.c' || echo '$(srcdir)/'`lib/entity.c lib/lib_libuser_la-error.lo: lib/error.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-error.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-error.Tpo -c -o lib/lib_libuser_la-error.lo `test -f 'lib/error.c' || echo '$(srcdir)/'`lib/error.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-error.Tpo lib/$(DEPDIR)/lib_libuser_la-error.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/error.c' object='lib/lib_libuser_la-error.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-error.lo `test -f 'lib/error.c' || echo '$(srcdir)/'`lib/error.c lib/lib_libuser_la-fs.lo: lib/fs.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-fs.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-fs.Tpo -c -o lib/lib_libuser_la-fs.lo `test -f 'lib/fs.c' || echo '$(srcdir)/'`lib/fs.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-fs.Tpo lib/$(DEPDIR)/lib_libuser_la-fs.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/fs.c' object='lib/lib_libuser_la-fs.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-fs.lo `test -f 'lib/fs.c' || echo '$(srcdir)/'`lib/fs.c lib/lib_libuser_la-getdate.lo: lib/getdate.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-getdate.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-getdate.Tpo -c -o lib/lib_libuser_la-getdate.lo `test -f 'lib/getdate.c' || echo '$(srcdir)/'`lib/getdate.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-getdate.Tpo lib/$(DEPDIR)/lib_libuser_la-getdate.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/getdate.c' object='lib/lib_libuser_la-getdate.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-getdate.lo `test -f 'lib/getdate.c' || echo '$(srcdir)/'`lib/getdate.c lib/lib_libuser_la-misc.lo: lib/misc.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-misc.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-misc.Tpo -c -o lib/lib_libuser_la-misc.lo `test -f 'lib/misc.c' || echo '$(srcdir)/'`lib/misc.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-misc.Tpo lib/$(DEPDIR)/lib_libuser_la-misc.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/misc.c' object='lib/lib_libuser_la-misc.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-misc.lo `test -f 'lib/misc.c' || echo '$(srcdir)/'`lib/misc.c lib/lib_libuser_la-modules.lo: lib/modules.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-modules.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-modules.Tpo -c -o lib/lib_libuser_la-modules.lo `test -f 'lib/modules.c' || echo '$(srcdir)/'`lib/modules.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-modules.Tpo lib/$(DEPDIR)/lib_libuser_la-modules.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/modules.c' object='lib/lib_libuser_la-modules.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-modules.lo `test -f 'lib/modules.c' || echo '$(srcdir)/'`lib/modules.c lib/lib_libuser_la-prompt.lo: lib/prompt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-prompt.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-prompt.Tpo -c -o lib/lib_libuser_la-prompt.lo `test -f 'lib/prompt.c' || echo '$(srcdir)/'`lib/prompt.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-prompt.Tpo lib/$(DEPDIR)/lib_libuser_la-prompt.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/prompt.c' object='lib/lib_libuser_la-prompt.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-prompt.lo `test -f 'lib/prompt.c' || echo '$(srcdir)/'`lib/prompt.c lib/lib_libuser_la-scache.lo: lib/scache.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-scache.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-scache.Tpo -c -o lib/lib_libuser_la-scache.lo `test -f 'lib/scache.c' || echo '$(srcdir)/'`lib/scache.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-scache.Tpo lib/$(DEPDIR)/lib_libuser_la-scache.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/scache.c' object='lib/lib_libuser_la-scache.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-scache.lo `test -f 'lib/scache.c' || echo '$(srcdir)/'`lib/scache.c lib/lib_libuser_la-user.lo: lib/user.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-user.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-user.Tpo -c -o lib/lib_libuser_la-user.lo `test -f 'lib/user.c' || echo '$(srcdir)/'`lib/user.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-user.Tpo lib/$(DEPDIR)/lib_libuser_la-user.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/user.c' object='lib/lib_libuser_la-user.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-user.lo `test -f 'lib/user.c' || echo '$(srcdir)/'`lib/user.c lib/lib_libuser_la-util.lo: lib/util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/lib_libuser_la-util.lo -MD -MP -MF lib/$(DEPDIR)/lib_libuser_la-util.Tpo -c -o lib/lib_libuser_la-util.lo `test -f 'lib/util.c' || echo '$(srcdir)/'`lib/util.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lib/$(DEPDIR)/lib_libuser_la-util.Tpo lib/$(DEPDIR)/lib_libuser_la-util.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lib/util.c' object='lib/lib_libuser_la-util.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lib_libuser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/lib_libuser_la-util.lo `test -f 'lib/util.c' || echo '$(srcdir)/'`lib/util.c python/python_libusermodule_la-libusermodule.lo: python/libusermodule.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(python_libusermodule_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT python/python_libusermodule_la-libusermodule.lo -MD -MP -MF python/$(DEPDIR)/python_libusermodule_la-libusermodule.Tpo -c -o python/python_libusermodule_la-libusermodule.lo `test -f 'python/libusermodule.c' || echo '$(srcdir)/'`python/libusermodule.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) python/$(DEPDIR)/python_libusermodule_la-libusermodule.Tpo python/$(DEPDIR)/python_libusermodule_la-libusermodule.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='python/libusermodule.c' object='python/python_libusermodule_la-libusermodule.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(python_libusermodule_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o python/python_libusermodule_la-libusermodule.lo `test -f 'python/libusermodule.c' || echo '$(srcdir)/'`python/libusermodule.c apps/apps_lchage-lchage.o: apps/lchage.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchage_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lchage-lchage.o -MD -MP -MF apps/$(DEPDIR)/apps_lchage-lchage.Tpo -c -o apps/apps_lchage-lchage.o `test -f 'apps/lchage.c' || echo '$(srcdir)/'`apps/lchage.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lchage-lchage.Tpo apps/$(DEPDIR)/apps_lchage-lchage.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lchage.c' object='apps/apps_lchage-lchage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchage_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lchage-lchage.o `test -f 'apps/lchage.c' || echo '$(srcdir)/'`apps/lchage.c apps/apps_lchage-lchage.obj: apps/lchage.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchage_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lchage-lchage.obj -MD -MP -MF apps/$(DEPDIR)/apps_lchage-lchage.Tpo -c -o apps/apps_lchage-lchage.obj `if test -f 'apps/lchage.c'; then $(CYGPATH_W) 'apps/lchage.c'; else $(CYGPATH_W) '$(srcdir)/apps/lchage.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lchage-lchage.Tpo apps/$(DEPDIR)/apps_lchage-lchage.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lchage.c' object='apps/apps_lchage-lchage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchage_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lchage-lchage.obj `if test -f 'apps/lchage.c'; then $(CYGPATH_W) 'apps/lchage.c'; else $(CYGPATH_W) '$(srcdir)/apps/lchage.c'; fi` apps/apps_lchfn-lchfn.o: apps/lchfn.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchfn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lchfn-lchfn.o -MD -MP -MF apps/$(DEPDIR)/apps_lchfn-lchfn.Tpo -c -o apps/apps_lchfn-lchfn.o `test -f 'apps/lchfn.c' || echo '$(srcdir)/'`apps/lchfn.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lchfn-lchfn.Tpo apps/$(DEPDIR)/apps_lchfn-lchfn.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lchfn.c' object='apps/apps_lchfn-lchfn.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchfn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lchfn-lchfn.o `test -f 'apps/lchfn.c' || echo '$(srcdir)/'`apps/lchfn.c apps/apps_lchfn-lchfn.obj: apps/lchfn.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchfn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lchfn-lchfn.obj -MD -MP -MF apps/$(DEPDIR)/apps_lchfn-lchfn.Tpo -c -o apps/apps_lchfn-lchfn.obj `if test -f 'apps/lchfn.c'; then $(CYGPATH_W) 'apps/lchfn.c'; else $(CYGPATH_W) '$(srcdir)/apps/lchfn.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lchfn-lchfn.Tpo apps/$(DEPDIR)/apps_lchfn-lchfn.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lchfn.c' object='apps/apps_lchfn-lchfn.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchfn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lchfn-lchfn.obj `if test -f 'apps/lchfn.c'; then $(CYGPATH_W) 'apps/lchfn.c'; else $(CYGPATH_W) '$(srcdir)/apps/lchfn.c'; fi` apps/apps_lchsh-lchsh.o: apps/lchsh.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchsh_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lchsh-lchsh.o -MD -MP -MF apps/$(DEPDIR)/apps_lchsh-lchsh.Tpo -c -o apps/apps_lchsh-lchsh.o `test -f 'apps/lchsh.c' || echo '$(srcdir)/'`apps/lchsh.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lchsh-lchsh.Tpo apps/$(DEPDIR)/apps_lchsh-lchsh.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lchsh.c' object='apps/apps_lchsh-lchsh.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchsh_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lchsh-lchsh.o `test -f 'apps/lchsh.c' || echo '$(srcdir)/'`apps/lchsh.c apps/apps_lchsh-lchsh.obj: apps/lchsh.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchsh_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lchsh-lchsh.obj -MD -MP -MF apps/$(DEPDIR)/apps_lchsh-lchsh.Tpo -c -o apps/apps_lchsh-lchsh.obj `if test -f 'apps/lchsh.c'; then $(CYGPATH_W) 'apps/lchsh.c'; else $(CYGPATH_W) '$(srcdir)/apps/lchsh.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lchsh-lchsh.Tpo apps/$(DEPDIR)/apps_lchsh-lchsh.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lchsh.c' object='apps/apps_lchsh-lchsh.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lchsh_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lchsh-lchsh.obj `if test -f 'apps/lchsh.c'; then $(CYGPATH_W) 'apps/lchsh.c'; else $(CYGPATH_W) '$(srcdir)/apps/lchsh.c'; fi` apps/apps_lgroupadd-lgroupadd.o: apps/lgroupadd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupadd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lgroupadd-lgroupadd.o -MD -MP -MF apps/$(DEPDIR)/apps_lgroupadd-lgroupadd.Tpo -c -o apps/apps_lgroupadd-lgroupadd.o `test -f 'apps/lgroupadd.c' || echo '$(srcdir)/'`apps/lgroupadd.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lgroupadd-lgroupadd.Tpo apps/$(DEPDIR)/apps_lgroupadd-lgroupadd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lgroupadd.c' object='apps/apps_lgroupadd-lgroupadd.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupadd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lgroupadd-lgroupadd.o `test -f 'apps/lgroupadd.c' || echo '$(srcdir)/'`apps/lgroupadd.c apps/apps_lgroupadd-lgroupadd.obj: apps/lgroupadd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupadd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lgroupadd-lgroupadd.obj -MD -MP -MF apps/$(DEPDIR)/apps_lgroupadd-lgroupadd.Tpo -c -o apps/apps_lgroupadd-lgroupadd.obj `if test -f 'apps/lgroupadd.c'; then $(CYGPATH_W) 'apps/lgroupadd.c'; else $(CYGPATH_W) '$(srcdir)/apps/lgroupadd.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lgroupadd-lgroupadd.Tpo apps/$(DEPDIR)/apps_lgroupadd-lgroupadd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lgroupadd.c' object='apps/apps_lgroupadd-lgroupadd.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupadd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lgroupadd-lgroupadd.obj `if test -f 'apps/lgroupadd.c'; then $(CYGPATH_W) 'apps/lgroupadd.c'; else $(CYGPATH_W) '$(srcdir)/apps/lgroupadd.c'; fi` apps/apps_lgroupdel-lgroupdel.o: apps/lgroupdel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupdel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lgroupdel-lgroupdel.o -MD -MP -MF apps/$(DEPDIR)/apps_lgroupdel-lgroupdel.Tpo -c -o apps/apps_lgroupdel-lgroupdel.o `test -f 'apps/lgroupdel.c' || echo '$(srcdir)/'`apps/lgroupdel.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lgroupdel-lgroupdel.Tpo apps/$(DEPDIR)/apps_lgroupdel-lgroupdel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lgroupdel.c' object='apps/apps_lgroupdel-lgroupdel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupdel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lgroupdel-lgroupdel.o `test -f 'apps/lgroupdel.c' || echo '$(srcdir)/'`apps/lgroupdel.c apps/apps_lgroupdel-lgroupdel.obj: apps/lgroupdel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupdel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lgroupdel-lgroupdel.obj -MD -MP -MF apps/$(DEPDIR)/apps_lgroupdel-lgroupdel.Tpo -c -o apps/apps_lgroupdel-lgroupdel.obj `if test -f 'apps/lgroupdel.c'; then $(CYGPATH_W) 'apps/lgroupdel.c'; else $(CYGPATH_W) '$(srcdir)/apps/lgroupdel.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lgroupdel-lgroupdel.Tpo apps/$(DEPDIR)/apps_lgroupdel-lgroupdel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lgroupdel.c' object='apps/apps_lgroupdel-lgroupdel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupdel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lgroupdel-lgroupdel.obj `if test -f 'apps/lgroupdel.c'; then $(CYGPATH_W) 'apps/lgroupdel.c'; else $(CYGPATH_W) '$(srcdir)/apps/lgroupdel.c'; fi` apps/apps_lgroupmod-lgroupmod.o: apps/lgroupmod.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupmod_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lgroupmod-lgroupmod.o -MD -MP -MF apps/$(DEPDIR)/apps_lgroupmod-lgroupmod.Tpo -c -o apps/apps_lgroupmod-lgroupmod.o `test -f 'apps/lgroupmod.c' || echo '$(srcdir)/'`apps/lgroupmod.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lgroupmod-lgroupmod.Tpo apps/$(DEPDIR)/apps_lgroupmod-lgroupmod.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lgroupmod.c' object='apps/apps_lgroupmod-lgroupmod.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupmod_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lgroupmod-lgroupmod.o `test -f 'apps/lgroupmod.c' || echo '$(srcdir)/'`apps/lgroupmod.c apps/apps_lgroupmod-lgroupmod.obj: apps/lgroupmod.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupmod_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lgroupmod-lgroupmod.obj -MD -MP -MF apps/$(DEPDIR)/apps_lgroupmod-lgroupmod.Tpo -c -o apps/apps_lgroupmod-lgroupmod.obj `if test -f 'apps/lgroupmod.c'; then $(CYGPATH_W) 'apps/lgroupmod.c'; else $(CYGPATH_W) '$(srcdir)/apps/lgroupmod.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lgroupmod-lgroupmod.Tpo apps/$(DEPDIR)/apps_lgroupmod-lgroupmod.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lgroupmod.c' object='apps/apps_lgroupmod-lgroupmod.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lgroupmod_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lgroupmod-lgroupmod.obj `if test -f 'apps/lgroupmod.c'; then $(CYGPATH_W) 'apps/lgroupmod.c'; else $(CYGPATH_W) '$(srcdir)/apps/lgroupmod.c'; fi` apps/apps_lid-lid.o: apps/lid.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lid_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lid-lid.o -MD -MP -MF apps/$(DEPDIR)/apps_lid-lid.Tpo -c -o apps/apps_lid-lid.o `test -f 'apps/lid.c' || echo '$(srcdir)/'`apps/lid.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lid-lid.Tpo apps/$(DEPDIR)/apps_lid-lid.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lid.c' object='apps/apps_lid-lid.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lid_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lid-lid.o `test -f 'apps/lid.c' || echo '$(srcdir)/'`apps/lid.c apps/apps_lid-lid.obj: apps/lid.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lid_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lid-lid.obj -MD -MP -MF apps/$(DEPDIR)/apps_lid-lid.Tpo -c -o apps/apps_lid-lid.obj `if test -f 'apps/lid.c'; then $(CYGPATH_W) 'apps/lid.c'; else $(CYGPATH_W) '$(srcdir)/apps/lid.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lid-lid.Tpo apps/$(DEPDIR)/apps_lid-lid.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lid.c' object='apps/apps_lid-lid.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lid_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lid-lid.obj `if test -f 'apps/lid.c'; then $(CYGPATH_W) 'apps/lid.c'; else $(CYGPATH_W) '$(srcdir)/apps/lid.c'; fi` apps/apps_lnewusers-lnewusers.o: apps/lnewusers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lnewusers_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lnewusers-lnewusers.o -MD -MP -MF apps/$(DEPDIR)/apps_lnewusers-lnewusers.Tpo -c -o apps/apps_lnewusers-lnewusers.o `test -f 'apps/lnewusers.c' || echo '$(srcdir)/'`apps/lnewusers.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lnewusers-lnewusers.Tpo apps/$(DEPDIR)/apps_lnewusers-lnewusers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lnewusers.c' object='apps/apps_lnewusers-lnewusers.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lnewusers_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lnewusers-lnewusers.o `test -f 'apps/lnewusers.c' || echo '$(srcdir)/'`apps/lnewusers.c apps/apps_lnewusers-lnewusers.obj: apps/lnewusers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lnewusers_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lnewusers-lnewusers.obj -MD -MP -MF apps/$(DEPDIR)/apps_lnewusers-lnewusers.Tpo -c -o apps/apps_lnewusers-lnewusers.obj `if test -f 'apps/lnewusers.c'; then $(CYGPATH_W) 'apps/lnewusers.c'; else $(CYGPATH_W) '$(srcdir)/apps/lnewusers.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lnewusers-lnewusers.Tpo apps/$(DEPDIR)/apps_lnewusers-lnewusers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lnewusers.c' object='apps/apps_lnewusers-lnewusers.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lnewusers_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lnewusers-lnewusers.obj `if test -f 'apps/lnewusers.c'; then $(CYGPATH_W) 'apps/lnewusers.c'; else $(CYGPATH_W) '$(srcdir)/apps/lnewusers.c'; fi` apps/apps_lpasswd-lpasswd.o: apps/lpasswd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lpasswd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lpasswd-lpasswd.o -MD -MP -MF apps/$(DEPDIR)/apps_lpasswd-lpasswd.Tpo -c -o apps/apps_lpasswd-lpasswd.o `test -f 'apps/lpasswd.c' || echo '$(srcdir)/'`apps/lpasswd.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lpasswd-lpasswd.Tpo apps/$(DEPDIR)/apps_lpasswd-lpasswd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lpasswd.c' object='apps/apps_lpasswd-lpasswd.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lpasswd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lpasswd-lpasswd.o `test -f 'apps/lpasswd.c' || echo '$(srcdir)/'`apps/lpasswd.c apps/apps_lpasswd-lpasswd.obj: apps/lpasswd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lpasswd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lpasswd-lpasswd.obj -MD -MP -MF apps/$(DEPDIR)/apps_lpasswd-lpasswd.Tpo -c -o apps/apps_lpasswd-lpasswd.obj `if test -f 'apps/lpasswd.c'; then $(CYGPATH_W) 'apps/lpasswd.c'; else $(CYGPATH_W) '$(srcdir)/apps/lpasswd.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lpasswd-lpasswd.Tpo apps/$(DEPDIR)/apps_lpasswd-lpasswd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lpasswd.c' object='apps/apps_lpasswd-lpasswd.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lpasswd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lpasswd-lpasswd.obj `if test -f 'apps/lpasswd.c'; then $(CYGPATH_W) 'apps/lpasswd.c'; else $(CYGPATH_W) '$(srcdir)/apps/lpasswd.c'; fi` apps/apps_luseradd-luseradd.o: apps/luseradd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_luseradd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_luseradd-luseradd.o -MD -MP -MF apps/$(DEPDIR)/apps_luseradd-luseradd.Tpo -c -o apps/apps_luseradd-luseradd.o `test -f 'apps/luseradd.c' || echo '$(srcdir)/'`apps/luseradd.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_luseradd-luseradd.Tpo apps/$(DEPDIR)/apps_luseradd-luseradd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/luseradd.c' object='apps/apps_luseradd-luseradd.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_luseradd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_luseradd-luseradd.o `test -f 'apps/luseradd.c' || echo '$(srcdir)/'`apps/luseradd.c apps/apps_luseradd-luseradd.obj: apps/luseradd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_luseradd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_luseradd-luseradd.obj -MD -MP -MF apps/$(DEPDIR)/apps_luseradd-luseradd.Tpo -c -o apps/apps_luseradd-luseradd.obj `if test -f 'apps/luseradd.c'; then $(CYGPATH_W) 'apps/luseradd.c'; else $(CYGPATH_W) '$(srcdir)/apps/luseradd.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_luseradd-luseradd.Tpo apps/$(DEPDIR)/apps_luseradd-luseradd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/luseradd.c' object='apps/apps_luseradd-luseradd.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_luseradd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_luseradd-luseradd.obj `if test -f 'apps/luseradd.c'; then $(CYGPATH_W) 'apps/luseradd.c'; else $(CYGPATH_W) '$(srcdir)/apps/luseradd.c'; fi` apps/apps_luserdel-luserdel.o: apps/luserdel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_luserdel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_luserdel-luserdel.o -MD -MP -MF apps/$(DEPDIR)/apps_luserdel-luserdel.Tpo -c -o apps/apps_luserdel-luserdel.o `test -f 'apps/luserdel.c' || echo '$(srcdir)/'`apps/luserdel.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_luserdel-luserdel.Tpo apps/$(DEPDIR)/apps_luserdel-luserdel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/luserdel.c' object='apps/apps_luserdel-luserdel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_luserdel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_luserdel-luserdel.o `test -f 'apps/luserdel.c' || echo '$(srcdir)/'`apps/luserdel.c apps/apps_luserdel-luserdel.obj: apps/luserdel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_luserdel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_luserdel-luserdel.obj -MD -MP -MF apps/$(DEPDIR)/apps_luserdel-luserdel.Tpo -c -o apps/apps_luserdel-luserdel.obj `if test -f 'apps/luserdel.c'; then $(CYGPATH_W) 'apps/luserdel.c'; else $(CYGPATH_W) '$(srcdir)/apps/luserdel.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_luserdel-luserdel.Tpo apps/$(DEPDIR)/apps_luserdel-luserdel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/luserdel.c' object='apps/apps_luserdel-luserdel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_luserdel_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_luserdel-luserdel.obj `if test -f 'apps/luserdel.c'; then $(CYGPATH_W) 'apps/luserdel.c'; else $(CYGPATH_W) '$(srcdir)/apps/luserdel.c'; fi` apps/apps_lusermod-lusermod.o: apps/lusermod.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lusermod_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lusermod-lusermod.o -MD -MP -MF apps/$(DEPDIR)/apps_lusermod-lusermod.Tpo -c -o apps/apps_lusermod-lusermod.o `test -f 'apps/lusermod.c' || echo '$(srcdir)/'`apps/lusermod.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lusermod-lusermod.Tpo apps/$(DEPDIR)/apps_lusermod-lusermod.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lusermod.c' object='apps/apps_lusermod-lusermod.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lusermod_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lusermod-lusermod.o `test -f 'apps/lusermod.c' || echo '$(srcdir)/'`apps/lusermod.c apps/apps_lusermod-lusermod.obj: apps/lusermod.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lusermod_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apps/apps_lusermod-lusermod.obj -MD -MP -MF apps/$(DEPDIR)/apps_lusermod-lusermod.Tpo -c -o apps/apps_lusermod-lusermod.obj `if test -f 'apps/lusermod.c'; then $(CYGPATH_W) 'apps/lusermod.c'; else $(CYGPATH_W) '$(srcdir)/apps/lusermod.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) apps/$(DEPDIR)/apps_lusermod-lusermod.Tpo apps/$(DEPDIR)/apps_lusermod-lusermod.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='apps/lusermod.c' object='apps/apps_lusermod-lusermod.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(apps_lusermod_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apps/apps_lusermod-lusermod.obj `if test -f 'apps/lusermod.c'; then $(CYGPATH_W) 'apps/lusermod.c'; else $(CYGPATH_W) '$(srcdir)/apps/lusermod.c'; fi` samples/samples_enum-enum.o: samples/enum.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_enum_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_enum-enum.o -MD -MP -MF samples/$(DEPDIR)/samples_enum-enum.Tpo -c -o samples/samples_enum-enum.o `test -f 'samples/enum.c' || echo '$(srcdir)/'`samples/enum.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_enum-enum.Tpo samples/$(DEPDIR)/samples_enum-enum.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/enum.c' object='samples/samples_enum-enum.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_enum_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_enum-enum.o `test -f 'samples/enum.c' || echo '$(srcdir)/'`samples/enum.c samples/samples_enum-enum.obj: samples/enum.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_enum_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_enum-enum.obj -MD -MP -MF samples/$(DEPDIR)/samples_enum-enum.Tpo -c -o samples/samples_enum-enum.obj `if test -f 'samples/enum.c'; then $(CYGPATH_W) 'samples/enum.c'; else $(CYGPATH_W) '$(srcdir)/samples/enum.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_enum-enum.Tpo samples/$(DEPDIR)/samples_enum-enum.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/enum.c' object='samples/samples_enum-enum.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_enum_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_enum-enum.obj `if test -f 'samples/enum.c'; then $(CYGPATH_W) 'samples/enum.c'; else $(CYGPATH_W) '$(srcdir)/samples/enum.c'; fi` samples/samples_homedir-homedir.o: samples/homedir.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_homedir_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_homedir-homedir.o -MD -MP -MF samples/$(DEPDIR)/samples_homedir-homedir.Tpo -c -o samples/samples_homedir-homedir.o `test -f 'samples/homedir.c' || echo '$(srcdir)/'`samples/homedir.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_homedir-homedir.Tpo samples/$(DEPDIR)/samples_homedir-homedir.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/homedir.c' object='samples/samples_homedir-homedir.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_homedir_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_homedir-homedir.o `test -f 'samples/homedir.c' || echo '$(srcdir)/'`samples/homedir.c samples/samples_homedir-homedir.obj: samples/homedir.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_homedir_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_homedir-homedir.obj -MD -MP -MF samples/$(DEPDIR)/samples_homedir-homedir.Tpo -c -o samples/samples_homedir-homedir.obj `if test -f 'samples/homedir.c'; then $(CYGPATH_W) 'samples/homedir.c'; else $(CYGPATH_W) '$(srcdir)/samples/homedir.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_homedir-homedir.Tpo samples/$(DEPDIR)/samples_homedir-homedir.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/homedir.c' object='samples/samples_homedir-homedir.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_homedir_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_homedir-homedir.obj `if test -f 'samples/homedir.c'; then $(CYGPATH_W) 'samples/homedir.c'; else $(CYGPATH_W) '$(srcdir)/samples/homedir.c'; fi` samples/samples_lookup-lookup.o: samples/lookup.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_lookup_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_lookup-lookup.o -MD -MP -MF samples/$(DEPDIR)/samples_lookup-lookup.Tpo -c -o samples/samples_lookup-lookup.o `test -f 'samples/lookup.c' || echo '$(srcdir)/'`samples/lookup.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_lookup-lookup.Tpo samples/$(DEPDIR)/samples_lookup-lookup.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/lookup.c' object='samples/samples_lookup-lookup.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_lookup_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_lookup-lookup.o `test -f 'samples/lookup.c' || echo '$(srcdir)/'`samples/lookup.c samples/samples_lookup-lookup.obj: samples/lookup.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_lookup_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_lookup-lookup.obj -MD -MP -MF samples/$(DEPDIR)/samples_lookup-lookup.Tpo -c -o samples/samples_lookup-lookup.obj `if test -f 'samples/lookup.c'; then $(CYGPATH_W) 'samples/lookup.c'; else $(CYGPATH_W) '$(srcdir)/samples/lookup.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_lookup-lookup.Tpo samples/$(DEPDIR)/samples_lookup-lookup.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/lookup.c' object='samples/samples_lookup-lookup.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_lookup_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_lookup-lookup.obj `if test -f 'samples/lookup.c'; then $(CYGPATH_W) 'samples/lookup.c'; else $(CYGPATH_W) '$(srcdir)/samples/lookup.c'; fi` samples/samples_prompt-prompt.o: samples/prompt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_prompt_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_prompt-prompt.o -MD -MP -MF samples/$(DEPDIR)/samples_prompt-prompt.Tpo -c -o samples/samples_prompt-prompt.o `test -f 'samples/prompt.c' || echo '$(srcdir)/'`samples/prompt.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_prompt-prompt.Tpo samples/$(DEPDIR)/samples_prompt-prompt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/prompt.c' object='samples/samples_prompt-prompt.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_prompt_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_prompt-prompt.o `test -f 'samples/prompt.c' || echo '$(srcdir)/'`samples/prompt.c samples/samples_prompt-prompt.obj: samples/prompt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_prompt_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_prompt-prompt.obj -MD -MP -MF samples/$(DEPDIR)/samples_prompt-prompt.Tpo -c -o samples/samples_prompt-prompt.obj `if test -f 'samples/prompt.c'; then $(CYGPATH_W) 'samples/prompt.c'; else $(CYGPATH_W) '$(srcdir)/samples/prompt.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_prompt-prompt.Tpo samples/$(DEPDIR)/samples_prompt-prompt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/prompt.c' object='samples/samples_prompt-prompt.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_prompt_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_prompt-prompt.obj `if test -f 'samples/prompt.c'; then $(CYGPATH_W) 'samples/prompt.c'; else $(CYGPATH_W) '$(srcdir)/samples/prompt.c'; fi` samples/samples_testuser-testuser.o: samples/testuser.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_testuser_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_testuser-testuser.o -MD -MP -MF samples/$(DEPDIR)/samples_testuser-testuser.Tpo -c -o samples/samples_testuser-testuser.o `test -f 'samples/testuser.c' || echo '$(srcdir)/'`samples/testuser.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_testuser-testuser.Tpo samples/$(DEPDIR)/samples_testuser-testuser.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/testuser.c' object='samples/samples_testuser-testuser.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_testuser_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_testuser-testuser.o `test -f 'samples/testuser.c' || echo '$(srcdir)/'`samples/testuser.c samples/samples_testuser-testuser.obj: samples/testuser.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_testuser_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT samples/samples_testuser-testuser.obj -MD -MP -MF samples/$(DEPDIR)/samples_testuser-testuser.Tpo -c -o samples/samples_testuser-testuser.obj `if test -f 'samples/testuser.c'; then $(CYGPATH_W) 'samples/testuser.c'; else $(CYGPATH_W) '$(srcdir)/samples/testuser.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) samples/$(DEPDIR)/samples_testuser-testuser.Tpo samples/$(DEPDIR)/samples_testuser-testuser.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='samples/testuser.c' object='samples/samples_testuser-testuser.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(samples_testuser_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o samples/samples_testuser-testuser.obj `if test -f 'samples/testuser.c'; then $(CYGPATH_W) 'samples/testuser.c'; else $(CYGPATH_W) '$(srcdir)/samples/testuser.c'; fi` .y.c: $(AM_V_YACC)$(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h `echo $@ | $(am__yacc_c2h)` y.output $*.output -- $(YACCCOMPILE) mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs -rm -rf apps/.libs apps/_libs -rm -rf lib/.libs lib/_libs -rm -rf modules/.libs modules/_libs -rm -rf python/.libs python/_libs -rm -rf samples/.libs samples/_libs -rm -rf tests/.libs tests/_libs distclean-libtool: -rm -f libtool config.lt install-man1: $(dist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(dist_man_MANS)'; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) install-dist_sysconfDATA: $(dist_sysconf_DATA) @$(NORMAL_INSTALL) @list='$(dist_sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(sysconfdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(sysconfdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sysconfdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(sysconfdir)" || exit $$?; \ done uninstall-dist_sysconfDATA: @$(NORMAL_UNINSTALL) @list='$(dist_sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(sysconfdir)'; $(am__uninstall_files_from_dir) install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ done uninstall-pkgincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files # Recover from deleted '.trs' file; this should ensure that # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells # to avoid problems with "make -n". .log.trs: rm -f $< $@ $(MAKE) $(AM_MAKEFLAGS) $< # Leading 'am--fnord' is there to ensure the list of targets does not # expand to empty, as could happen e.g. with make check TESTS=''. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ redo_bases=`for i in $$bases; do \ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ done`; \ if test -n "$$redo_bases"; then \ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ if $(am__make_dryrun); then :; else \ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ fi; \ fi; \ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ else \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ st=0; \ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ for i in $$redo_bases; do \ test -f $$i.trs && test -r $$i.trs \ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ test -f $$i.log && test -r $$i.log \ || { echo "$$errmsg $$i.log" >&2; st=1; }; \ done; \ test $$st -eq 0 || exit 1; \ fi @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ ws='[ ]'; \ results=`for b in $$bases; do echo $$b.trs; done`; \ test -n "$$results" || results=/dev/null; \ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ if test `expr $$fail + $$xpass + $$error` -eq 0; then \ success=true; \ else \ success=false; \ fi; \ br='==================='; br=$$br$$br$$br$$br; \ result_count () \ { \ if test x"$$1" = x"--maybe-color"; then \ maybe_colorize=yes; \ elif test x"$$1" = x"--no-color"; then \ maybe_colorize=no; \ else \ echo "$@: invalid 'result_count' usage" >&2; exit 4; \ fi; \ shift; \ desc=$$1 count=$$2; \ if test $$maybe_colorize = yes && test $$count -gt 0; then \ color_start=$$3 color_end=$$std; \ else \ color_start= color_end=; \ fi; \ echo "$${color_start}# $$desc $$count$${color_end}"; \ }; \ create_testsuite_report () \ { \ result_count $$1 "TOTAL:" $$all "$$brg"; \ result_count $$1 "PASS: " $$pass "$$grn"; \ result_count $$1 "SKIP: " $$skip "$$blu"; \ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ result_count $$1 "FAIL: " $$fail "$$red"; \ result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ for b in $$bases; do echo $$b; done \ | $(am__create_global_log); \ } >$(TEST_SUITE_LOG).tmp || exit 1; \ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ if $$success; then \ col="$$grn"; \ else \ col="$$red"; \ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ fi; \ echo "$${col}$$br$${std}"; \ echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ echo "$${col}$$br$${std}"; \ create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ if test -n "$(PACKAGE_BUGREPORT)"; then \ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ trs_list=`for i in $$bases; do echo $$i.trs; done`; \ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all $(check_PROGRAMS) @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ am__force_recheck=am--force-recheck \ TEST_LOGS="$$log_list"; \ exit $$? tests/config_test.sh.log: tests/config_test.sh @p='tests/config_test.sh'; \ b='tests/config_test.sh'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/fs_test.log: tests/fs_test @p='tests/fs_test'; \ b='tests/fs_test'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/files_test.log: tests/files_test @p='tests/files_test'; \ b='tests/files_test'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/pwhash_test.log: tests/pwhash_test @p='tests/pwhash_test'; \ b='tests/pwhash_test'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/utils_test.log: tests/utils_test @p='tests/utils_test'; \ b='tests/utils_test'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/default_pw_test.log: tests/default_pw_test @p='tests/default_pw_test'; \ b='tests/default_pw_test'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/ldap_test.log: tests/ldap_test @p='tests/ldap_test'; \ b='tests/ldap_test'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) .test.log: @p='$<'; \ $(am__set_b); \ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) @am__EXEEXT_TRUE@.test$(EXEEXT).log: @am__EXEEXT_TRUE@ @p='$<'; \ @am__EXEEXT_TRUE@ $(am__set_b); \ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-recursive all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA) \ $(HEADERS) config.h install-binPROGRAMS: install-libLTLIBRARIES installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(pyexecdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(sysconfdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -rm -f apps/$(DEPDIR)/$(am__dirstamp) -rm -f apps/$(am__dirstamp) -rm -f lib/$(DEPDIR)/$(am__dirstamp) -rm -f lib/$(am__dirstamp) -rm -f modules/$(DEPDIR)/$(am__dirstamp) -rm -f modules/$(am__dirstamp) -rm -f python/$(DEPDIR)/$(am__dirstamp) -rm -f python/$(am__dirstamp) -rm -f samples/$(DEPDIR)/$(am__dirstamp) -rm -f samples/$(am__dirstamp) -rm -f tests/$(DEPDIR)/$(am__dirstamp) -rm -f tests/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -rm -f lib/getdate.c clean: clean-recursive clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \ clean-libLTLIBRARIES clean-libtool clean-noinstLTLIBRARIES \ clean-noinstPROGRAMS clean-pkglibLTLIBRARIES \ clean-pyexecLTLIBRARIES clean-sbinPROGRAMS mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf apps/$(DEPDIR) lib/$(DEPDIR) modules/$(DEPDIR) python/$(DEPDIR) samples/$(DEPDIR) tests/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-man install-pkgconfigDATA \ install-pkgincludeHEADERS install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-dist_sysconfDATA \ install-libLTLIBRARIES install-pkglibLTLIBRARIES \ install-pyexecLTLIBRARIES install-sbinPROGRAMS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-man1 install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf apps/$(DEPDIR) lib/$(DEPDIR) modules/$(DEPDIR) python/$(DEPDIR) samples/$(DEPDIR) tests/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-dist_sysconfDATA \ uninstall-libLTLIBRARIES uninstall-man uninstall-pkgconfigDATA \ uninstall-pkgincludeHEADERS uninstall-pkglibLTLIBRARIES \ uninstall-pyexecLTLIBRARIES uninstall-sbinPROGRAMS uninstall-man: uninstall-man1 .MAKE: $(am__recursive_targets) all check-am install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-TESTS check-am clean clean-binPROGRAMS \ clean-checkPROGRAMS clean-cscope clean-generic \ clean-libLTLIBRARIES clean-libtool clean-noinstLTLIBRARIES \ clean-noinstPROGRAMS clean-pkglibLTLIBRARIES \ clean-pyexecLTLIBRARIES clean-sbinPROGRAMS cscope \ cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-compile distclean-generic \ distclean-hdr distclean-libtool distclean-tags distcleancheck \ distdir distuninstallcheck dvi dvi-am html html-am info \ info-am install install-am install-binPROGRAMS install-data \ install-data-am install-dist_sysconfDATA install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libLTLIBRARIES install-man install-man1 install-pdf \ install-pdf-am install-pkgconfigDATA install-pkgincludeHEADERS \ install-pkglibLTLIBRARIES install-ps install-ps-am \ install-pyexecLTLIBRARIES install-sbinPROGRAMS install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am recheck tags tags-am uninstall \ uninstall-am uninstall-binPROGRAMS uninstall-dist_sysconfDATA \ uninstall-libLTLIBRARIES uninstall-man uninstall-man1 \ uninstall-pkgconfigDATA uninstall-pkgincludeHEADERS \ uninstall-pkglibLTLIBRARIES uninstall-pyexecLTLIBRARIES \ uninstall-sbinPROGRAMS force-tag: cd $(top_srcdir); hg tag -f $(HGTAG) tag: cd $(top_srcdir); hg tag $(HGTAG) archive: rm -fr /tmp/$(PACKAGE)-export-tmp hg clone -r $(HGTAG) $(abs_top_srcdir) /tmp/$(PACKAGE)-export-tmp cd /tmp/$(PACKAGE)-export-tmp; ./autogen.sh ; \ ./configure --sysconfdir=/etc --with-ldap --enable-gtk-doc \ --without-sasl; make -C docs/reference; make dist mv /tmp/$(PACKAGE)-export-tmp/$(PACKAGE)-$(VERSION).tar.xz . rm -fr /tmp/$(PACKAGE)-export-tmp @echo Package is in \"$(PACKAGE)-$(VERSION).tar.xz\". valgrind: VALGRIND='$(VG_EXECUTION)' \ $(MAKE) check TESTS_ENVIRONMENT='$(VG_ENVIRONMENT)' 3>&2 # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: libuser-0.60~dfsg/tests/0000755000175000017500000000000012226342602015233 5ustar tzafrirtzafrirlibuser-0.60~dfsg/tests/wait_for_slapd_exit.c0000644000175000017500000000425412226342570021436 0ustar tzafrirtzafrir/* Copyright (C) 2012 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #undef NDEBUG #include static int slapd_exited(const char *pid_file, int sock, const struct sockaddr_in *sin) { return access(pid_file, F_OK) != 0 && connect(sock, (const struct sockaddr *)sin, sizeof (*sin)) != 0; } /* Wait for slapd to remove its pid file and close its socket. */ int main(int argc, char *argv[]) { long port; char *p; struct sockaddr_in sin; int sock, i; assert(argc == 3); errno = 0; port = strtol(argv[2], &p, 10); assert (errno == 0 && *p == 0 && p != argv[2] && (in_port_t)port == port); sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); assert(sock != -1); sin.sin_family = AF_INET; sin.sin_addr.s_addr = inet_addr("127.0.0.1"); sin.sin_port = htons(port); for (i = 0; i < 50; i++) { printf("\rWaiting for slapd exit: %.1f...", i / 10.0); fflush(stdout); if (slapd_exited(argv[1], sock, &sin)) goto ok; usleep(100000); } for (i = 5; i < 30; i++) { printf("\rWaiting for slapd exit: %d... ", i); fflush(stdout); if (slapd_exited(argv[1], sock, &sin)) goto ok; sleep(1); } close(sock); putchar('\n'); fprintf(stderr, "Timeout waiting for exit\n"); return EXIT_FAILURE; ok: close(sock); putchar('\n'); return EXIT_SUCCESS; } libuser-0.60~dfsg/tests/config_import.conf.in0000644000175000017500000000041312226342570021350 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs modules = files shadow create_modules = files shadow [import] login_defs = @SRCDIR@/config_login.defs default_useradd = @SRCDIR@/config_default_useradd [files] nonroot = yes [shadow] nonroot = yes libuser-0.60~dfsg/tests/utils.conf.in0000644000175000017500000000141512226342570017654 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs skeleton = /etc/skel mailspooldir = /var/mail modules = files shadow create_modules = files shadow crypt_style = md5 [userdefaults] LU_USERNAME = %n LU_UIDNUMBER = 500 LU_GIDNUMBER = %u # LU_USERPASSWORD = !! # LU_GECOS = %n # LU_HOMEDIRECTORY = /home/%n # LU_LOGINSHELL = /bin/bash # LU_SHADOWNAME = %n # LU_SHADOWPASSWORD = !! # LU_SHADOWLASTCHANGE = %d # LU_SHADOWMIN = 0 # LU_SHADOWMAX = 99999 # LU_SHADOWWARNING = 7 # LU_SHADOWINACTIVE = -1 # LU_SHADOWEXPIRE = -1 # LU_SHADOWFLAG = -1 [groupdefaults] LU_GROUPNAME = %n LU_GIDNUMBER = 500 # LU_GROUPPASSWORD = !! # LU_MEMBERUID = # LU_ADMINISTRATORUID = [files] directory = @WORKDIR@/files nonroot = yes [shadow] directory = @WORKDIR@/files nonroot = yes libuser-0.60~dfsg/tests/config_import2.conf.in0000644000175000017500000000033212226342570021432 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs modules = files shadow create_modules = files shadow [import] login_defs = @SRCDIR@/config_login2.defs [files] nonroot = yes [shadow] nonroot = yes libuser-0.60~dfsg/tests/alloc_port.c0000644000175000017500000000347112226342570017546 0ustar tzafrirtzafrir/* Copyright (C) 2011 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #undef NDEBUG #include /* Ask the kernel to allocate a port for 127.0.0.1, and return it. Reusing the port number is inherently racy, but the kernel tends to randomize the returned port number, so this makes collisions (with concurrently running variants of the same test suite) extremely unlikely. */ int main(void) { static const int reuse = 1; struct sockaddr_in sin; socklen_t len; int sock; sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); assert(sock != -1); assert(setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse)) == 0); sin.sin_family = AF_INET; sin.sin_addr.s_addr = inet_addr("127.0.0.1"); sin.sin_port = htons(0); assert(bind(sock, (const struct sockaddr *)&sin, sizeof(sin)) == 0); len = sizeof(sin); assert(getsockname(sock, (struct sockaddr *)&sin, &len) == 0); printf("%d\n", (int)ntohs(sin.sin_port)); close(sock); return EXIT_SUCCESS; } libuser-0.60~dfsg/tests/files_test.py0000644000175000017500000015604012226342570017760 0ustar tzafrirtzafririmport crypt import libuser import os import os.path import unittest LARGE_ID = 2147483648 workdir = os.environ['workdir'] # Test case order matches the order of function pointers in struct lu_module class Tests(unittest.TestCase): def setUp(self): self.a = libuser.admin() # testUsesElevatedPrivileges # Not provided in Python bindings def testUserLookupName1(self): e = self.a.initUser('user2_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user2_1') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user2_1']) del e e = self.a.lookupUserByName('user2_does_not_exist') self.assertEqual(e, None) def testUserLookupName2(self): # Handling of empty/default values e = self.a.lookupUserByName('empty_user') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['empty_user']) self.assertEqual(e[libuser.USERPASSWORD], ['']) self.assertEqual(e[libuser.UIDNUMBER], [42]) self.assertEqual(e[libuser.GIDNUMBER], [43]) self.assertEqual(e[libuser.GECOS], ['']) self.assertEqual(e[libuser.HOMEDIRECTORY], ['']) self.assertEqual(e[libuser.LOGINSHELL], ['/bin/bash']) self.assertEqual(e[libuser.SHADOWNAME], ['empty_user']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['']) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [-1]) self.assertEqual(e[libuser.SHADOWMIN], [-1]) self.assertEqual(e[libuser.SHADOWMAX], [-1]) self.assertEqual(e[libuser.SHADOWWARNING], [-1]) self.assertEqual(e[libuser.SHADOWINACTIVE], [-1]) self.assertEqual(e[libuser.SHADOWEXPIRE], [-1]) self.assertEqual(e[libuser.SHADOWFLAG], [-1]) def testUserLookupName3(self): # Handling of values that appear to be numbers e = self.a.lookupUserByName('077') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['077']) self.assertEqual(e[libuser.USERPASSWORD], ['077']) self.assertEqual(e[libuser.UIDNUMBER], [230]) self.assertEqual(e[libuser.GIDNUMBER], [231]) self.assertEqual(e[libuser.GECOS], ['077']) self.assertEqual(e[libuser.HOMEDIRECTORY], ['077']) self.assertEqual(e[libuser.LOGINSHELL], ['077']) self.assertEqual(e[libuser.SHADOWNAME], ['077']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['077']) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [77]) self.assertEqual(e[libuser.SHADOWMIN], [77]) self.assertEqual(e[libuser.SHADOWMAX], [77]) self.assertEqual(e[libuser.SHADOWWARNING], [77]) self.assertEqual(e[libuser.SHADOWINACTIVE], [77]) self.assertEqual(e[libuser.SHADOWEXPIRE], [77]) self.assertEqual(e[libuser.SHADOWFLAG], [77]) def testUserLookupId(self): e = self.a.initUser('user3_1') self.a.addUser(e, False, False) uid = e[libuser.UIDNUMBER][0] del e e = self.a.lookupUserById(uid) self.assert_(e) self.assertEqual(e[libuser.UIDNUMBER], [uid]) del e e = self.a.lookupUserById(999999) self.assertEqual(e, None) del e e = self.a.lookupUserById(LARGE_ID + 310) self.assertEqual(e, None) def testUserDefault(self): # Test the default/LU_USERNAME = %n preserves usernames that appear to # be numbers e = self.a.initUser('077') self.assertEqual(e[libuser.USERNAME], ['077']) # Setting of USERPASSWORD to "x" tested below def testUserAddPrep(self): # Nothing to do with the "files" module: tests of lu_name_allowed() e = self.a.initUser('very_long_name_123456789_123456789_123456789') self.assertRaises(RuntimeError, self.a.addUser, e, False, False) del e e = self.a.initUser('non_ascii_name_\xff') self.assertRaises(RuntimeError, self.a.addUser, e, False, False) del e e = self.a.initUser('nonprintable_name_\x0a') self.assertRaises(RuntimeError, self.a.addUser, e, False, False) del e e = self.a.initUser('nonprintable_name_\x7f') self.assertRaises(RuntimeError, self.a.addUser, e, False, False) del e e = self.a.initUser('name with spaces') self.assertRaises(RuntimeError, self.a.addUser, e, False, False) del e e = self.a.initUser('-name_with_hyphen') self.assertRaises(RuntimeError, self.a.addUser, e, False, False) del e e = self.a.initUser('0.allowed-Name-TEST_0123456789$') self.a.addUser(e, False, False) def testUserAdd1(self): # A minimal case e = self.a.initUser('user6_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_1') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user6_1']) # Default values self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.LOGINSHELL], ['/bin/bash']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!']) self.assertEqual(e[libuser.SHADOWMIN], [0]) self.assertEqual(e[libuser.SHADOWMAX], [99999]) self.assertEqual(e[libuser.SHADOWWARNING], [7]) self.assertEqual(e[libuser.SHADOWINACTIVE], [-1]) self.assertEqual(e[libuser.SHADOWEXPIRE], [-1]) self.assertEqual(e[libuser.SHADOWFLAG], [-1]) def testUserAdd2(self): # A maximal case e = self.a.initUser('user6_2') e[libuser.USERNAME] = 'user6_2username' e[libuser.USERPASSWORD] = '!!baduser6_2' # Should be ignored e[libuser.UIDNUMBER] = 4237 e[libuser.GIDNUMBER] = 3742 e[libuser.GECOS] = 'Full Name,Office,1234,4321' e[libuser.HOMEDIRECTORY] = '/home/user6_2home' e[libuser.LOGINSHELL] = '/sbin/nologinuser6_2' e[libuser.SHADOWPASSWORD] = '!!user6_2' e[libuser.SHADOWLASTCHANGE] = 12681 e[libuser.SHADOWMIN] = 5 e[libuser.SHADOWMAX] = 98765 e[libuser.SHADOWWARNING] = 10 e[libuser.SHADOWINACTIVE] = 8 e[libuser.SHADOWEXPIRE] = 9 e[libuser.SHADOWFLAG] = 255 e[libuser.COMMONNAME] = 'Common Name' e[libuser.GIVENNAME] = 'Given' e[libuser.SN] = 'Surname' e[libuser.ROOMNUMBER] = 404 e[libuser.TELEPHONENUMBER] = 1234 e[libuser.HOMEPHONE] = 4321 e[libuser.EMAIL] = 'user6_2@example.com' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_2username') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user6_2username']) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.UIDNUMBER], [4237]) self.assertEqual(e[libuser.GIDNUMBER], [3742]) self.assertEqual(e[libuser.GECOS], ['Full Name,Office,1234,4321']) self.assertEqual(e[libuser.HOMEDIRECTORY], ['/home/user6_2home']) self.assertEqual(e[libuser.LOGINSHELL], ['/sbin/nologinuser6_2']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!user6_2'], ) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [12681]) self.assertEqual(e[libuser.SHADOWMIN], [5]) self.assertEqual(e[libuser.SHADOWMAX], [98765]) self.assertEqual(e[libuser.SHADOWWARNING], [10]) self.assertEqual(e[libuser.SHADOWINACTIVE], [8]) self.assertEqual(e[libuser.SHADOWEXPIRE], [9]) self.assertEqual(e[libuser.SHADOWFLAG], [255]) # Not stored by the modules # self.assertEqual(e[libuser.COMMONNAME], ['Common Name']) # self.assertEqual(e[libuser.GIVENNAME], ['Given']) # self.assertEqual(e[libuser.SN], ['Surname']) # self.assertEqual(e[libuser.ROOMNUMBER], [404]) # self.assertEqual(e[libuser.TELEPHONENUMBER], [1234]) # self.assertEqual(e[libuser.HOMEPHONE], [4321]) # self.assertEqual(e[libuser.EMAIL], ['user6_2@example.com']) def testUserAdd3(self): # Large IDs. e = self.a.initUser('user6_3') e[libuser.UIDNUMBER] = LARGE_ID + 630 e[libuser.GIDNUMBER] = LARGE_ID + 631 self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_3') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user6_3']) self.assertEqual(e[libuser.UIDNUMBER], [LARGE_ID + 630]) self.assertEqual(e[libuser.GIDNUMBER], [LARGE_ID + 631]) def testUserAdd4(self): # Error handling when creating the home directory e = self.a.initUser('user6_4') e[libuser.HOMEDIRECTORY] = os.path.join(workdir, 'this_doesnt_exist', 'user6_4') self.assertRaises(RuntimeError, self.a.addUser, e, mkmailspool = False) def testUserAdd5(self): # Non-absolute home directories e = self.a.initUser('user6_5') e[libuser.HOMEDIRECTORY] = 'this_is_a_relative_path' self.assertRaises(RuntimeError, self.a.addUser, e, mkmailspool = False) def testUserAdd6(self): # ':' in field values # libuser.USERPASSWORD not tested because lu_shadow_user_add_prep() # always replaces it by 'x'. libuser.UIDNUMBER not tested because # ent_has_name_and_id() interprets the value as a number. for field in (libuser.USERNAME, libuser.GIDNUMBER, libuser.GECOS, libuser.HOMEDIRECTORY, libuser.SHADOWPASSWORD, libuser.SHADOWLASTCHANGE, libuser.SHADOWMIN, libuser.SHADOWMAX, libuser.SHADOWWARNING, libuser.SHADOWINACTIVE, libuser.SHADOWEXPIRE): e = self.a.initUser('user_6_6' + field) e[field] = str(e[field][0]) + ':x' self.assertRaises(RuntimeError, self.a.addUser, e, False, False) # libuser.SHADOWFLAG not tested because it is parsed as an integer e = self.a.initUser('user_6_6' + libuser.LOGINSHELL) e[libuser.LOGINSHELL] = e[libuser.LOGINSHELL][0] + ':x' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user_6_6' + libuser.LOGINSHELL) self.assert_(':' in e[libuser.LOGINSHELL][0]) def testUserAdd7(self): # Let the user specify dangerous/dubious home directory paths explicitly for name in ('.', '..'): e = self.a.initUser(name) e[libuser.HOMEDIRECTORY] = '/home/' + name self.a.addUser(e, False, False) del e e = self.a.lookupUserByName(name) self.assertEqual(e[libuser.HOMEDIRECTORY], ['/home/' + name]) self.a.deleteUser(e, False, False) e = self.a.initUser('user6_7') e[libuser.HOMEDIRECTORY] = '/home/..' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_7') self.assertEqual(e[libuser.HOMEDIRECTORY], ['/home/..']) # ... but never create such home directory paths by default for name in ('.', '..'): e = self.a.initUser(name) self.assertRaises(RuntimeError, self.a.addUser, e, False, False) def testUserAdd8(self): # Adding duplicate entries e = self.a.initUser('user6_8') self.a.addUser(e, False, False) del e e = self.a.initUser('user6_8') self.assertRaises(RuntimeError, self.a.addUser, e, False, False) def testUserMod1(self): # A minimal case e = self.a.initUser('user7_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_1') self.assertNotEqual(e[libuser.GECOS], ['user7newGECOS']) e[libuser.GECOS] = 'user7newGECOS' self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user7_1') self.assertEqual(e[libuser.GECOS], ['user7newGECOS']) def testUserMod2(self): # A maximal case, including renaming e = self.a.initUser('user7_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_2') self.assertNotEqual(e[libuser.USERNAME], ['user7_2username']) e[libuser.USERNAME] = 'user7_2username' self.assertNotEqual(e[libuser.USERPASSWORD], ['!!pwuser7_2']) e[libuser.USERPASSWORD] = '!!pwuser7_2' self.assertNotEqual(e[libuser.UIDNUMBER], [4237]) e[libuser.UIDNUMBER] = 4237 self.assertNotEqual(e[libuser.GIDNUMBER], [3742]) e[libuser.GIDNUMBER] = 3742 self.assertNotEqual(e[libuser.GECOS], ['Full Name,Office,1234,4321']) e[libuser.GECOS] = 'Full Name,Office,1234,4321' self.assertNotEqual(e[libuser.HOMEDIRECTORY], ['/home/user7_2home']) e[libuser.HOMEDIRECTORY] = '/home/user7_2home' self.assertNotEqual(e[libuser.LOGINSHELL], ['/sbin/nologinuser7_2']) e[libuser.LOGINSHELL] = '/sbin/nologinuser7_2' self.assertNotEqual(e[libuser.SHADOWPASSWORD], ['!!user7_2']) e[libuser.SHADOWPASSWORD] = '!!user7_2' self.assertNotEqual(e[libuser.SHADOWLASTCHANGE], [12681]) e[libuser.SHADOWLASTCHANGE] = 12681 self.assertNotEqual(e[libuser.SHADOWMIN], [5]) e[libuser.SHADOWMIN] = 5 self.assertNotEqual(e[libuser.SHADOWMAX], [98765]) e[libuser.SHADOWMAX] = 98765 self.assertNotEqual(e[libuser.SHADOWWARNING], [10]) e[libuser.SHADOWWARNING] = 10 self.assertNotEqual(e[libuser.SHADOWINACTIVE], [8]) e[libuser.SHADOWINACTIVE] = 8 self.assertNotEqual(e[libuser.SHADOWEXPIRE], [9]) e[libuser.SHADOWEXPIRE] = 9 self.assertNotEqual(e[libuser.SHADOWFLAG], [255]) e[libuser.SHADOWFLAG] = 255 self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user7_2') self.assertEqual(e, None) del e e = self.a.lookupUserByName('user7_2username') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user7_2username']) self.assertEqual(e[libuser.USERPASSWORD], ['!!pwuser7_2']) self.assertEqual(e[libuser.UIDNUMBER], [4237]) self.assertEqual(e[libuser.GIDNUMBER], [3742]) self.assertEqual(e[libuser.GECOS], ['Full Name,Office,1234,4321']) self.assertEqual(e[libuser.HOMEDIRECTORY], ['/home/user7_2home']) self.assertEqual(e[libuser.LOGINSHELL], ['/sbin/nologinuser7_2']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!user7_2']) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [12681]) self.assertEqual(e[libuser.SHADOWMIN], [5]) self.assertEqual(e[libuser.SHADOWMAX], [98765]) self.assertEqual(e[libuser.SHADOWWARNING], [10]) self.assertEqual(e[libuser.SHADOWINACTIVE], [8]) self.assertEqual(e[libuser.SHADOWEXPIRE], [9]) self.assertEqual(e[libuser.SHADOWFLAG], [255]) def testUserMod3(self): # Large IDs e = self.a.initUser('user7_3') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_3') self.assertNotEqual(e[libuser.UIDNUMBER], [LARGE_ID + 730]) e[libuser.UIDNUMBER] = LARGE_ID + 730 self.assertNotEqual(e[libuser.GIDNUMBER], [LARGE_ID + 731]) e[libuser.GIDNUMBER] = LARGE_ID + 731 self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user7_3') self.assert_(e) self.assertEqual(e[libuser.UIDNUMBER], [LARGE_ID + 730]) self.assertEqual(e[libuser.GIDNUMBER], [LARGE_ID + 731]) def testUserMod4(self): # Some of the attributes are not present e = self.a.initUser('user7_4') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_4') e.clear(libuser.SHADOWFLAG) e.clear(libuser.SHADOWMAX) self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user7_4') self.assert_(e) self.assertEqual(e[libuser.SHADOWMAX], [-1]) self.assertEqual(e[libuser.SHADOWFLAG], [-1]) def testUserMod5(self): # ':' in field values # libuser.USERPASSWORD not tested because lu_shadow_user_add_prep() # always replaces it by 'x'. libuser.UIDNUMBER not tested because # ent_has_name_and_id() interprets the value as a number. for field in (libuser.USERNAME, libuser.USERPASSWORD, libuser.GIDNUMBER, libuser.GECOS, libuser.HOMEDIRECTORY, libuser.SHADOWPASSWORD, libuser.SHADOWLASTCHANGE, libuser.SHADOWMIN, libuser.SHADOWMAX, libuser.SHADOWWARNING, libuser.SHADOWINACTIVE, libuser.SHADOWEXPIRE): e = self.a.initUser('user7_5' + field) self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_5' + field) self.assert_(e) self.assert_(':' not in str(e[field][0])) e[field] = str(e[field][0]) + ':x' self.assertRaises(RuntimeError, self.a.modifyUser, e, False) # libuser.SHADOWFLAG not tested because it is parsed as an integer e = self.a.initUser('user7_5') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_5') self.assert_(e) self.assert_(':' not in e[libuser.LOGINSHELL][0]) e[libuser.LOGINSHELL] = e[libuser.LOGINSHELL][0] + ':x' self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user7_5') self.assert_(e) self.assert_(':' in e[libuser.LOGINSHELL][0]) def testUserMod6(self): # Nothing to do with the files module: test lu_name_allowed is called. e = self.a.initUser('user7_6') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_6') e[libuser.USERNAME] = 'very_long_name_123456789_123456789_123456789' self.assertRaises(RuntimeError, self.a.modifyUser, e, False) del e def testUserMod7(self): # Renaming to create duplicate entries e = self.a.initUser('user7_7') self.a.addUser(e, False, False) del e e = self.a.initUser('user7_8') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_8') e[libuser.USERNAME] = 'user7_7' self.assertRaises(RuntimeError, self.a.modifyUser, e, False) def testUserDel(self): e = self.a.initUser('user8_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user8_1') self.assert_(e) self.a.deleteUser(e, False, False) del e e = self.a.lookupUserByName('user8_1') self.assertEqual(e, None) def testUserLock1(self): e = self.a.initUser('user9_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user9_1') self.a.setpassUser(e, '00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['00as1wm0AZG56']) self.a.lockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!00as1wm0AZG56']) def testUserLock2(self): e = self.a.initUser('user9_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user9_2') self.a.setpassUser(e, '!!00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!00as1wm0AZG56']) self.a.lockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!00as1wm0AZG56']) def testUserUnlock1(self): e = self.a.initUser('user10_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user10_1') self.a.setpassUser(e, '!!00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!00as1wm0AZG56']) self.a.unlockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['00as1wm0AZG56']) def testUserUnlock2(self): e = self.a.initUser('user10_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user10_2') self.a.setpassUser(e, '00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['00as1wm0AZG56']) self.a.unlockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['00as1wm0AZG56']) def testUserUnlock3(self): e = self.a.initUser('user10_3') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user10_3') self.a.setpassUser(e, '!!', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!']) self.a.unlockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['']) def testUserUnlockNonempty1(self): e = self.a.initUser('user32_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user32_1') self.a.setpassUser(e, '!!00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!00as1wm0AZG56']) self.a.unlockUser(e, True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['00as1wm0AZG56']) def testUserUnlockNonempty2(self): e = self.a.initUser('user32_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user32_2') self.a.setpassUser(e, '00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['00as1wm0AZG56']) self.a.unlockUser(e, True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['00as1wm0AZG56']) def testUserUnlockNonempty3(self): e = self.a.initUser('user32_3') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user32_3') self.a.setpassUser(e, '!!', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!']) self.assertRaises(RuntimeError, self.a.unlockUser, e, True) del e e = self.a.lookupUserByName('user32_3') self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!']) def testUserIslocked1(self): e = self.a.initUser('user11_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user11_1') self.a.setpassUser(e, '!!01aK1FxKE9YVU', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!01aK1FxKE9YVU']) self.assertEqual(self.a.userIsLocked(e), 1) def testUserIslocked2(self): e = self.a.initUser('user11_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user11_2') self.a.setpassUser(e, '01aK1FxKE9YVU', True) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['01aK1FxKE9YVU']) self.assertEqual(self.a.userIsLocked(e), 0) def testUserSetpass1(self): e = self.a.initUser('user12_1') e[libuser.SHADOWPASSWORD] = '02oawyZdjhhpg' e[libuser.SHADOWLASTCHANGE] = 100 self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user12_1') self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['02oawyZdjhhpg']) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [100]) self.a.setpassUser(e, 'password', False) del e e = self.a.lookupUserByName('user12_1') self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD][0][:3], '$1$') crypted = crypt.crypt('password', e[libuser.SHADOWPASSWORD][0]) self.assertEqual(e[libuser.SHADOWPASSWORD], [crypted]) self.assert_(e[libuser.SHADOWLASTCHANGE][0] > 10000) def testUserSetpass2(self): # Forcing the non-shadow password to 'x' e = self.a.initUser('user12_2') e[libuser.USERPASSWORD] = '*' e[libuser.SHADOWPASSWORD] = '08lnuxCM.c36E' self.a.addUser(e, False, False) del e # shadow module's addUser forces USERPASSWORD to 'x' e = self.a.lookupUserByName('user12_2') self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['08lnuxCM.c36E']) e[libuser.USERPASSWORD] = '*' self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user12_2') self.assertEqual(e[libuser.USERPASSWORD], ['*']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['08lnuxCM.c36E']) self.a.setpassUser(e, 'password', False) self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD][0][:3], '$1$') crypted = crypt.crypt('password', e[libuser.SHADOWPASSWORD][0]) self.assertEqual(e[libuser.SHADOWPASSWORD], [crypted]) def testUserSetpass3(self): # Overriding an invalid encrypted password e = self.a.lookupUserByName('user12_3') self.assertEqual(e[libuser.USERPASSWORD], ['*']) self.assertRaises(KeyError, lambda: e[libuser.SHADOWPASSWORD]) self.a.setpassUser(e, 'password', False) crypted = crypt.crypt('password', e[libuser.USERPASSWORD][0]) self.assertEqual(e[libuser.USERPASSWORD], [crypted]) self.assertEqual(e[libuser.USERPASSWORD][0][:3], '$1$') self.assertRaises(KeyError, lambda: e[libuser.SHADOWPASSWORD]) def testUserSetpass4(self): # ':' in field value e = self.a.initUser('user12_4') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user12_4') self.assert_(':' not in e[libuser.SHADOWPASSWORD][0]) self.assertRaises(SystemError, self.a.setpassUser, e, 'a:b', True) self.a.setpassUser(e, 'a:b', False) del e e = self.a.lookupUserByName('user12_4') self.assertEqual(e[libuser.SHADOWPASSWORD][0][:3], '$1$') self.assert_(':' not in e[libuser.SHADOWPASSWORD][0]) crypted = crypt.crypt('a:b', e[libuser.SHADOWPASSWORD][0]) self.assertEqual(e[libuser.SHADOWPASSWORD], [crypted]) def testUserRemovepass(self): e = self.a.initUser('user13_1') e[libuser.SHADOWPASSWORD] = '03dgZm5nZvqOc' e[libuser.SHADOWLASTCHANGE] = 100 self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user13_1') self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['03dgZm5nZvqOc']) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [100]) self.a.removepassUser(e) del e e = self.a.lookupUserByName('user13_1') self.assertEqual(e[libuser.USERPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['']) self.assert_(e[libuser.SHADOWLASTCHANGE][0] > 10000) def testUsersEnumerate1(self): e = self.a.initUser('user14_1') self.a.addUser(e, False, False) e = self.a.initUser('user14_2') self.a.addUser(e, False, False) v = self.a.enumerateUsers('user14*') v.sort() self.assertEqual(v, ['user14_1', 'user14_2']) def testUsersEnumerate2(self): v = [name for name in self.a.enumerateUsers('*') if name.startswith('-') or name.startswith('+')] self.assertEqual(v, []) def testUsersEnumerateByGroup1(self): gid = 1501 # Hopefully unique e = self.a.initGroup('group15_1') e[libuser.GIDNUMBER] = gid e[libuser.MEMBERNAME] = 'user15_2' self.a.addGroup(e) e = self.a.initUser('user15_1') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initUser('user15_2') e[libuser.GIDNUMBER] = gid + 10 self.a.addUser(e, False, False) v = self.a.enumerateUsersByGroup('group15_1') v.sort() self.assertEqual(v, ['user15_1', 'user15_2']) def testUsersEnumerateByGroup2(self): gid = 1502 # Hopefully unique e = self.a.initGroup('group15_2') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) e = self.a.initUser('user15_3') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) self.assertEqual(self.a.enumerateUsersByGroup('group15_2'), ['user15_3']) def testUsersEnumerateByGroup3(self): gid = 1503 # Hopefully unique e = self.a.initGroup('group15_3') e[libuser.GIDNUMBER] = gid e[libuser.MEMBERNAME] = 'user15_4' self.a.addGroup(e) e = self.a.initUser('user15_4') e[libuser.GIDNUMBER] = gid + 10 self.a.addUser(e, False, False) self.assertEqual(self.a.enumerateUsersByGroup('group15_3'), ['user15_4']) def testUsersEnumerateByGroup4(self): # Data set up in files_test self.assertEqual(self.a.enumerateUsersByGroup('group15_4'), []) def testUsersEnumerateByGroupFull1(self): gid = 3401 # Hopefully unique e = self.a.initGroup('group34_1') e[libuser.GIDNUMBER] = gid e[libuser.MEMBERNAME] = 'user34_2' self.a.addGroup(e) e = self.a.initUser('user34_1') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initUser('user34_2') e[libuser.GIDNUMBER] = gid + 10 self.a.addUser(e, False, False) v = map(lambda x: x[libuser.USERNAME], self.a.enumerateUsersByGroupFull('group34_1')) v.sort() self.assertEqual(v, [['user34_1'], ['user34_2']]) def testUsersEnumerateByGroupFull2(self): gid = 3402 # Hopefully unique e = self.a.initGroup('group34_2') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) e = self.a.initUser('user34_3') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) v = map(lambda x: x[libuser.USERNAME], self.a.enumerateUsersByGroupFull('group34_2')) self.assertEqual(v, [['user34_3']]) def testUsersEnumerateByGroupFull3(self): gid = 3403 # Hopefully unique e = self.a.initGroup('group34_3') e[libuser.GIDNUMBER] = gid e[libuser.MEMBERNAME] = 'user34_4' self.a.addGroup(e) e = self.a.initUser('user34_4') e[libuser.GIDNUMBER] = gid + 10 self.a.addUser(e, False, False) v = map(lambda x: x[libuser.USERNAME], self.a.enumerateUsersByGroupFull('group34_3')) self.assertEqual(v, [['user34_4']]) def testUsersEnumerateFull1(self): e = self.a.initUser('user16_1') self.a.addUser(e, False, False) e = self.a.initUser('user16_2') self.a.addUser(e, False, False) v = [x[libuser.USERNAME] for x in self.a.enumerateUsersFull('user16*')] v.sort() self.assertEqual(v, [['user16_1'], ['user16_2']]) def testUsersEnumerateFull2(self): v = [x[libuser.USERNAME] for x in self.a.enumerateUsersFull('*')] v = [name for (name,) in v if name.startswith('-') or name.startswith('+')] self.assertEqual(v, []) def testUsersEnumerateFull3(self): # Only the user name is matched e = self.a.initUser('user16_3') self.a.addUser(e, False, False) self.assertEqual(self.a.enumerateUsersFull('user16_3:*'), []) def testGroupLookupName1(self): e = self.a.initGroup('group17_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group17_1') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group17_1']) del e e = self.a.lookupGroupByName('group17_does_not_exist') self.assertEqual(e, None) def testGroupLookupName2(self): # Handling of empty/default values e = self.a.lookupGroupByName('empty_group') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['empty_group']) self.assertEqual(e[libuser.GROUPPASSWORD], ['']) self.assertEqual(e[libuser.GIDNUMBER], [44]) self.assertRaises(KeyError, lambda: e[libuser.MEMBERNAME]) self.assertEqual(e[libuser.SHADOWPASSWORD], ['']) self.assertRaises(KeyError, lambda: e[libuser.ADMINISTRATORNAME]) def testGroupLookupName3(self): # Handling of values that appear to be numbers e = self.a.lookupGroupByName('077') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['077']) self.assertEqual(e[libuser.GROUPPASSWORD], ['077']) self.assertEqual(e[libuser.GIDNUMBER], [1730]) self.assertEqual(e[libuser.MEMBERNAME], ['077']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['077']) self.assertEqual(e[libuser.ADMINISTRATORNAME], ['077']) def testGroupLookupId(self): e = self.a.initGroup('group18_1') self.a.addGroup(e) gid = e[libuser.GIDNUMBER][0] del e e = self.a.lookupGroupById(gid) self.assert_(e) self.assertEqual(e[libuser.GIDNUMBER], [gid]) del e e = self.a.lookupGroupById(999999) self.assertEqual(e, None) del e e = self.a.lookupGroupById(LARGE_ID + 1810) self.assertEqual(e, None) def testGroupDefault(self): # Test the default/LU_GROUPNAME = %n preserves groupnames that appear # to be numbers e = self.a.initGroup('077') self.assertEqual(e[libuser.GROUPNAME], ['077']) # testGroupAddPrep # Setting of GROUPPASSWORD to "x" tested below def testGroupAdd1(self): # A minimal case e = self.a.initGroup('group21_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group21_1') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group21_1']) # Default values self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!']) def testGroupAdd2(self): # A maximal case e = self.a.initGroup('group21_2') e[libuser.GROUPNAME] = 'group21_2groupname' e[libuser.GROUPPASSWORD] = '!!badgroup21_2' # Should be ignored e[libuser.GIDNUMBER] = 4237 e[libuser.MEMBERNAME] = ['group21_2member1', 'group21_2member2'] e[libuser.SHADOWPASSWORD] = '!!group21_2' self.a.addGroup(e) del e e = self.a.lookupGroupByName('group21_2groupname') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group21_2groupname']) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.GIDNUMBER], [4237]) v = e[libuser.MEMBERNAME] v.sort() self.assertEqual(v, ['group21_2member1', 'group21_2member2']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!group21_2']) def testGroupAdd3(self): # Large IDs e = self.a.initGroup('group21_3') e[libuser.GIDNUMBER] = LARGE_ID + 2130 self.a.addGroup(e) del e e = self.a.lookupGroupByName('group21_3') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group21_3']) self.assertEqual(e[libuser.GIDNUMBER], [LARGE_ID + 2130]) def testGroupAdd4(self): # ':' in field values # libuser.GROUPPASSWORD not tested because lu_shadow_group_add_prep() # always replaces it by 'x'. libuser.GIDNUMBER not tested because # ent_has_name_and_id() interprets the value as a number. for field in (libuser.GROUPNAME, libuser.SHADOWPASSWORD, libuser.ADMINISTRATORNAME): e = self.a.initGroup('group_21_4' + field) if e.has_key(field): e[field] = str(e[field][0]) + ':x' else: e[field] = field + ':x' self.assertRaises(RuntimeError, self.a.addGroup, e) e = self.a.initGroup('group21_4' + libuser.MEMBERNAME) e[libuser.MEMBERNAME] = 'group21_4:member' self.a.addGroup(e) del e e = self.a.lookupGroupByName('group21_4' + libuser.MEMBERNAME) self.assertEqual(e[libuser.MEMBERNAME], ['group21_4:member']) def testGroupAdd5(self): # Adding duplicate entries e = self.a.initGroup('group21_5') self.a.addGroup(e) del e e = self.a.initGroup('group21_5') self.assertRaises(RuntimeError, self.a.addGroup, e) def testGroupMod1(self): # A minimal case e = self.a.initGroup('group22_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_1') self.assertRaises(KeyError, lambda x: x[libuser.MEMBERNAME], e) e[libuser.MEMBERNAME] = 'group22_1member' self.a.modifyGroup(e) del e e = self.a.lookupGroupByName('group22_1') self.assertEqual(e[libuser.MEMBERNAME], ['group22_1member']) def testGroupMod2(self): # A maximal case, including renaming e = self.a.initGroup('group22_2') e[libuser.MEMBERNAME] = ['group22_2member1', 'group22_2member2'] self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_2') self.assertNotEqual(e[libuser.GROUPNAME], ['group22_2groupname']) e[libuser.GROUPNAME] = 'group22_2groupname' self.assertNotEqual(e[libuser.GROUPPASSWORD], ['!!grgroup22_2']) e[libuser.GROUPPASSWORD] = '!!grgroup22_2' self.assertNotEqual(e[libuser.GIDNUMBER], [4237]) e[libuser.GIDNUMBER] = 4237 v = e[libuser.MEMBERNAME] v.sort() self.assertNotEqual(v, ['group22_2member1', 'group22_2member3']) e[libuser.MEMBERNAME] = ['group22_2member1', 'group22_2member3'] self.assertNotEqual(e[libuser.SHADOWPASSWORD], ['!!group22_2']) e[libuser.SHADOWPASSWORD] = '!!group22_2' self.a.modifyGroup(e) del e e = self.a.lookupGroupByName('group22_2') self.assertEqual(e, None) del e e = self.a.lookupGroupByName('group22_2groupname') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group22_2groupname']) self.assertEqual(e[libuser.GROUPPASSWORD], ['!!grgroup22_2']) self.assertEqual(e[libuser.GIDNUMBER], [4237]) v = e[libuser.MEMBERNAME] v.sort() self.assertEqual(v, ['group22_2member1', 'group22_2member3']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!group22_2']) def testGroupMod3(self): # Large IDs e = self.a.initGroup('group22_3') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_3') self.assertNotEqual(e[libuser.GIDNUMBER], [LARGE_ID + 2230]) e[libuser.GIDNUMBER] = LARGE_ID + 2230 self.a.modifyGroup(e) del e e = self.a.lookupGroupByName('group22_3') self.assert_(e) self.assertEqual(e[libuser.GIDNUMBER], [LARGE_ID + 2230]) def testGroupMod4(self): # ':' in field values # libuser.GIDNUMBER not tested because ent_has_name_and_id() interprets # the value as a number. for field in (libuser.GROUPNAME, libuser.GROUPPASSWORD, libuser.SHADOWPASSWORD, libuser.ADMINISTRATORNAME): e = self.a.initGroup('group22_4' + field) self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_4' + field) self.assert_(e) if e.has_key(field): self.assert_(':' not in str(e[field][0])) e[field] = str(e[field][0]) + ':x' else: e[field] = field + ':x' self.assertRaises(RuntimeError, self.a.modifyGroup, e) e = self.a.initGroup('group22_4' + libuser.MEMBERNAME) self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_4' + libuser.MEMBERNAME) self.assert_(e) not e.has_key(libuser.MEMBERNAME) e[libuser.MEMBERNAME] = 'group22_4:member' self.a.modifyGroup(e) del e e = self.a.lookupGroupByName('group22_4' + libuser.MEMBERNAME) self.assert_(e) self.assertEqual(e[libuser.MEMBERNAME], ['group22_4:member']) def testGroupMod5(self): # Nothing to do with the files module: test lu_name_allowed is called. e = self.a.initGroup('group22_5') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_5') e[libuser.GROUPNAME] = 'very_long_name_123456789_123456789_123456789' self.assertRaises(RuntimeError, self.a.modifyGroup, e) del e def testGroupMod6(self): # Renaming to create duplicate entries e = self.a.initGroup('group22_6') self.a.addGroup(e) del e e = self.a.initGroup('group22_7') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_7') e[libuser.GROUPNAME] = 'group22_6' self.assertRaises(RuntimeError, self.a.modifyGroup, e) def testGroupDel(self): e = self.a.initGroup('group23_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group23_1') self.assert_(e) self.a.deleteGroup(e) del e e = self.a.lookupGroupByName('group23_1') self.assertEqual(e, None) def testGroupLock1(self): e = self.a.initGroup('group24_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group24_1') self.a.setpassGroup(e, '04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['04cmES7HM6wtg']) self.a.lockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!04cmES7HM6wtg']) def testGroupLock2(self): e = self.a.initGroup('group24_2') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group24_2') self.a.setpassGroup(e, '!!04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!04cmES7HM6wtg']) self.a.lockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!04cmES7HM6wtg']) def testGroupUnlock1(self): e = self.a.initGroup('group25_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group25_1') self.a.setpassGroup(e, '!!04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!04cmES7HM6wtg']) self.a.unlockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['04cmES7HM6wtg']) def testGroupUnlock2(self): e = self.a.initGroup('group25_2') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group25_2') self.a.setpassGroup(e, '04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['04cmES7HM6wtg']) self.a.unlockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['04cmES7HM6wtg']) def testGroupUnlock3(self): e = self.a.initGroup('group25_3') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group25_3') self.a.setpassGroup(e, '!!', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!']) self.a.unlockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['']) def testGroupUnlockNonempty1(self): e = self.a.initGroup('group33_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group33_1') self.a.setpassGroup(e, '!!04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!04cmES7HM6wtg']) self.a.unlockGroup(e, True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['04cmES7HM6wtg']) def testGroupUnlockNonempty2(self): e = self.a.initGroup('group33_2') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group33_2') self.a.setpassGroup(e, '04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['04cmES7HM6wtg']) self.a.unlockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['04cmES7HM6wtg']) def testGroupUnlockNonempty3(self): e = self.a.initGroup('group33_3') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group33_3') self.a.setpassGroup(e, '!!', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!']) self.assertRaises(RuntimeError, self.a.unlockGroup, e, True) del e e = self.a.lookupGroupByName('group33_3') self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!']) def testGroupIsLocked1(self): e = self.a.initGroup('group26_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group26_1') self.a.setpassGroup(e, '!!05/lfLEyErrp2', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['!!05/lfLEyErrp2']) self.assertEqual(self.a.groupIsLocked(e), 1) def testGroupIsLocked2(self): e = self.a.initGroup('group26_2') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group26_2') self.a.setpassGroup(e, '05/lfLEyErrp2', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['05/lfLEyErrp2']) self.assertEqual(self.a.groupIsLocked(e), 0) def testGroupSetpass1(self): e = self.a.initGroup('group27_1') e[libuser.SHADOWPASSWORD] = '06aZrb3pzuu/6' self.a.addGroup(e) del e e = self.a.lookupGroupByName('group27_1') self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['06aZrb3pzuu/6']) self.a.setpassGroup(e, 'password', False) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD][0][:3], '$1$') crypted = crypt.crypt('password', e[libuser.SHADOWPASSWORD][0]) self.assertEqual(e[libuser.SHADOWPASSWORD], [crypted]) def testGroupSetpass2(self): # Forcing the non-shadow password to 'x' e = self.a.initGroup('group27_2') e[libuser.GROUPPASSWORD] = '*' e[libuser.SHADOWPASSWORD] = '07ZZy2Pihe/gg' self.a.addGroup(e) del e # shadow module's addGroup forces GROUPPASSWORD to 'x' e = self.a.lookupGroupByName('group27_2') self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['07ZZy2Pihe/gg']) e[libuser.GROUPPASSWORD] = '*' self.a.modifyGroup(e) del e e = self.a.lookupGroupByName('group27_2') self.assertEqual(e[libuser.GROUPPASSWORD], ['*']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['07ZZy2Pihe/gg']) self.a.setpassGroup(e, 'password', False) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD][0][:3], '$1$') crypted = crypt.crypt('password', e[libuser.SHADOWPASSWORD][0]) self.assertEqual(e[libuser.SHADOWPASSWORD], [crypted]) def testGroupSetpass3(self): # Overriding an invalid encrypted password e = self.a.lookupGroupByName('group27_3') self.assertEqual(e[libuser.GROUPPASSWORD], ['*']) self.assertRaises(KeyError, lambda: e[libuser.SHADOWPASSWORD]) self.a.setpassGroup(e, 'password', False) crypted = crypt.crypt('password', e[libuser.GROUPPASSWORD][0]) self.assertEqual(e[libuser.GROUPPASSWORD], [crypted]) self.assertEqual(e[libuser.GROUPPASSWORD][0][:3], '$1$') self.assertRaises(KeyError, lambda: e[libuser.SHADOWPASSWORD]) def testGroupSetpass4(self): # ':' in field value e = self.a.initGroup('group27_4') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group27_4') self.assert_(':' not in e[libuser.SHADOWPASSWORD][0]) self.assertRaises(SystemError, self.a.setpassGroup, e, 'a:b', True) self.a.setpassGroup(e, 'a:b', False) del e e = self.a.lookupGroupByName('group27_4') self.assertEqual(e[libuser.SHADOWPASSWORD][0][:3], '$1$') self.assert_(':' not in e[libuser.SHADOWPASSWORD][0]) crypted = crypt.crypt('a:b', e[libuser.SHADOWPASSWORD][0]) self.assertEqual(e[libuser.SHADOWPASSWORD], [crypted]) def testGroupRemovepass(self): e = self.a.initGroup('group28_1') e[libuser.SHADOWPASSWORD] = '07Js7N.eEhbgs' self.a.addGroup(e) del e e = self.a.lookupGroupByName('group28_1') self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['07Js7N.eEhbgs']) self.a.removepassGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['x']) self.assertEqual(e[libuser.SHADOWPASSWORD], ['']) def testGroupsEnumerate1(self): e = self.a.initGroup('group29_1') self.a.addGroup(e) e = self.a.initGroup('group29_2') self.a.addGroup(e) v = self.a.enumerateGroups('group29*') v.sort() self.assertEqual(v, ['group29_1', 'group29_2']) def testGroupsEnumerate2(self): v = [name for name in self.a.enumerateGroups('*') if name.startswith('-') or name.startswith('+')] self.assertEqual(v, []) def testGroupsEnumerateByUser1(self): gid = 3001 # Hopefully unique e = self.a.initUser('user30_1') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group30_1') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) e = self.a.initGroup('group30_2') e[libuser.GIDNUMBER] = gid + 10 e[libuser.MEMBERNAME] = 'user30_1' self.a.addGroup(e) v = self.a.enumerateGroupsByUser('user30_1') v.sort() self.assertEqual(v, ['group30_1', 'group30_2']) def testGroupsEnumerateByUser2(self): gid = 3002 # Hopefully unique e = self.a.initUser('user30_2') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group30_3') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) self.assertEqual(self.a.enumerateGroupsByUser('user30_2'), ['group30_3']) def testGroupsEnumerateByUser3(self): gid = 3003 # Hopefully unique e = self.a.initUser('user30_3') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group30_4') e[libuser.GIDNUMBER] = gid + 10 e[libuser.MEMBERNAME] = 'user30_3' self.a.addGroup(e) self.assertEqual(self.a.enumerateGroupsByUser('user30_3'), ['group30_4']) def testGroupsEnumerateByUser4(self): # Data set up in files_test self.assertEqual(self.a.enumerateGroupsByUser('user30_4'), []) def testGroupsEnumerateByUserFull1(self): gid = 3501 # Hopefully unique e = self.a.initUser('user35_1') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group35_1') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) e = self.a.initGroup('group35_2') e[libuser.GIDNUMBER] = gid + 10 e[libuser.MEMBERNAME] = 'user35_1' self.a.addGroup(e) v = map(lambda x: x[libuser.GROUPNAME], self.a.enumerateGroupsByUserFull('user35_1')) v.sort() self.assertEqual(v, [['group35_1'], ['group35_2']]) def testGroupsEnumerateByUserFull2(self): gid = 3502 # Hopefully unique e = self.a.initUser('user35_2') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group35_3') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) v = map(lambda x: x[libuser.GROUPNAME], self.a.enumerateGroupsByUserFull('user35_2')) self.assertEqual(v, [['group35_3']]) def testGroupsEnumerateByUserFull3(self): gid = 3503 # Hopefully unique e = self.a.initUser('user35_3') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group35_4') e[libuser.GIDNUMBER] = gid + 10 e[libuser.MEMBERNAME] = 'user35_3' self.a.addGroup(e) v = map(lambda x: x[libuser.GROUPNAME], self.a.enumerateGroupsByUserFull('user35_3')) self.assertEqual(v, [['group35_4']]) def testGroupsEnumerateFull1(self): e = self.a.initGroup('group31_1') self.a.addGroup(e) e = self.a.initGroup('group31_2') self.a.addGroup(e) v = [x[libuser.GROUPNAME] for x in self.a.enumerateGroupsFull('group31*')] v.sort() self.assertEqual(v, [['group31_1'], ['group31_2']]) def testGroupsEnumerateFull2(self): v = [x[libuser.GROUPNAME] for x in self.a.enumerateGroupsFull('*')] v = [name for (name,) in v if name.startswith('-') or name.startswith('+')] self.assertEqual(v, []) def testGroupsEnumerateFull3(self): # Only the user name is matched e = self.a.initGroup('group31_3') self.a.addGroup(e) self.assertEqual(self.a.enumerateGroupsFull('group31_3:*'), []) # ValidateIdValue is unrelated to the files module. def testValidateIdValue(self): libuser.validateIdValue(0) libuser.validateIdValue(1) libuser.validateIdValue(500) libuser.validateIdValue(500L) self.assertRaises(TypeError, libuser.validateIdValue, 'abc') # OverflowError if id_t is unsigned, ValueError otherwise self.assertRaises((ValueError, OverflowError), libuser.validateIdValue, -1) self.assertRaises((ValueError, OverflowError), libuser.validateIdValue, -2) self.assertRaises(ValueError, libuser.validateIdValue, libuser.VALUE_INVALID_ID) if libuser.VALUE_INVALID_ID > 0: libuser.validateIdValue(libuser.VALUE_INVALID_ID - 1) if libuser.VALUE_INVALID_ID < 2 ** 64 - 1: self.assertRaises(OverflowError, libuser.validateIdValue, 2 ** 64 - 1) def tearDown(self): del self.a if __name__ == '__main__': unittest.main() libuser-0.60~dfsg/tests/files_test0000755000175000017500000000374312226342570017335 0ustar tzafrirtzafrir#! /bin/sh # Automated files/shadow regression tester # # Copyright (c) 2004 Red Hat, Inc. All rights reserved. # # This is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: Miloslav Trmac srcdir=$srcdir/tests workdir=$(pwd)/test_files trap 'status=$?; rm -rf "$workdir"; exit $status' 0 trap '(exit 1); exit 1' 1 2 13 15 rm -rf "$workdir" mkdir "$workdir" # Set up an the environment mkdir "$workdir"/files cat > "$workdir"/files/passwd <<\EOF empty_user::42:43::: 077:077:230:231:077:077:077 +:::::: -nonis_user:::::: +nis_user:::1504::: user12_3:*:1203:1203::: user30_4::3004:3004::: EOF cat > "$workdir"/files/shadow <<\EOF empty_user:::::::: 077:077:077:077:077:077:077:077:077 +:::::::: -nonis_user:::::::: +nis_user:::::::: EOF cat > "$workdir"/files/group <<\EOF empty_group::44: 077:077:1730:077 +::: +nis_group:::user30_4 -nonis_group::: group15_4::1504: group27_3:*:2703: EOF cat > "$workdir"/files/gshadow <<\EOF empty_group::: 077:077:077:077 EOF # Set up the client LIBUSER_CONF=$workdir/libuser.conf export LIBUSER_CONF sed "s|@WORKDIR@|$workdir|g; s|@TOP_BUILDDIR@|$(pwd)|g" \ < "$srcdir"/files.conf.in > "$LIBUSER_CONF" # Ugly non-portable hacks LD_LIBRARY_PATH=$(pwd)/lib/.libs export LD_LIBRARY_PATH PYTHONPATH=$(pwd)/python/.libs export PYTHONPATH workdir="$workdir" $VALGRIND python "$srcdir"/files_test.py libuser-0.60~dfsg/tests/fs_test.py0000644000175000017500000000402212226342570017256 0ustar tzafrirtzafrir# Helpers for fs_test. # -*- coding: utf-8 -*- # # Copyright (c) 2012 Red Hat, Inc. All rights reserved. # # This is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: Miloslav Trmač import libuser import sys def main(): if sys.argv[1] == '--remove': a = libuser.admin() u = a.initUser('fs_test_remove') u[libuser.HOMEDIRECTORY] = sys.argv[2] a.removeHome(u) elif sys.argv[1] == '--remove-if-owned': a = libuser.admin() u = a.initUser('fs_test_remove') u[libuser.HOMEDIRECTORY] = sys.argv[2] u[libuser.UIDNUMBER] = int(sys.argv[3]) try: a.removeHomeIfOwned(u) except RuntimeError, e: sys.exit(str(e)) elif sys.argv[1] == '--move': a = libuser.admin() u = a.initUser('fs_test_move') u[libuser.HOMEDIRECTORY] = sys.argv[2] try: a.moveHome(u, sys.argv[3]) except RuntimeError, e: sys.exit(str(e)) elif sys.argv[1] == '--populate': a = libuser.admin() u = a.initUser('fs_test_populate') u[libuser.HOMEDIRECTORY] = sys.argv[2] u[libuser.UIDNUMBER] = int(sys.argv[3]) u[libuser.GIDNUMBER] = int(sys.argv[4]) try: a.createHome(u) except RuntimeError, e: sys.exit(str(e)) else: sys.exit('Unexpected mode') if __name__ == '__main__': main() libuser-0.60~dfsg/tests/default_pw_test0000755000175000017500000001411312226342570020356 0ustar tzafrirtzafrir#! /bin/sh # Automated default password value regression tester # # Copyright (c) 2004, 2010 Red Hat, Inc. All rights reserved. # # This is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: Miloslav Trmač srcdir=$srcdir/tests workdir=$(pwd)/test_default_pw trap 'status=$?; rm -rf "$workdir"; exit $status' 0 trap '(exit 1); exit 1' 1 2 13 15 rm -rf "$workdir" mkdir "$workdir" # Create a SSL key /usr/bin/openssl req -newkey rsa:1024 -keyout "$workdir"/key1 -nodes \ -x509 -days 2 -out "$workdir"/key3 2>/dev/null < "$workdir"/key2 cat "$workdir"/key{1,2,3} > "$workdir"/key.pem rm "$workdir"/key{1,2,3} sed "s|@WORKDIR@|$workdir|g" < "$srcdir"/slapd.conf.in > "$workdir"/slapd.conf LIBUSER_CONF=$workdir/libuser.conf export LIBUSER_CONF # Ugly non-portable hacks LD_LIBRARY_PATH=$(pwd)/lib/.libs export LD_LIBRARY_PATH PYTHONPATH=$(pwd)/python/.libs export PYTHONPATH exit_status=0 fail() # message { echo "Modules $modules: $1" >&2 exit_status=1 } get_file_password() # file under $workdir/files, entry name { echo "Checking $1 $2 ..." >&2 awk -F : "\$1 == \"$2\" { print \$2; }" "$workdir/files/$1" } get_ldap_password() # entry filter { echo "Checking $1 ..." >&2 ldapsearch -LLL -h 127.0.0.1 -p "$ldap_port" -x -b 'dc=libuser' "$1" \ userPassword | sed -n 's/userPassword:: //p' } valid_password() # encoded value { local v=$(python -c "import crypt; print crypt.crypt('password', '$1')") [ "x$v" = "x$1" ] } ldap_port= # Try all concievable combinations and orders, assuming "shadow" requires # "files". for modules in \ files ldap \ 'files ldap' 'files shadow' 'ldap files' 'shadow files' \ 'files ldap shadow' 'files shadow ldap' 'ldap files shadow' \ 'ldap shadow files' 'shadow files ldap' 'shadow ldap files'; do echo ">>>modules: $modules" >&2 # Set up an LDAP server and database files mkdir "$workdir"/db "$workdir"/files touch "$workdir"/files/{passwd,shadow,group,gshadow} case $modules in *ldap*) # This is racy, but much better than a static port [ -z "$ldap_port" ] && ldap_port=$(tests/alloc_port) # FIXME: path /usr/sbin/slapd -h ldap://127.0.0.1:"$ldap_port"/ \ -f "$workdir"/slapd.conf & tests/wait_for_slapd_start "$workdir"/slapd.pid "$ldap_port" slapd_pid=$(cat "$workdir"/slapd.pid) trap 'status=$?; kill $slapd_pid; rm -rf "$workdir"; exit $status' 0 ldapadd -h 127.0.0.1 -p "$ldap_port" -f "$srcdir/ldap_skel.ldif" -x \ -D cn=Manager,dc=libuser -w password ;; esac # Set up the client sed -e "s|@WORKDIR@|$workdir|g; s|@TOP_BUILDDIR@|$(pwd)|g" \ -e "s|@MODULES@|$modules|g; s|@LDAP_PORT@|$ldap_port|g" \ < "$srcdir"/default_pw.conf.in > "$LIBUSER_CONF" valid_combination=1 case $modules in *ldap*) case $modules in *files* | *shadow*) valid_combination=0 ;; esac esac # Point "$HOME/ldaprc" to "$srcdir"/ldaprc HOME="$srcdir" $VALGRIND python "$srcdir"/default_pw_test.py \ "$valid_combination" if [ "$valid_combination" -ne 0 ]; then # Test that {passwd,group} handle passwords correctly case $modules in *shadow*) for pair in 'passwd user_default' 'passwd user_setpass' \ 'group group_default' 'group group_setpass'; do if [ "x$(get_file_password $pair)" != xx ]; then fail "Unexpected $pair password value" fi done ;; *files*) for pair in 'passwd user_default' 'group group_default'; do if [ "x$(get_file_password $pair)" != 'x!!' ]; then fail "Unexpected $pair password value" fi done for pair in 'passwd user_setpass' 'group group_setpass'; do if ! valid_password "$(get_file_password $pair)"; then fail "Password not set correctly for $pair" fi done ;; esac # Test that {shadow,gshadow} handle passwords correctly case $modules in *shadow*) for pair in 'shadow user_default' 'gshadow group_default'; do if [ "x$(get_file_password $pair)" != 'x!!' ]; then fail "Unexpected $pair password value" fi done for pair in 'shadow user_setpass' 'gshadow group_setpass'; do if ! valid_password "$(get_file_password $pair)"; then fail "Password not set correctly for $pair" fi done ;; esac # Test that ldap handles password correctly case $modules in *ldap*) if [ "x$(get_ldap_password uid=user_default | base64 -d)" \ != 'x{CRYPT}!!' ]; then fail "Unexpected uid=user_default password value" fi # The LDAP module does not add a group password by default. v=$(get_ldap_password cn=group_default) if [ "x$v" != x ]; then fail "Unexpected cn=group_default password" fi v=$(get_ldap_password uid=user_setpass | base64 -d) if [ "x${v#'{CRYPT}'}" = "x$v" ]; then fail "Missing {CRYPT} marker in uid=user_setpass" fi if ! valid_password "${v#'{CRYPT}'}"; then fail "Password not set correctly for uid=user_setpass" fi v=$(get_ldap_password cn=group_setpass | base64 -d) if [ "x${v#'{CRYPT}'}" = "x$v" ]; then fail "Missing {CRYPT} marker in cn=group_setpass" fi if ! valid_password "${v#'{CRYPT}'}"; then fail "Password not set correctly for cn=group_setpass" fi ;; esac fi case $modules in *ldap*) kill "$slapd_pid" trap 'status=$?; rm -rf "$workdir"; exit $status' 0 tests/wait_for_slapd_exit "$workdir"/slapd.pid "$ldap_port" ;; esac slapd_pid= rm -rf "$workdir"/db "$workdir"/files done (exit "$exit_status"); exit "$exit_status" libuser-0.60~dfsg/tests/fs_test0000755000175000017500000002067212226342570016643 0ustar tzafrirtzafrir#! /bin/sh # Automated libuser fs function regression tester # # Copyright (c) 2012 Red Hat, Inc. All rights reserved. # # This is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: Miloslav Trmač if ! fakeroot --version &>/dev/null; then echo 'fakeroot not available, skipping test' >&2 exit 77 fi srcdir=$srcdir/tests workdir=$(pwd)/test_fs umask 002 trap 'status=$?; chmod -R u+rwx "$workdir"; rm -rf "$workdir"; exit $status' 0 trap '(exit 1); exit 1' 1 2 13 15 rm -rf "$workdir" mkdir "$workdir" # Set up an the environment mkdir "$workdir"/files > "$workdir"/files/passwd > "$workdir"/files/shadow > "$workdir"/files/group > "$workdir"/files/gshadow # Set up the client LIBUSER_CONF=$workdir/libuser.conf export LIBUSER_CONF sed "s|@WORKDIR@|$workdir|g; s|@TOP_BUILDDIR@|$(pwd)|g" \ < "$srcdir"/fs.conf.in > "$LIBUSER_CONF" # Ugly non-portable hacks LD_LIBRARY_PATH=$(pwd)/lib/.libs export LD_LIBRARY_PATH PYTHONPATH=$(pwd)/python/.libs export PYTHONPATH # Test lu_homedir_remove() fakeroot > "$workdir"/rm_output < "$workdir"/rm/secret chmod 000 "$workdir"/rm/secret ln "$workdir"/rm/{secret,root/hardlink} $VALGRIND python "$srcdir"/fs_test.py --remove "$workdir/rm/root" if [ \$? -ne 0 ]; then exit 1 fi LC_ALL=C ls -lnR "$workdir/rm" | tail -n +3 | \ awk '{ printf("%.10s %d %4d %4d %8d %s\n", \$1, \$2, \$3, \$4, \$5, \$9) ;}' EOF diff "$workdir"/rm_output - < "$workdir"/rm_owned_output1 < "$workdir"/rm_owned_output2 2>&1 < 3 { printf("%.10s %d %4d %4d %s\n", \$1, \$2, \$3, \$4, \$9); } NF <= 3 && !/total/ { print }' EOF diff "$workdir"/rm_owned_output2 - < unreadable/f chmod 000 unreadable/f unreadable chown -R 555:555 . chgrp -R 444 group-owned # Other content in the home directory mknod block b 1 1 mknod char c 1 1 echo 'foo' > secret chmod 000 secret EOF # Test lu_homedir_move() fakeroot -i "$workdir"/save -s "$workdir"/save > "$workdir"/mv_output < 3 { printf("%.10s %d %4d %4d %s\n", \$1, \$2, \$3, \$4, \$9); } NF <= 3 && !/total/ { print }' EOF # Special files and fifos are not copied over. Ownership and permissions are # preserved. diff "$workdir"/mv_output - < "$workdir"/mv2_output 2>&1 < "$workdir"/pop_output < 3 { printf("%.10s %d %4d %4d %s\n", \$1, \$2, \$3, \$4, \$9); } NF <= 3 && !/total/ { print }' EOF # Special files and fifos are not copied over. Permissions are preserved, # ownership is changed to the desired values except for non-root groups diff "$workdir"/pop_output - < "$workdir"/pop2_output 2>&1 < srcdir=$srcdir/tests workdir=$(pwd)/test_utils trap 'status=$?; rm -rf "$workdir"; exit $status' 0 trap '(exit 1); exit 1' 1 2 13 15 rm -rf "$workdir" mkdir "$workdir" # Set up an the environment mkdir "$workdir"/files > "$workdir"/files/passwd > "$workdir"/files/shadow > "$workdir"/files/group > "$workdir"/files/gshadow # Set up the client LIBUSER_CONF=$workdir/libuser.conf export LIBUSER_CONF sed "s|@WORKDIR@|$workdir|g; s|@TOP_BUILDDIR@|$(pwd)|g" \ < "$srcdir"/utils.conf.in > "$LIBUSER_CONF" P=$(pwd)/apps VG=$VALGRIND LARGE_ID=2147483648 ( set -e # lgroupadd: $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 110)" group1_1 # untested: -r # lgroupdel: $VG "$P"/lgroupadd group2_1 $VG "$P"/lgroupdel group2_1 # lgroupmod: $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 310)" group3_1 $VG "$P"/lgroupmod -A user3_1,user3_2 -g "$(expr $LARGE_ID + 311)" -L \ -M user3_3,user3_4 -n group3_2 -p '01vokOibos3pg' group3_1 $VG "$P"/lgroupmod -a user3_1,user3_1notexist -m user3_3,user3_2notexist -L \ group3_2 $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 330)" group3_3 $VG "$P"/lgroupmod -p '!!02yd6IWnPes66' group3_3 $VG "$P"/lgroupmod -U group3_3 # Handling of GID change for primary and secondary groups $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 340)" group3_4 $VG "$P"/luseradd -M -g group3_4 -u "$(expr $LARGE_ID + 350)" user3_5 $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 350)" group3_5 $VG "$P"/luseradd -M -g group3_5 -u "$(expr $LARGE_ID + 360)" user3_6 $VG "$P"/lgroupmod -M user3_6 group3_4 $VG "$P"/lgroupmod -g "$(expr $LARGE_ID + 341)" group3_4 # untested: -P # lchage: $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 410)" user4_1 $VG "$P"/luseradd -M -u "$(expr $LARGE_ID + 410)" user4_1 $VG "$P"/lchage -d 400 -E 410 -I 420 -m 430 -M 440 -W 450 user4_1 LC_ALL=C $VG "$P"/lchage -l user4_1 > "$workdir"/lchage_output diff - "$workdir"/lchage_output <<\EOF Account is locked. Minimum: 430 Maximum: 440 Warning: 450 Inactive: 420 Last Change: 02/05/71 Password Expires: 04/20/72 Password Inactive: 06/14/73 Account Expires: 02/15/71 EOF $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 420)" user4_2 $VG "$P"/luseradd -M -u "$(expr $LARGE_ID + 420)" user4_2 $VG "$P"/lchage -d 0 -E -1 -I -1 -m -1 -M -1 -W -1 user4_2 LC_ALL=C $VG "$P"/lchage -l user4_2 > "$workdir"/lchage_output diff - "$workdir"/lchage_output <<\EOF Account is locked. Minimum: 0 Maximum: None Warning: 0 Inactive: Never Last Change: Must change password on next login Password Expires: Must change password on next login Password Inactive: Must change password on next login Account Expires: Never EOF $VG "$P"/lchage -d -1 -E -1 -I -1 -m -1 -M -1 -W -1 user4_2 LC_ALL=C $VG "$P"/lchage -l user4_2 > "$workdir"/lchage_output diff - "$workdir"/lchage_output <<\EOF Account is locked. Minimum: 0 Maximum: None Warning: 0 Inactive: Never Last Change: Never Password Expires: Never Password Inactive: Never Account Expires: Never EOF # lchfn: untested (requires system account) # lchsh: untested (requires system account) # lid: $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 510)" group5_1 $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 520)" group5_2 $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 530)" group5_3 $VG "$P"/luseradd -M -g group5_1 -u "$(expr $LARGE_ID + 510)" user5_1 $VG "$P"/luseradd -M -g group5_3 -u "$(expr $LARGE_ID + 520)" user5_2 $VG "$P"/lgroupmod -M user5_1,user5_2 group5_2 $VG "$P"/lgroupmod -M user5_2 group5_1 $VG "$P"/lid user5_1 > "$workdir"/lid_output1 diff - "$workdir"/lid_output1 < "$workdir"/lid_output2 diff - "$workdir"/lid_output2 <<\EOF group5_1 group5_2 EOF $VG "$P"/lid -g group5_1 > "$workdir"/lid_output3 diff - "$workdir"/lid_output3 < "$workdir"/lid_output4 diff - "$workdir"/lid_output4 <<\EOF user5_1 user5_2 EOF # lnewusers: $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 620)" user6_2 $VG "$P"/lgroupadd -g "$(expr $LARGE_ID + 630)" group6_3 LC_ALL=C $VG "$P"/lnewusers -M -n 2> "$workdir"/lnewusers_output <"$workdir"/lusermod_output diff - "$workdir"/lusermod_output < "$workdir"/group diff -u "$srcdir"/utils_group "$workdir"/group grep -v '^\.\.\?:' < "$workdir"/files/gshadow > "$workdir"/gshadow diff -u "$srcdir"/utils_gshadow "$workdir"/gshadow sed 's/^\(user6_4:x:[^:]*\):[0123456789]*:\(.*\)$/\1:GID:\2/' \ < "$workdir"/files/passwd > "$workdir"/passwd diff -u "$srcdir"/utils_passwd "$workdir"/passwd sed -e 's/^\([^:]*:[^:]*\):[0123456789]\{5,\}:\(.*\)$/\1:DATE:\2/' \ -e 's/^\([^:]*\):\$1\$[^:]*:\(.*\)$/\1:HASH:\2/' \ < "$workdir"/files/shadow \ | grep -v '^\.\.\?:' > "$workdir"/shadow diff -u "$srcdir"/utils_shadow "$workdir"/shadow ) libuser-0.60~dfsg/tests/ldap_test.py0000644000175000017500000013207712226342570017602 0ustar tzafrirtzafririmport crypt import libuser import unittest LARGE_ID = 2147483648 def prompt_callback(prompts): for p in prompts: if p.key == 'ldap/password': p.value = 'password' else: p.value = p.default_value # This is ugly; ideally we would want a separate connection for each test case, # but libssl REALLY doesn't like being unloaded (libcrypto is not unloaded # and keeps pointers to unloaded libssl) admin = libuser.admin(prompt = prompt_callback) # Test case order matches the order of function pointers in struct lu_module class Tests(unittest.TestCase): def setUp(self): # See the comment at the libuser.admin() call above self.a = admin # testUsesElevatedPrivileges # Not provided in Python bindings def testUserLookupName(self): e = self.a.initUser('user2_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user2_1') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user2_1']) del e e = self.a.lookupUserByName('user2_does_not_exist') self.assertEqual(e, None) def testUserLookupId(self): e = self.a.initUser('user3_1') self.a.addUser(e, False, False) uid = e[libuser.UIDNUMBER][0] del e e = self.a.lookupUserById(uid) self.assert_(e) self.assertEqual(e[libuser.UIDNUMBER], [uid]) del e e = self.a.lookupUserById(999999) self.assertEqual(e, None) del e e = self.a.lookupUserById(LARGE_ID + 310) self.assertEqual(e, None) # testUserDefault # There is little to test, in addition most is configurable # testUserAddPrep: # Nothing to test def testUserAdd1(self): # A minimal case e = self.a.initUser('user6_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_1') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user6_1']) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!!']) def testUserAdd2(self): # A maximal case e = self.a.initUser('user6_2') e[libuser.USERNAME] = 'user6_2username' e[libuser.USERPASSWORD] = '!!user6_2' e[libuser.UIDNUMBER] = 4237 e[libuser.GIDNUMBER] = 3742 e[libuser.GECOS] = 'Full Name,Office,1234,4321' e[libuser.HOMEDIRECTORY] = '/home/user6_2home' e[libuser.LOGINSHELL] = '/sbin/nologinuser6_2' e[libuser.SHADOWPASSWORD] = '!!baduser6_2' # Should be ignored e[libuser.SHADOWLASTCHANGE] = 12681 e[libuser.SHADOWMIN] = 5 e[libuser.SHADOWMAX] = 98765 e[libuser.SHADOWWARNING] = 10 e[libuser.SHADOWINACTIVE] = 8 e[libuser.SHADOWEXPIRE] = 9 e[libuser.SHADOWFLAG] = 255 e[libuser.COMMONNAME] = 'Common Name' e[libuser.GIVENNAME] = 'Given' e[libuser.SN] = 'Surname' e[libuser.ROOMNUMBER] = '404' e[libuser.TELEPHONENUMBER] = '1234' e[libuser.HOMEPHONE] = '4321' e[libuser.EMAIL] = 'user6_2@example.com' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_2username') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user6_2username']) self.assertEqual(e[libuser.USERPASSWORD], ['!!user6_2']) self.assertEqual(e[libuser.UIDNUMBER], [4237]) self.assertEqual(e[libuser.GIDNUMBER], [3742]) self.assertEqual(e[libuser.GECOS], ['Full Name,Office,1234,4321']) self.assertEqual(e[libuser.HOMEDIRECTORY], ['/home/user6_2home']) self.assertEqual(e[libuser.LOGINSHELL], ['/sbin/nologinuser6_2']) self.assertRaises(KeyError, lambda x: x[libuser.SHADOWPASSWORD], e) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [12681]) self.assertEqual(e[libuser.SHADOWMIN], [5]) self.assertEqual(e[libuser.SHADOWMAX], [98765]) self.assertEqual(e[libuser.SHADOWWARNING], [10]) self.assertEqual(e[libuser.SHADOWINACTIVE], [8]) self.assertEqual(e[libuser.SHADOWEXPIRE], [9]) self.assertEqual(e[libuser.SHADOWFLAG], [255]) self.assertEqual(e[libuser.COMMONNAME], ['Common Name']) self.assertEqual(e[libuser.GIVENNAME], ['Given']) self.assertEqual(e[libuser.SN], ['Surname']) self.assertEqual(e[libuser.ROOMNUMBER], ['404']) self.assertEqual(e[libuser.TELEPHONENUMBER], ['1234']) self.assertEqual(e[libuser.HOMEPHONE], ['4321']) # Not stored by our LDAP module # self.assertEqual(e[libuser.EMAIL], ['user6_2@example.com']) def testUserAdd3(self): # Schema violation e = self.a.initUser('user6_3') e[libuser.GIVENNAME] = 'Given' # e[libuser.SN] required by inetOrgPerson schema, but not provided self.assertRaises(RuntimeError, self.a.addUser, e, False, False) def testUserAdd4(self): # Large IDs. e = self.a.initUser('user6_4') e[libuser.UIDNUMBER] = LARGE_ID + 640 e[libuser.GIDNUMBER] = LARGE_ID + 641 self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_4') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user6_4']) self.assertEqual(e[libuser.UIDNUMBER], [LARGE_ID + 640]) self.assertEqual(e[libuser.GIDNUMBER], [LARGE_ID + 641]) def testUserAdd5(self): # Let the user specify dangerous/dubious home directory paths explicitly for name in ('.', '..'): e = self.a.initUser(name) e[libuser.HOMEDIRECTORY] = '/home/' + name self.a.addUser(e, False, False) del e e = self.a.lookupUserByName(name) self.assertEqual(e[libuser.HOMEDIRECTORY], ['/home/' + name]) self.a.deleteUser(e, False, False) e = self.a.initUser('user6_5') e[libuser.HOMEDIRECTORY] = '/home/..' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_5') self.assertEqual(e[libuser.HOMEDIRECTORY], ['/home/..']) # ... but nevere create such home directory paths by default for name in ('.', '..'): e = self.a.initUser(name) self.assertRaises(RuntimeError, self.a.addUser, e, False, False) def testUserAdd6(self): # Adding duplicate entries e = self.a.initUser('user6_6') self.a.addUser(e, False, False) del e e = self.a.initUser('user6_6') self.assertRaises(RuntimeError, self.a.addUser, e, False, False) def testUserAdd7(self): # Adding commonName if it is not defined: # - Explicitly set e = self.a.initUser('user6_7') e[libuser.COMMONNAME] = 'Common Name' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_7') self.assertEqual(e[libuser.COMMONNAME], ['Common Name']) # - Defaulted from GECOS e = self.a.initUser('user6_8') e[libuser.GECOS] = 'Full Name,Office,1234,4321' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_8') self.assertEqual(e[libuser.COMMONNAME], ['Full Name']) # Defaulted from user name e = self.a.initUser('user6_9') self.assertEqual(e[libuser.GECOS], ['user6_9']) e.clear(libuser.GECOS) self.assertRaises(KeyError, lambda x: x[libuser.GECOS], e) self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_9') self.assertEqual(e[libuser.COMMONNAME], ['user6_9']) # Defaulted from user name if GECOS is empty e = self.a.initUser('user6_10') e[libuser.GECOS] = '' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user6_10') self.assertEqual(e[libuser.COMMONNAME], ['user6_10']) def testUserMod1(self): # A minimal case e = self.a.initUser('user7_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_1') self.assertNotEqual(e[libuser.GECOS], ['user7newGECOS']) e[libuser.GECOS] = 'user7newGECOS' self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user7_1') self.assertEqual(e[libuser.GECOS], ['user7newGECOS']) def testUserMod2(self): # A maximal case, including renaming e = self.a.initUser('user7_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_2') self.assertNotEqual(e[libuser.USERNAME], ['user7_2username']) e[libuser.USERNAME] = 'user7_2username' self.assertNotEqual(e[libuser.USERPASSWORD], ['!!user7_2']) e[libuser.USERPASSWORD] = '!!user7_2' self.assertNotEqual(e[libuser.UIDNUMBER], [4237]) e[libuser.UIDNUMBER] = 4237 self.assertNotEqual(e[libuser.GIDNUMBER], [3742]) e[libuser.GIDNUMBER] = 3742 self.assertNotEqual(e[libuser.GECOS], ['Full Name,Office,1234,4321']) e[libuser.GECOS] = 'Full Name,Office,1234,4321' self.assertNotEqual(e[libuser.HOMEDIRECTORY], ['/home/user7_2home']) e[libuser.HOMEDIRECTORY] = '/home/user7_2home' self.assertNotEqual(e[libuser.LOGINSHELL], ['/sbin/nologinuser7_2']) e[libuser.LOGINSHELL] = '/sbin/nologinuser7_2' self.assertNotEqual(e[libuser.SHADOWLASTCHANGE], [12681]) e[libuser.SHADOWLASTCHANGE] = 12681 self.assertNotEqual(e[libuser.SHADOWMIN], [5]) e[libuser.SHADOWMIN] = 5 self.assertNotEqual(e[libuser.SHADOWMAX], [98765]) e[libuser.SHADOWMAX] = 98765 self.assertNotEqual(e[libuser.SHADOWWARNING], [10]) e[libuser.SHADOWWARNING] = 10 self.assertNotEqual(e[libuser.SHADOWINACTIVE], [8]) e[libuser.SHADOWINACTIVE] = 8 self.assertNotEqual(e[libuser.SHADOWEXPIRE], [9]) e[libuser.SHADOWEXPIRE] = 9 self.assertNotEqual(e[libuser.SHADOWFLAG], [255]) e[libuser.SHADOWFLAG] = 255 self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user7_2') self.assertEqual(e, None) del e e = self.a.lookupUserByName('user7_2username') self.assert_(e) self.assertEqual(e[libuser.USERNAME], ['user7_2username']) self.assertEqual(e[libuser.USERPASSWORD], ['!!user7_2']) self.assertEqual(e[libuser.UIDNUMBER], [4237]) self.assertEqual(e[libuser.GIDNUMBER], [3742]) self.assertEqual(e[libuser.GECOS], ['Full Name,Office,1234,4321']) self.assertEqual(e[libuser.HOMEDIRECTORY], ['/home/user7_2home']) self.assertEqual(e[libuser.LOGINSHELL], ['/sbin/nologinuser7_2']) self.assertRaises(KeyError, lambda x: x[libuser.SHADOWPASSWORD], e) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [12681]) self.assertEqual(e[libuser.SHADOWMIN], [5]) self.assertEqual(e[libuser.SHADOWMAX], [98765]) self.assertEqual(e[libuser.SHADOWWARNING], [10]) self.assertEqual(e[libuser.SHADOWINACTIVE], [8]) self.assertEqual(e[libuser.SHADOWEXPIRE], [9]) self.assertEqual(e[libuser.SHADOWFLAG], [255]) def testUserMod3(self): # Large IDs e = self.a.initUser('user7_3') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_3') self.assertNotEqual(e[libuser.UIDNUMBER], [LARGE_ID + 730]) e[libuser.UIDNUMBER] = LARGE_ID + 730 self.assertNotEqual(e[libuser.GIDNUMBER], [LARGE_ID + 731]) e[libuser.GIDNUMBER] = LARGE_ID + 731 self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user7_3') self.assert_(e) self.assertEqual(e[libuser.UIDNUMBER], [LARGE_ID + 730]) self.assertEqual(e[libuser.GIDNUMBER], [LARGE_ID + 731]) def testUserMod4(self): # No modification at all e = self.a.initUser('user7_4') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_4') self.a.modifyUser(e, False) del e e = self.a.lookupUserByName('user7_4') self.assert_(e) def testUserMod5(self): # Renaming to create duplicate entries e = self.a.initUser('user7_5') self.a.addUser(e, False, False) del e e = self.a.initUser('user7_6') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user7_6') e[libuser.USERNAME] = 'user7_5' self.assertRaises(RuntimeError, self.a.modifyUser, e, False) def testUserDel(self): e = self.a.initUser('user8_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user8_1') self.assert_(e) self.a.deleteUser(e, False, False) del e e = self.a.lookupUserByName('user8_1') self.assertEqual(e, None) def testUserLock1(self): e = self.a.initUser('user9_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user9_1') self.a.setpassUser(e, '00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}00as1wm0AZG56']) self.a.lockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!00as1wm0AZG56']) def testUserLock2(self): e = self.a.initUser('user9_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user9_2') self.a.setpassUser(e, '!00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!00as1wm0AZG56']) self.a.lockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!00as1wm0AZG56']) def testUserLock3(self): e = self.a.initUser('user9_3') e[libuser.USERPASSWORD] = '{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user9_3') self.assertEqual(e[libuser.USERPASSWORD], ['{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==']) self.assertRaises(RuntimeError, self.a.lockUser, e) def testUserUnlock1(self): e = self.a.initUser('user10_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user10_1') self.a.setpassUser(e, '!00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!00as1wm0AZG56']) self.a.unlockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}00as1wm0AZG56']) def testUserUnlock2(self): e = self.a.initUser('user10_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user10_2') self.a.setpassUser(e, '00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}00as1wm0AZG56']) self.a.unlockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}00as1wm0AZG56']) def testUserUnlock3(self): e = self.a.initUser('user10_3') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user10_3') self.a.setpassUser(e, '!', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!']) self.a.unlockUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}']) def testUserUnlock4(self): e = self.a.initUser('user10_4') e[libuser.USERPASSWORD] = '{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user10_4') self.assertEqual(e[libuser.USERPASSWORD], ['{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==']) self.assertRaises(RuntimeError, self.a.unlockUser, e) def testUserUnlockNonempty1(self): e = self.a.initUser('user32_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user32_1') self.a.setpassUser(e, '!00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!00as1wm0AZG56']) self.a.unlockUser(e, True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}00as1wm0AZG56']) def testUserUnlockNonempty2(self): e = self.a.initUser('user32_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user32_2') self.a.setpassUser(e, '00as1wm0AZG56', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}00as1wm0AZG56']) self.a.unlockUser(e, True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}00as1wm0AZG56']) def testUserUnlockNonempty3(self): e = self.a.initUser('user32_3') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user32_3') self.a.setpassUser(e, '!', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!']) self.assertRaises(RuntimeError, self.a.unlockUser, e, True) del e e = self.a.lookupUserByName('user32_3') self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!']) def testUserUnlockNonempty4(self): e = self.a.initUser('user32_4') e[libuser.USERPASSWORD] = '{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==' self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user32_4') self.assertEqual(e[libuser.USERPASSWORD], ['{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==']) self.assertRaises(RuntimeError, self.a.unlockUser, e, True) def testUserIslocked1(self): e = self.a.initUser('user11_1') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user11_1') self.a.setpassUser(e, '!01aK1FxKE9YVU', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!01aK1FxKE9YVU']) self.assertEqual(self.a.userIsLocked(e), 1) def testUserIslocked2(self): e = self.a.initUser('user11_2') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user11_2') self.a.setpassUser(e, '01aK1FxKE9YVU', True) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}01aK1FxKE9YVU']) self.assertEqual(self.a.userIsLocked(e), 0) def testUserSetpass1(self): e = self.a.initUser('user12_1') e[libuser.USERPASSWORD] = '{CRYPT}02oawyZdjhhpg' e[libuser.SHADOWLASTCHANGE] = 100 self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user12_1') self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}02oawyZdjhhpg']) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [100]) self.a.setpassUser(e, 'password', False) del e e = self.a.lookupUserByName('user12_1') self.assertNotEqual(e[libuser.USERPASSWORD][0][7], '$') crypted = crypt.crypt('password', e[libuser.USERPASSWORD][0][7:]) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}' + crypted]) self.assert_(e[libuser.SHADOWLASTCHANGE][0] > 10000) def testUserSetpass2(self): e = self.a.initUser('user12_2') e[libuser.USERPASSWORD] = ['unknown', '{CRYPT}02oawyZdjhhpg'] self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user12_2') v = e[libuser.USERPASSWORD] v.sort() self.assertEqual(v, ['unknown', '{CRYPT}02oawyZdjhhpg']) self.a.setpassUser(e, 'password', False) v = e[libuser.USERPASSWORD] v.sort() self.assertNotEqual(v[1][7], '$') crypted = crypt.crypt('password', v[1][7:]) self.assertEqual(v, ['unknown', '{CRYPT}' + crypted]) def testUserSetpass3(self): e = self.a.initUser('user12_3') e[libuser.USERPASSWORD] = ['unknown1', 'unknown2'] self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user12_3') v = e[libuser.USERPASSWORD] v.sort() self.assertEqual(v, ['unknown1', 'unknown2']) self.a.setpassUser(e, 'password', False) self.assertEqual(e[libuser.USERPASSWORD][0][7:10], '$1$') crypted = crypt.crypt('password', e[libuser.USERPASSWORD][0][7:]) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}' + crypted]) def testUserSetpass4(self): # Test that crypt_style is honored on accounts with no existing hash e = self.a.initUser('user12_4') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user12_4') self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!!']) self.a.setpassUser(e, 'password', False) del e e = self.a.lookupUserByName('user12_4') self.assertEqual(e[libuser.USERPASSWORD][0][7:10], '$1$') crypted = crypt.crypt('password', e[libuser.USERPASSWORD][0][7:]) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}' + crypted]) def testUserSetpass5(self): # Test that existing hash is recognized on locked accounts e = self.a.initUser('user12_5') e[libuser.USERPASSWORD] = ['{CRYPT}!05q.yCrQKlZy6'] self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user12_5') self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}!05q.yCrQKlZy6']) self.a.setpassUser(e, 'password', False) del e e = self.a.lookupUserByName('user12_5') self.assertNotEqual(e[libuser.USERPASSWORD][0][7], '$') crypted = crypt.crypt('password', e[libuser.USERPASSWORD][0][7:]) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}' + crypted]) def testUserRemovepass1(self): e = self.a.initUser('user13_1') e[libuser.USERPASSWORD] = '{CRYPT}03dgZm5nZvqOc' e[libuser.SHADOWLASTCHANGE] = 100 self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user13_1') self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}03dgZm5nZvqOc']) self.assertEqual(e[libuser.SHADOWLASTCHANGE], [100]) self.a.removepassUser(e) del e e = self.a.lookupUserByName('user13_1') self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}']) self.assert_(e[libuser.SHADOWLASTCHANGE][0] > 10000) def testUserRemovepass2(self): e = self.a.initUser('user13_2') e[libuser.USERPASSWORD] = ['unknown', '{CRYPT}03dgZm5nZvqOc'] self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user13_2') v = e[libuser.USERPASSWORD] v.sort() self.assertEqual(v, ['unknown', '{CRYPT}03dgZm5nZvqOc']) self.a.removepassUser(e) v = e[libuser.USERPASSWORD] v.sort() self.assertEqual(v, ['unknown', '{CRYPT}']) def testUserRemovepass3(self): e = self.a.initUser('user13_3') e[libuser.USERPASSWORD] = ['unknown1', 'unknown2'] self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user13_3') v = e[libuser.USERPASSWORD] v.sort() self.assertEqual(v, ['unknown1', 'unknown2']) self.a.removepassUser(e) self.assertEqual(e[libuser.USERPASSWORD], ['{CRYPT}']) def testUsersEnumerate(self): e = self.a.initUser('user14_1') self.a.addUser(e, False, False) e = self.a.initUser('user14_2') self.a.addUser(e, False, False) v = self.a.enumerateUsers('user14*') v.sort() self.assertEqual(v, ['user14_1', 'user14_2']) def testUsersEnumerateByGroup1(self): gid = 1501 # Hopefully unique e = self.a.initGroup('group15_1') e[libuser.GIDNUMBER] = gid e[libuser.MEMBERNAME] = 'user15_2' self.a.addGroup(e) e = self.a.initUser('user15_1') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initUser('user15_2') e[libuser.GIDNUMBER] = gid + 10 self.a.addUser(e, False, False) v = self.a.enumerateUsersByGroup('group15_1') v.sort() self.assertEqual(v, ['user15_1', 'user15_2']) def testUsersEnumerateByGroup2(self): gid = 1502 # Hopefully unique e = self.a.initGroup('group15_2') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) e = self.a.initUser('user15_3') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) self.assertEqual(self.a.enumerateUsersByGroup('group15_2'), ['user15_3']) def testUsersEnumerateByGroup3(self): gid = 1503 # Hopefully unique e = self.a.initGroup('group15_3') e[libuser.GIDNUMBER] = gid e[libuser.MEMBERNAME] = 'user15_4' self.a.addGroup(e) e = self.a.initUser('user15_4') e[libuser.GIDNUMBER] = gid + 10 self.a.addUser(e, False, False) v = self.a.enumerateUsersByGroup('group15_3') self.assertEqual(self.a.enumerateUsersByGroup('group15_3'), ['user15_4']) def testUsersEnumerateFull(self): e = self.a.initUser('user16_1') self.a.addUser(e, False, False) e = self.a.initUser('user16_2') self.a.addUser(e, False, False) v = map(lambda x: x[libuser.USERNAME], self.a.enumerateUsersFull('user16*')) v.sort() self.assertEqual(v, [['user16_1'], ['user16_2']]) def testUsersEnumerateByGroupFull1(self): gid = 3401 # Hopefully unique e = self.a.initGroup('group34_1') e[libuser.GIDNUMBER] = gid e[libuser.MEMBERNAME] = 'user34_2' self.a.addGroup(e) e = self.a.initUser('user34_1') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initUser('user34_2') e[libuser.GIDNUMBER] = gid + 10 self.a.addUser(e, False, False) v = map(lambda x: x[libuser.USERNAME], self.a.enumerateUsersByGroupFull('group34_1')) v.sort() self.assertEqual(v, [['user34_1'], ['user34_2']]) def testUsersEnumerateByGroupFull2(self): gid = 3402 # Hopefully unique e = self.a.initGroup('group34_2') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) e = self.a.initUser('user34_3') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) v = map(lambda x: x[libuser.USERNAME], self.a.enumerateUsersByGroupFull('group34_2')) self.assertEqual(v, [['user34_3']]) def testUsersEnumerateByGroupFull3(self): gid = 3403 # Hopefully unique e = self.a.initGroup('group34_3') e[libuser.GIDNUMBER] = gid e[libuser.MEMBERNAME] = 'user34_4' self.a.addGroup(e) e = self.a.initUser('user34_4') e[libuser.GIDNUMBER] = gid + 10 self.a.addUser(e, False, False) v = map(lambda x: x[libuser.USERNAME], self.a.enumerateUsersByGroupFull('group34_3')) self.assertEqual(v, [['user34_4']]) def testGroupLookupName(self): e = self.a.initGroup('group17_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group17_1') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group17_1']) del e e = self.a.lookupGroupByName('group17_does_not_exist') self.assertEqual(e, None) def testGroupLookupId(self): e = self.a.initGroup('group18_1') self.a.addGroup(e) gid = e[libuser.GIDNUMBER][0] del e e = self.a.lookupGroupById(gid) self.assert_(e) self.assertEqual(e[libuser.GIDNUMBER], [gid]) del e e = self.a.lookupGroupById(999999) self.assertEqual(e, None) del e e = self.a.lookupGroupById(LARGE_ID + 1810) self.assertEqual(e, None) # testGroupDefault # There is little to test, in addition most is configurable # testGroupAddPrep # Nothing to test def testGroupAdd1(self): # A minimal case e = self.a.initGroup('group21_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group21_1') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group21_1']) self.assertRaises(KeyError, lambda x: x[libuser.GROUPPASSWORD], e) def testGroupAdd2(self): # A maximal case e = self.a.initGroup('group21_2') e[libuser.GROUPNAME] = 'group21_2groupname' e[libuser.GROUPPASSWORD] = '!!group21_2' e[libuser.GIDNUMBER] = 4237 e[libuser.MEMBERNAME] = ['group21_2member1', 'group21_2member2'] self.a.addGroup(e) del e e = self.a.lookupGroupByName('group21_2groupname') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group21_2groupname']) self.assertEqual(e[libuser.GROUPPASSWORD], ['!!group21_2']) self.assertEqual(e[libuser.GIDNUMBER], [4237]) v = e[libuser.MEMBERNAME] v.sort() self.assertEqual(v, ['group21_2member1', 'group21_2member2']) def testGroupAdd3(self): # Large IDs e = self.a.initGroup('group21_3') e[libuser.GIDNUMBER] = LARGE_ID + 2130 self.a.addGroup(e) del e e = self.a.lookupGroupByName('group21_3') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group21_3']) self.assertEqual(e[libuser.GIDNUMBER], [LARGE_ID + 2130]) def testGroupAdd4(self): # Adding duplicate entries e = self.a.initGroup('group21_4') self.a.addGroup(e) del e e = self.a.initGroup('group21_4') self.assertRaises(RuntimeError, self.a.addGroup, e) def testGroupMod1(self): # A minimal case e = self.a.initGroup('group22_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_1') self.assertRaises(KeyError, lambda x: x[libuser.MEMBERNAME], e) e[libuser.MEMBERNAME] = 'group22_1member' self.a.modifyGroup(e) del e e = self.a.lookupGroupByName('group22_1') self.assertEqual(e[libuser.MEMBERNAME], ['group22_1member']) def testGroupMod2(self): # A maximal case, including renaming e = self.a.initGroup('group22_2') e[libuser.MEMBERNAME] = ['group22_2member1', 'group22_2member2'] self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_2') self.assertNotEqual(e[libuser.GROUPNAME], ['group22_2groupname']) e[libuser.GROUPNAME] = 'group22_2groupname' self.assertNotEqual(e[libuser.GIDNUMBER], [4237]) e[libuser.GIDNUMBER] = 4237 v = e[libuser.MEMBERNAME] v.sort() self.assertNotEqual(v, ['group22_2member1', 'group22_2member3']) e[libuser.MEMBERNAME] = ['group22_2member1', 'group22_2member3'] self.a.modifyGroup(e) del e e = self.a.lookupGroupByName('group22_2') self.assertEqual(e, None) del e e = self.a.lookupGroupByName('group22_2groupname') self.assert_(e) self.assertEqual(e[libuser.GROUPNAME], ['group22_2groupname']) self.assertEqual(e[libuser.GIDNUMBER], [4237]) v = e[libuser.MEMBERNAME] v.sort() self.assertEqual(v, ['group22_2member1', 'group22_2member3']) def testGroupMod3(self): # Large IDs e = self.a.initGroup('group22_3') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_3') self.assertNotEqual(e[libuser.GIDNUMBER], [LARGE_ID + 2230]) e[libuser.GIDNUMBER] = LARGE_ID + 2230 self.a.modifyGroup(e) del e e = self.a.lookupGroupByName('group22_3') self.assert_(e) self.assertEqual(e[libuser.GIDNUMBER], [LARGE_ID + 2230]) def testGroupMod4(self): # Renaming to create duplicate entries e = self.a.initGroup('group22_4') self.a.addGroup(e) del e e = self.a.initGroup('group22_5') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group22_5') e[libuser.GROUPNAME] = 'group22_4' self.assertRaises(RuntimeError, self.a.modifyGroup, e) def testGroupDel(self): e = self.a.initGroup('group23_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group23_1') self.assert_(e) self.a.deleteGroup(e) del e e = self.a.lookupGroupByName('group23_1') self.assertEqual(e, None) def testGroupLock1(self): e = self.a.initGroup('group24_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group24_1') self.a.setpassGroup(e, '04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}04cmES7HM6wtg']) self.a.lockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!04cmES7HM6wtg']) def testGroupLock2(self): e = self.a.initGroup('group24_2') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group24_2') self.a.setpassGroup(e, '!04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!04cmES7HM6wtg']) self.a.lockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!04cmES7HM6wtg']) def testGroupLock3(self): e = self.a.initGroup('group24_3') e[libuser.USERPASSWORD] = '{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==' self.a.addGroup(e) del e e = self.a.lookupGroupByName('group24_3') self.assertEqual(e[libuser.GROUPPASSWORD], ['{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==']) self.assertRaises(RuntimeError, self.a.lockGroup, e) def testGroupUnlock1(self): e = self.a.initGroup('group25_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group25_1') self.a.setpassGroup(e, '!04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!04cmES7HM6wtg']) self.a.unlockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}04cmES7HM6wtg']) def testGroupUnlock2(self): e = self.a.initGroup('group25_2') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group25_2') self.a.setpassGroup(e, '04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}04cmES7HM6wtg']) self.a.unlockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}04cmES7HM6wtg']) def testGroupUnlock3(self): e = self.a.initGroup('group25_3') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group25_3') self.a.setpassGroup(e, '!', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!']) self.a.unlockGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}']) def testGroupUnlock4(self): e = self.a.initGroup('group25_4') e[libuser.USERPASSWORD] = '{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==' self.a.addGroup(e) del e e = self.a.lookupGroupByName('group25_4') self.assertEqual(e[libuser.GROUPPASSWORD], ['{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==']) self.assertRaises(RuntimeError, self.a.unlockGroup, e) def testGroupUnlockNonempty1(self): e = self.a.initGroup('group33_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group33_1') self.a.setpassGroup(e, '!04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!04cmES7HM6wtg']) self.a.unlockGroup(e, True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}04cmES7HM6wtg']) def testGroupUnlockNonempty2(self): e = self.a.initGroup('group33_2') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group33_2') self.a.setpassGroup(e, '04cmES7HM6wtg', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}04cmES7HM6wtg']) self.a.unlockGroup(e, True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}04cmES7HM6wtg']) def testGroupUnlockNonempty3(self): e = self.a.initGroup('group33_3') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group33_3') self.a.setpassGroup(e, '!', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!']) self.assertRaises(RuntimeError, self.a.unlockGroup, e, True) del e e = self.a.lookupGroupByName('group33_3') self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!']) def testGroupUnlockNonempty4(self): e = self.a.initGroup('group33_4') e[libuser.USERPASSWORD] = '{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==' self.a.addGroup(e) del e e = self.a.lookupGroupByName('group33_4') self.assertEqual(e[libuser.GROUPPASSWORD], ['{MD5}Xr4ilOzQ4PCOq3aQ0qbuaQ==']) self.assertRaises(RuntimeError, self.a.unlockGroup, e, True) def testGroupIsLocked1(self): e = self.a.initGroup('group26_1') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group26_1') self.a.setpassGroup(e, '!05/lfLEyErrp2', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!05/lfLEyErrp2']) self.assertEqual(self.a.groupIsLocked(e), 1) def testGroupIsLocked2(self): e = self.a.initGroup('group26_2') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group26_2') self.a.setpassGroup(e, '05/lfLEyErrp2', True) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}05/lfLEyErrp2']) self.assertEqual(self.a.groupIsLocked(e), 0) def testGroupSetpass1(self): e = self.a.initGroup('group27_1') e[libuser.GROUPPASSWORD] = '{CRYPT}06aZrb3pzuu/6' self.a.addGroup(e) del e e = self.a.lookupGroupByName('group27_1') self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}06aZrb3pzuu/6']) self.a.setpassGroup(e, 'password', False) self.assertNotEqual(e[libuser.GROUPPASSWORD][0][7], '$') crypted = crypt.crypt('password', e[libuser.GROUPPASSWORD][0][7:]) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}' + crypted]) def testGroupSetpass2(self): e = self.a.initGroup('group27_2') e[libuser.GROUPPASSWORD] = ['unknown', '{CRYPT}06aZrb3pzuu/6'] self.a.addGroup(e) del e e = self.a.lookupGroupByName('group27_2') v = e[libuser.GROUPPASSWORD] v.sort() self.assertEqual(v, ['unknown', '{CRYPT}06aZrb3pzuu/6']) self.a.setpassGroup(e, 'password', False) v = e[libuser.GROUPPASSWORD] v.sort() self.assertNotEqual(e[libuser.GROUPPASSWORD][1][7], '$') crypted = crypt.crypt('password', v[1][7:]) self.assertEqual(v, ['unknown', '{CRYPT}' + crypted]) def testGroupSetpass3(self): e = self.a.initGroup('group27_3') e[libuser.GROUPPASSWORD] = ['unknown1', 'unknown2'] self.a.addGroup(e) del e e = self.a.lookupGroupByName('group27_3') v = e[libuser.GROUPPASSWORD] v.sort() self.assertEqual(v, ['unknown1', 'unknown2']) self.a.setpassGroup(e, 'password', False) self.assertEqual(e[libuser.GROUPPASSWORD][0][7:10], '$1$') crypted = crypt.crypt('password', e[libuser.GROUPPASSWORD][0][7:]) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}' + crypted]) def testGroupSetpass4(self): # Test that crypt_style is honored on accounts with no existing hash e = self.a.initGroup('group27_4') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group27_4') self.assertRaises(KeyError, lambda x: x[libuser.GROUPPASSWORD], e) self.a.setpassGroup(e, 'password', False) del e e = self.a.lookupGroupByName('group27_4') self.assertEqual(e[libuser.GROUPPASSWORD][0][7:10], '$1$') crypted = crypt.crypt('password', e[libuser.GROUPPASSWORD][0][7:]) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}' + crypted]) def testGroupSetpass5(self): # Test that crypt_style is honored on accounts with no existing hash e = self.a.initGroup('group27_5') e[libuser.GROUPPASSWORD] = ['{CRYPT}!05XMoJIk1se52'] self.a.addGroup(e) del e e = self.a.lookupGroupByName('group27_5') self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}!05XMoJIk1se52']) self.a.setpassGroup(e, 'password', False) del e e = self.a.lookupGroupByName('group27_5') self.assertNotEqual(e[libuser.GROUPPASSWORD][0][7], '$') crypted = crypt.crypt('password', e[libuser.GROUPPASSWORD][0][7:]) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}' + crypted]) def testGroupRemovepass1(self): e = self.a.initGroup('group28_1') e[libuser.GROUPPASSWORD] = '{CRYPT}07Js7N.eEhbgs' self.a.addGroup(e) del e e = self.a.lookupGroupByName('group28_1') self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}07Js7N.eEhbgs']) self.a.removepassGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}']) def testGroupRemovepass2(self): e = self.a.initGroup('group28_2') e[libuser.GROUPPASSWORD] = ['unknown', '{CRYPT}07Js7N.eEhbgs'] self.a.addGroup(e) del e e = self.a.lookupGroupByName('group28_2') v = e[libuser.GROUPPASSWORD] v.sort() self.assertEqual(v, ['unknown', '{CRYPT}07Js7N.eEhbgs']) self.a.removepassGroup(e) v = e[libuser.GROUPPASSWORD] v.sort() self.assertEqual(v, ['unknown', '{CRYPT}']) def testGroupRemovepass3(self): e = self.a.initGroup('group28_3') e[libuser.GROUPPASSWORD] = ['unknown1', 'unknown2'] self.a.addGroup(e) del e e = self.a.lookupGroupByName('group28_3') v = e[libuser.GROUPPASSWORD] v.sort() self.assertEqual(v, ['unknown1', 'unknown2']) self.a.removepassGroup(e) self.assertEqual(e[libuser.GROUPPASSWORD], ['{CRYPT}']) def testGroupsEnumerate(self): e = self.a.initGroup('group29_1') self.a.addGroup(e) e = self.a.initGroup('group29_2') self.a.addGroup(e) v = self.a.enumerateGroups('group29*') v.sort() self.assertEqual(v, ['group29_1', 'group29_2']) def testGroupsEnumerateByUser1(self): gid = 3001 # Hopefully unique e = self.a.initUser('user30_1') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group30_1') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) e = self.a.initGroup('group30_2') e[libuser.GIDNUMBER] = gid + 10 e[libuser.MEMBERNAME] = 'user30_1' self.a.addGroup(e) v = self.a.enumerateGroupsByUser('user30_1') v.sort() self.assertEqual(v, ['group30_1', 'group30_2']) def testGroupsEnumerateByUser2(self): gid = 3002 # Hopefully unique e = self.a.initUser('user30_2') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group30_3') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) self.assertEqual(self.a.enumerateGroupsByUser('user30_2'), ['group30_3']) def testGroupsEnumerateByUser3(self): gid = 3003 # Hopefully unique e = self.a.initUser('user30_3') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group30_4') e[libuser.GIDNUMBER] = gid + 10 e[libuser.MEMBERNAME] = 'user30_3' self.a.addGroup(e) self.assertEqual(self.a.enumerateGroupsByUser('user30_3'), ['group30_4']) def testGroupsEnumerateFull(self): e = self.a.initGroup('group31_1') self.a.addGroup(e) e = self.a.initGroup('group31_2') self.a.addGroup(e) v = map(lambda x: x[libuser.GROUPNAME], self.a.enumerateGroupsFull('group31*')) v.sort() self.assertEqual(v, [['group31_1'], ['group31_2']]) def testGroupsEnumerateByUserFull1(self): gid = 3501 # Hopefully unique e = self.a.initUser('user35_1') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group35_1') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) e = self.a.initGroup('group35_2') e[libuser.GIDNUMBER] = gid + 10 e[libuser.MEMBERNAME] = 'user35_1' self.a.addGroup(e) v = map(lambda x: x[libuser.GROUPNAME], self.a.enumerateGroupsByUserFull('user35_1')) v.sort() self.assertEqual(v, [['group35_1'], ['group35_2']]) def testGroupsEnumerateByUserFull2(self): gid = 3502 # Hopefully unique e = self.a.initUser('user35_2') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group35_3') e[libuser.GIDNUMBER] = gid self.a.addGroup(e) v = map(lambda x: x[libuser.GROUPNAME], self.a.enumerateGroupsByUserFull('user35_2')) self.assertEqual(v, [['group35_3']]) def testGroupsEnumerateByUserFull3(self): gid = 3503 # Hopefully unique e = self.a.initUser('user35_3') e[libuser.GIDNUMBER] = gid self.a.addUser(e, False, False) e = self.a.initGroup('group35_4') e[libuser.GIDNUMBER] = gid + 10 e[libuser.MEMBERNAME] = 'user35_3' self.a.addGroup(e) v = map(lambda x: x[libuser.GROUPNAME], self.a.enumerateGroupsByUserFull('user35_3')) self.assertEqual(v, [['group35_4']]) def tearDown(self): del self.a if __name__ == '__main__': unittest.main() libuser-0.60~dfsg/tests/ldap_skel.ldif0000644000175000017500000000035212226342570020035 0ustar tzafrirtzafrirdn: dc=libuser dc: libuser objectClass: top objectClass: domain dn: ou=People,dc=libuser ou: People objectClass: top objectClass: organizationalUnit dn: ou=Group,dc=libuser ou: Group objectClass: top objectClass: organizationalUnit libuser-0.60~dfsg/tests/files.conf.in0000644000175000017500000000141512226342570017616 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs skeleton = /etc/skel mailspooldir = /var/mail modules = files shadow create_modules = files shadow crypt_style = md5 [userdefaults] LU_USERNAME = %n LU_UIDNUMBER = 500 LU_GIDNUMBER = %u # LU_USERPASSWORD = !! # LU_GECOS = %n # LU_HOMEDIRECTORY = /home/%n # LU_LOGINSHELL = /bin/bash # LU_SHADOWNAME = %n # LU_SHADOWPASSWORD = !! # LU_SHADOWLASTCHANGE = %d # LU_SHADOWMIN = 0 # LU_SHADOWMAX = 99999 # LU_SHADOWWARNING = 7 # LU_SHADOWINACTIVE = -1 # LU_SHADOWEXPIRE = -1 # LU_SHADOWFLAG = -1 [groupdefaults] LU_GROUPNAME = %n LU_GIDNUMBER = 500 # LU_GROUPPASSWORD = !! # LU_MEMBERUID = # LU_ADMINISTRATORUID = [files] directory = @WORKDIR@/files nonroot = yes [shadow] directory = @WORKDIR@/files nonroot = yes libuser-0.60~dfsg/tests/fs.conf.in0000644000175000017500000000060712226342570017126 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs skeleton = @WORKDIR@/skel modules = files shadow create_modules = files shadow crypt_style = md5 [userdefaults] LU_USERNAME = %n LU_UIDNUMBER = 500 LU_GIDNUMBER = %u [groupdefaults] LU_GROUPNAME = %n LU_GIDNUMBER = 500 [files] directory = @WORKDIR@/files nonroot = yes [shadow] directory = @WORKDIR@/files nonroot = yes libuser-0.60~dfsg/tests/config_login.defs0000644000175000017500000000036412226342570020542 0ustar tzafrirtzafrirTHIS_VARIABLE_IS_UNKNOWN !@#$% GID_MIN 1234 MAIL_DIR /mail/dir/value MD5_CRYPT_ENAB yes PASS_MAX_DAYS 1235 PASS_MIN_DAYS 1236 PASS_WARN_AGE 1237 UID_MIN 1238 # Last value wins UID_MIN 1239 SHA_CRYPT_MIN_ROUNDS 1240 SHA_CRYPT_MAX_ROUNDS 1241 libuser-0.60~dfsg/tests/wait_for_slapd_start.c0000644000175000017500000000423212226342570021616 0ustar tzafrirtzafrir/* Copyright (C) 2012 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #undef NDEBUG #include static int slapd_started(const char *pid_file, int sock, const struct sockaddr_in *sin) { return access(pid_file, F_OK) == 0 && connect(sock, (const struct sockaddr *)sin, sizeof (*sin)) == 0; } /* Wait for slapd to start and create its pid file */ int main(int argc, char *argv[]) { long port; char *p; struct sockaddr_in sin; int sock, i; assert(argc == 3); errno = 0; port = strtol(argv[2], &p, 10); assert (errno == 0 && *p == 0 && p != argv[2] && (in_port_t)port == port); sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); assert(sock != -1); sin.sin_family = AF_INET; sin.sin_addr.s_addr = inet_addr("127.0.0.1"); sin.sin_port = htons(port); for (i = 0; i < 50; i++) { printf("\rWaiting for slapd: %.1f...", i / 10.0); fflush(stdout); if (slapd_started(argv[1], sock, &sin)) goto ok; usleep(100000); } for (i = 5; i < 30; i++) { printf("\rWaiting for slapd: %d... ", i); fflush(stdout); if (slapd_started(argv[1], sock, &sin)) goto ok; sleep(1); } close(sock); putchar('\n'); fprintf(stderr, "Timeout waiting for slapd\n"); return EXIT_FAILURE; ok: close(sock); putchar('\n'); return EXIT_SUCCESS; } libuser-0.60~dfsg/tests/config_default_useradd0000644000175000017500000000021612226342570021641 0ustar tzafrirtzafrirTHIS_VARIABLE_IS_UNKNOWN=1@#$% EXPIRE=00:00 UTC May 1 1980 GROUP=4322 HOME=/custom/homes INACTIVE=4323 SHELL=/login/shell SKEL=/skeleton/path libuser-0.60~dfsg/tests/valgrind.supp0000644000175000017500000000176212226342570017764 0ustar tzafrirtzafrir{ GLib g_type_init Memcheck:Leak ... fun:g_type_init_with_debug_flags } { librpm addr1 Memcheck:Addr1 ... fun:init_rpm } { librpm addr2 Memcheck:Addr2 ... fun:init_rpm } { librpm addr4 Memcheck:Addr4 ... fun:init_rpm } { librpm/NSS Memcheck:Leak ... fun:NSS_NoDB_Init ... fun:init_rpm } { glibc md5 Memcheck:Cond fun:__stpncpy_sse2_unaligned fun:__md5_crypt_r } { glibc sha256 Memcheck:Cond fun:__stpncpy_sse2_unaligned fun:__sha256_crypt_r } { glibc sha512 Memcheck:Cond fun:__stpncpy_sse2_unaligned fun:__sha512_crypt_r } { NSS initialization Memcheck:Leak ... fun:NSS_InitContext } { strlen() in popt (?) Memcheck:Addr4 ... fun:poptGetNextOpt } { known memory leak "in" popt (well, the data is for the caller...) Memcheck:Leak fun:malloc fun:poptGetNextOpt } { known memory leak in popt Memcheck:Leak fun:realloc fun:poptGetNextOpt fun:main } libuser-0.60~dfsg/tests/default_pw_test.py0000644000175000017500000000403412226342570021003 0ustar tzafrirtzafririmport crypt import libuser import sys import unittest def prompt_callback(prompts): for p in prompts: if p.key == 'ldap/password': p.value = 'password' else: p.value = p.default_value valid_combination=int(sys.argv[1]) del sys.argv[1] # For unittest.main() # This is ugly; ideally we would want a separate connection for each test case, # but libssl REALLY doesn't like being unloaded (libcrypto is not unloaded # and keeps pointers to unloaded libssl) if valid_combination != 0: admin = libuser.admin(prompt = prompt_callback) else: try: admin = libuser.admin(prompt = prompt_callback) except SystemError: print "Initialization error, as expected" sys.exit(0) print >> sys.stderr, "Initialization unexpectedly succeeded" sys.exit(1) # Test case order matches the order of function pointers in struct lu_module class Tests(unittest.TestCase): def setUp(self): # See the comment at the libuser.admin() call above self.a = admin def testGroupAddDefault(self): # Add a group with default attributes e = self.a.initGroup('group_default') self.a.addGroup(e) del e def testGroupAddSetpass(self): # Add a group, changing a password explicitly e = self.a.initGroup('group_setpass') self.a.addGroup(e) del e e = self.a.lookupGroupByName('group_setpass') self.a.setpassGroup(e, 'password', False) del e def testUserAddDefault(self): # Add an user with default attributes e = self.a.initUser('user_default') self.a.addUser(e, False, False) del e def testUserAddSetpass(self): # Add an user, changing password explicitly e = self.a.initUser('user_setpass') self.a.addUser(e, False, False) del e e = self.a.lookupUserByName('user_setpass') self.a.setpassUser(e, 'password', False) del e def tearDown(self): del self.a if __name__ == '__main__': unittest.main() libuser-0.60~dfsg/tests/pwhash.conf.in0000644000175000017500000000054712226342570020013 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs modules = files shadow create_modules = files shadow [userdefaults] LU_USERNAME = %n LU_UIDNUMBER = 500 LU_GIDNUMBER = %u [groupdefaults] LU_GROUPNAME = %n LU_GIDNUMBER = 500 [files] directory = @WORKDIR@/files nonroot = yes [shadow] directory = @WORKDIR@/files nonroot = yes [defaults] libuser-0.60~dfsg/tests/utils_shadow0000644000175000017500000000077212226342570017675 0ustar tzafrirtzafriruser3_5:!!:DATE:0:99999:7::: user3_6:!!:DATE:0:99999:7::: user4_1:!!:400:430:440:450:420:410: user4_2:!!::::::: user5_1:!!:DATE:0:99999:7::: user5_2:!!:DATE:0:99999:7::: user6_1:HASH:DATE:0:99999:7::: user6_2:HASH:DATE:0:99999:7::: user6_3:HASH:DATE:0:99999:7::: user6_4:HASH:DATE:0:99999:7::: user7_1:03dgZm5nZvqOc:DATE:0:99999:7::: 2147484369:!!:DATE:0:99999:7::: user9_2:!!04aqostCGmvZM:DATE:0:99999:7::: user9_3:05FdoegP8UniQ:DATE:0:99999:7::: user9_5:!!:DATE:0:99999:7::: user9_6:!!:DATE:0:99999:7::: libuser-0.60~dfsg/tests/ldap_test0000755000175000017500000000452012226342570017145 0ustar tzafrirtzafrir#! /bin/sh # Automated LDAP regression tester # # Copyright (c) 2004 Red Hat, Inc. All rights reserved. # # This is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: Miloslav Trmac srcdir=$srcdir/tests workdir=$(pwd)/test_ldap trap 'status=$?; rm -rf "$workdir"; exit $status' 0 trap '(exit 1); exit 1' 1 2 13 15 rm -rf "$workdir" mkdir "$workdir" # Create a SSL key /usr/bin/openssl req -newkey rsa:1024 -keyout "$workdir"/key1 -nodes \ -x509 -days 2 -out "$workdir"/key3 2>/dev/null < "$workdir"/key2 cat "$workdir"/key{1,2,3} > "$workdir"/key.pem rm "$workdir"/key{1,2,3} # Set up an LDAP server mkdir "$workdir"/db sed "s|@WORKDIR@|$workdir|g" < "$srcdir"/slapd.conf.in > "$workdir"/slapd.conf ldap_port=$(tests/alloc_port) # This is racy, but much better than a static port # FIXME: path /usr/sbin/slapd -h ldap://127.0.0.1:"$ldap_port"/ -f "$workdir"/slapd.conf & tests/wait_for_slapd_start "$workdir"/slapd.pid "$ldap_port" slapd_pid=$(cat "$workdir"/slapd.pid) trap 'status=$?; kill $slapd_pid tests/wait_for_slapd_exit "$workdir"/slapd.pid "$ldap_port" rm -rf "$workdir"; exit $status' 0 ldapadd -h 127.0.0.1 -p "$ldap_port" -f "$srcdir/ldap_skel.ldif" -x \ -D cn=Manager,dc=libuser -w password # Set up the client LIBUSER_CONF=$workdir/libuser.conf export LIBUSER_CONF sed -e "s|@WORKDIR@|$workdir|g; s|@TOP_BUILDDIR@|$(pwd)|g" \ -e "s|@LDAP_PORT@|$ldap_port|g" < "$srcdir"/ldap.conf.in > "$LIBUSER_CONF" # Ugly non-portable hacks LD_LIBRARY_PATH=$(pwd)/lib/.libs export LD_LIBRARY_PATH PYTHONPATH=$(pwd)/python/.libs export PYTHONPATH # Point "$HOME/ldaprc" to "$srcdir"/ldaprc HOME="$srcdir" $VALGRIND python "$srcdir"/ldap_test.py libuser-0.60~dfsg/tests/config_test.sh0000755000175000017500000000350612226342570020106 0ustar tzafrirtzafrir#! /bin/sh # Automated config handling regression tester # # Copyright (c) 2004, 2005, 2008 Red Hat, Inc. All rights reserved. # # This is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: Miloslav Trmac srcdir=$srcdir/tests workdir=$(pwd)/test_config trap 'status=$?; rm -rf "$workdir"; exit $status' 0 trap '(exit 1); exit 1' 1 2 13 15 rm -rf "$workdir" mkdir "$workdir" # Set up the client sed "s|@TOP_BUILDDIR@|$(pwd)|g" < "$srcdir"/config.conf.in \ > "$workdir/libuser.conf" sed -e "s|@TOP_BUILDDIR@|$(pwd)|g" -e "s|@SRCDIR@|$srcdir|g" \ < "$srcdir"/config_import.conf.in > "$workdir/libuser_import.conf" sed -e "s|@TOP_BUILDDIR@|$(pwd)|g" -e "s|@SRCDIR@|$srcdir|g" \ < "$srcdir"/config_import2.conf.in > "$workdir/libuser_import2.conf" sed -e "s|@TOP_BUILDDIR@|$(pwd)|g" -e "s|@SRCDIR@|$srcdir|g" \ < "$srcdir"/config_override.conf.in > "$workdir/libuser_override.conf" # Ugly non-portable hacks LD_LIBRARY_PATH=$(pwd)/lib/.libs export LD_LIBRARY_PATH PYTHONPATH=$(pwd)/python/.libs export PYTHONPATH $VALGRIND tests/config_test "$workdir" LIBUSER_CONF="$workdir/libuser_import.conf" export LIBUSER_CONF workdir="$workdir" $VALGRIND python "$srcdir"/config_test.py libuser-0.60~dfsg/tests/ldap.conf.in0000644000175000017500000000140212226342570017430 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs skeleton = /etc/skel mailspooldir = /var/mail modules = ldap create_modules = ldap crypt_style = md5 [userdefaults] LU_USERNAME = %n LU_UIDNUMBER = 500 LU_GIDNUMBER = %u # LU_USERPASSWORD = !! # LU_GECOS = %n # LU_HOMEDIRECTORY = /home/%n # LU_LOGINSHELL = /bin/bash # LU_SHADOWNAME = %n # LU_SHADOWPASSWORD = !! # LU_SHADOWLASTCHANGE = %d # LU_SHADOWMIN = 0 # LU_SHADOWMAX = 99999 # LU_SHADOWWARNING = 7 # LU_SHADOWINACTIVE = -1 # LU_SHADOWEXPIRE = -1 # LU_SHADOWFLAG = -1 [groupdefaults] LU_GROUPNAME = %n LU_GIDNUMBER = 500 # LU_GROUPPASSWORD = !! # LU_MEMBERUID = # LU_ADMINISTRATORUID = [ldap] server = 127.0.0.1:@LDAP_PORT@ basedn = dc=libuser bindtype = simple binddn = cn=Manager,dc=libuser libuser-0.60~dfsg/tests/config_test.py0000644000175000017500000000122112226342570020111 0ustar tzafrirtzafririmport libuser import unittest LARGE_ID = 2147483648 class Tests(unittest.TestCase): def setUp(self): self.a = libuser.admin() def testGetFirstUnusedUid(self): self.assertEqual(self.a.getFirstUnusedUid(start=LARGE_ID + 100), LARGE_ID + 100) self.assertEqual(self.a.getFirstUnusedUid(), 1239) def testGetFirstUnusedGid(self): self.assertEqual(self.a.getFirstUnusedGid(start=LARGE_ID + 200), LARGE_ID + 200) self.assertEqual(self.a.getFirstUnusedGid(), 1234) def tearDown(self): del self.a if __name__ == '__main__': unittest.main() libuser-0.60~dfsg/tests/config_login2.defs0000644000175000017500000000005012226342570020614 0ustar tzafrirtzafrirMD5_CRYPT_ENAB yes ENCRYPT_METHOD SHA256libuser-0.60~dfsg/tests/slapd.conf.in0000644000175000017500000000123012226342570017612 0ustar tzafrirtzafririnclude /etc/openldap/schema/core.schema include /etc/openldap/schema/cosine.schema include /etc/openldap/schema/inetorgperson.schema include /etc/openldap/schema/nis.schema allow bind_v2 pidfile @WORKDIR@/slapd.pid TLSCertificateFile @WORKDIR@/key.pem TLSCertificateKeyFile @WORKDIR@/key.pem database bdb suffix "dc=libuser" rootdn "cn=Manager,dc=libuser" rootpw {SSHA}ABgelmLFZQ/OJzVEp3OM5MzWQ9rt3b4F directory @WORKDIR@/db index objectClass eq,pres index ou,cn,mail,surname,givenname eq,pres,sub index uidNumber,gidNumber,loginShell eq,pres index uid,memberUid eq,pres,sub libuser-0.60~dfsg/tests/pwhash.py0000644000175000017500000000034212226342570017102 0ustar tzafrirtzafririmport libuser admin = libuser.admin() e = admin.initUser('pwhash_user') admin.addUser(e, False, False) admin.setpassUser(e, 'password', False) res = e[libuser.SHADOWPASSWORD][0] admin.deleteUser(e, False, False) print res libuser-0.60~dfsg/tests/default_pw.conf.in0000644000175000017500000000156312226342570020652 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs skeleton = /etc/skel mailspooldir = /var/mail modules = @MODULES@ create_modules = @MODULES@ crypt_style = md5 [userdefaults] LU_USERNAME = %n LU_UIDNUMBER = 500 LU_GIDNUMBER = %u # LU_USERPASSWORD = !! # LU_GECOS = %n # LU_HOMEDIRECTORY = /home/%n # LU_LOGINSHELL = /bin/bash # LU_SHADOWNAME = %n # LU_SHADOWPASSWORD = !! # LU_SHADOWLASTCHANGE = %d # LU_SHADOWMIN = 0 # LU_SHADOWMAX = 99999 # LU_SHADOWWARNING = 7 # LU_SHADOWINACTIVE = -1 # LU_SHADOWEXPIRE = -1 # LU_SHADOWFLAG = -1 [groupdefaults] LU_GROUPNAME = %n LU_GIDNUMBER = 500 # LU_GROUPPASSWORD = !! # LU_MEMBERUID = # LU_ADMINISTRATORUID = [ldap] server = 127.0.0.1:@LDAP_PORT@ basedn = dc=libuser bindtype = simple binddn = cn=Manager,dc=libuser [files] directory = @WORKDIR@/files nonroot = yes [shadow] directory = @WORKDIR@/files nonroot = yes libuser-0.60~dfsg/tests/config_override.conf.in0000644000175000017500000000130712226342570021660 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs modules = files shadow create_modules = files shadow mailspooldir = /overridden/mailspooldir crypt_style = des hash_rounds_min = 4250 hash_rounds_max = 4251 skeleton = /overridden/skeleton [import] login_defs = @SRCDIR@/config_login.defs default_useradd = @SRCDIR@/config_default_useradd [groupdefaults] LU_GIDNUMBER = 4242 [userdefaults] LU_SHADOWMAX = 4243 # LU_SHADOWMIN sp_min = 4244 LU_SHADOWWARNING = 4245 # LU_UIDNUMBER pw_uid = 4246 LU_SHADOWEXPIRE = 4247 LU_GIDNUMBER = 4248 LU_HOMEDIRECTORY = /overridden/home-%n # LU_SHADOWINACTIVE sp_inact = 4249 LU_LOGINSHELL = /overridden/shell [files] nonroot = yes [shadow] nonroot = yes libuser-0.60~dfsg/tests/config_test.c0000644000175000017500000001370312226342570017713 0ustar tzafrirtzafrir/* Copyright (C) 2000-2002, 2005, 2008 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include "../lib/user.h" #undef NDEBUG #include static struct lu_context * start(const char *base, const char *file) { char *path; struct lu_context *ctx; struct lu_error *error; path = g_strconcat(base, "/", file, NULL); setenv("LIBUSER_CONF", path, 1); g_free(path); error = NULL; ctx = lu_start(NULL, 0, NULL, NULL, lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, "Error initializing %s: %s.\n", PACKAGE, lu_strerror(error)); exit(1); } return ctx; } static void verify_var(struct lu_context *ctx, const char *key, ...) { GList *list, *it; va_list ap; const char *val; list = lu_cfg_read(ctx, key, NULL); it = list; va_start(ap, key); while ((val = va_arg(ap, const char *)) != NULL) { assert(it != NULL && strcmp(it->data, val) == 0); it = it->next; } va_end(ap); assert(it == NULL); g_list_free(list); } int main(int argc, char *argv[]) { struct lu_context *ctx; GList *list; assert(argc == 2); ctx = start(argv[1], "libuser.conf"); verify_var(ctx, "test/name", "value1", "value2", (const char *)NULL); list = lu_cfg_read(ctx, "test/nonexistent", "default"); assert(g_list_length(list) == 1); assert(strcmp(list->data, "default") == 0); g_list_free(list); verify_var(ctx, "test/nonexistent", (const char *)NULL); assert(strcmp(lu_cfg_read_single(ctx, "test/name", NULL), "value1") == 0); assert(strcmp(lu_cfg_read_single(ctx, "test/nonexistent", "default"), "default") == 0); assert(lu_cfg_read_single(ctx, "test/nonexistent", NULL) == NULL); list = lu_cfg_read_keys(ctx, "test"); assert(g_list_length(list) == 2); assert(strcmp(list->data, "name") == 0); assert(strcmp(list->next->data, "name2") == 0); g_list_free(list); list = lu_cfg_read_keys(ctx, "invalid"); assert(g_list_length(list) == 0); g_list_free(list); lu_end(ctx); ctx = start(argv[1], "libuser_import.conf"); verify_var(ctx, "groupdefaults/" LU_GIDNUMBER, "1234", (const char *)NULL); verify_var(ctx, "defaults/mailspooldir", "/mail/dir/value", (const char *)NULL); verify_var(ctx, "defaults/crypt_style", "md5", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_SHADOWMAX, "1235", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_SHADOWMIN, "1236", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_SHADOWWARNING, "1237", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_UIDNUMBER, "1239", (const char *)NULL); verify_var(ctx, "defaults/hash_rounds_min", "1240", (const char *)NULL); verify_var(ctx, "defaults/hash_rounds_max", "1241", (const char *)NULL); /* From (echo $(($(date -d 'may 1 1980 0:0' +%s) / 24 / 3600))) */ verify_var(ctx, "userdefaults/" LU_SHADOWEXPIRE, "3773", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_GIDNUMBER, "4322", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_HOMEDIRECTORY, "/custom/homes/%n", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_SHADOWINACTIVE, "4323", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_LOGINSHELL, "/login/shell", (const char *)NULL); verify_var(ctx, "defaults/skeleton", "/skeleton/path", (const char *)NULL); lu_end(ctx); ctx = start(argv[1], "libuser_import2.conf"); verify_var(ctx, "defaults/crypt_style", "SHA256", (const char *)NULL); lu_end(ctx); ctx = start(argv[1], "libuser_override.conf"); verify_var(ctx, "groupdefaults/LU_GIDNUMBER", "4242", (const char *)NULL); verify_var(ctx, "groupdefaults/" LU_GIDNUMBER, (const char *)NULL); verify_var(ctx, "defaults/mailspooldir", "/overridden/mailspooldir", (const char *)NULL); verify_var(ctx, "defaults/crypt_style", "des", (const char *)NULL); verify_var(ctx, "userdefaults/LU_SHADOWMAX", "4243", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_SHADOWMAX, (const char *)NULL); verify_var(ctx, "userdefaults/" LU_SHADOWMIN, "4244", (const char *)NULL); verify_var(ctx, "userdefaults/LU_SHADOWWARNING", "4245", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_SHADOWWARNING, (const char *)NULL); verify_var(ctx, "userdefaults/" LU_UIDNUMBER, "4246", (const char *)NULL); verify_var(ctx, "defaults/hash_rounds_min", "4250", (const char *)NULL); verify_var(ctx, "defaults/hash_rounds_max", "4251", (const char *)NULL); verify_var(ctx, "userdefaults/LU_SHADOWEXPIRE", "4247", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_SHADOWEXPIRE, (const char *)NULL); verify_var(ctx, "userdefaults/LU_GIDNUMBER", "4248", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_GIDNUMBER, (const char *)NULL); verify_var(ctx, "userdefaults/LU_HOMEDIRECTORY", "/overridden/home-%n", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_HOMEDIRECTORY, (const char *)NULL); verify_var(ctx, "userdefaults/" LU_SHADOWINACTIVE, "4249", (const char *)NULL); verify_var(ctx, "userdefaults/LU_LOGINSHELL", "/overridden/shell", (const char *)NULL); verify_var(ctx, "userdefaults/" LU_LOGINSHELL, (const char *)NULL); verify_var(ctx, "defaults/skeleton", "/overridden/skeleton", (const char *)NULL); lu_end(ctx); return 0; } libuser-0.60~dfsg/tests/pwhash_test0000755000175000017500000001014012226342570017512 0ustar tzafrirtzafrir#! /bin/sh # Automated password hashing regression tester # # Copyright (c) 2008 Red Hat, Inc. All rights reserved. # # This is free software; you can redistribute it and/or modify it under # the terms of the GNU Library General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: Miloslav Trmac srcdir=$srcdir/tests workdir=$(pwd)/test_pwhash trap 'status=$?; rm -rf "$workdir"; exit $status' 0 trap '(exit 1); exit 1' 1 2 13 15 rm -rf "$workdir" mkdir "$workdir" # Set up the environment mkdir "$workdir"/files touch "$workdir"/files/passwd "$workdir"/files/shadow touch "$workdir"/files/group "$workdir"/files/gshadow LIBUSER_CONF=$workdir/libuser.conf export LIBUSER_CONF sed "s|@WORKDIR@|$workdir|g; s|@TOP_BUILDDIR@|$(pwd)|g" \ < "$srcdir"/pwhash.conf.in > "${LIBUSER_CONF}_" # Ugly non-portable hacks LD_LIBRARY_PATH=$(pwd)/lib/.libs export LD_LIBRARY_PATH PYTHONPATH=$(pwd)/python/.libs export PYTHONPATH cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" echo 'crypt_style = des' >> "$LIBUSER_CONF" pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$}" != "x$pw" ]; then echo "Invalid DES hash" >&2 exit 1 fi cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" echo 'crypt_style = md5' >> "$LIBUSER_CONF" pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$1\$}" = "x$pw" ]; then echo "Invalid MD5 hash" >&2 exit 1 fi cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" echo 'crypt_style = sha256' >> "$LIBUSER_CONF" pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$5\$}" = "x$pw" ]; then echo "Invalid SHA256 hash" >&2 exit 1 fi cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" echo 'crypt_style = sha512' >> "$LIBUSER_CONF" pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$6\$}" = "x$pw" ]; then echo "Invalid SHA512 hash" >&2 exit 1 fi cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" cat >> "$LIBUSER_CONF" <<\EOF crypt_style = sha256 hash_rounds_min = 4242 EOF pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$5\$rounds=4242\$}" = "x$pw" ]; then echo "Invalid rounds value" >&2 exit 1 fi cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" cat >> "$LIBUSER_CONF" <<\EOF crypt_style = sha256 hash_rounds_max = 4243 EOF pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$5\$rounds=4243\$}" = "x$pw" ]; then echo "Invalid rounds value" >&2 exit 1 fi cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" cat >> "$LIBUSER_CONF" <<\EOF crypt_style = sha256 hash_rounds_min = 4244 hash_rounds_max = 4244 EOF pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$5\$rounds=4244\$}" = "x$pw" ]; then echo "Invalid rounds value" >&2 exit 1 fi cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" cat >> "$LIBUSER_CONF" <<\EOF crypt_style = sha256 hash_rounds_min = 4246 hash_rounds_max = 4245 EOF pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$5\$rounds=4246\$}" = "x$pw" ]; then echo "Invalid rounds value" >&2 exit 1 fi cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" cat >> "$LIBUSER_CONF" <<\EOF crypt_style = sha256 hash_rounds_min = 4247 hash_rounds_max = 4247 EOF pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$5\$rounds=4247\$}" = "x$pw" ]; then echo "Invalid rounds value" >&2 exit 1 fi cp "${LIBUSER_CONF}_" "$LIBUSER_CONF" cat >> "$LIBUSER_CONF" <<\EOF crypt_style = sha256 hash_rounds_min = 50000 hash_rounds_max = 59999 EOF pw=$(workdir="$workdir" $VALGRIND python "$srcdir"/pwhash.py) if [ "x${pw#\$5\$rounds=5????\$}" = "x$pw" ]; then echo "Invalid rounds value" >&2 exit 1 fi libuser-0.60~dfsg/tests/ldaprc0000644000175000017500000000012712226342570016427 0ustar tzafrirtzafrirHOST 127.0.0.1 BASE dc=libuser # Don't check hostname on certificate TLS_REQCERT allow libuser-0.60~dfsg/tests/utils_gshadow0000644000175000017500000000062712226342570020043 0ustar tzafrirtzafrirgroup1_1:!!:: group3_2:!!01vokOibos3pg:user3_2:user3_4 group3_3:02yd6IWnPes66:: group3_4:!!::user3_6 group3_5:!!:: user4_1:!!:: user4_2:!!:: group5_1:!!::user5_2 group5_2:!!::user5_1,user5_2 group5_3:!!:: user6_2:!!:: group6_3:!!:: user6_1:!!:: group6_4:!!:: group7_1:!!:: 2147484369:!!:: group8_1:!!:: user8_3:!!:: group9_1:!!:: group9_2:!!:: group9_3:!!:: group9_4:!!:: group9_5:!!::user9_5 group9_6:!!:: libuser-0.60~dfsg/tests/utils_passwd0000644000175000017500000000177112226342570017711 0ustar tzafrirtzafriruser3_5:x:2147483998:2147483989:user3_5:/home/user3_5:/bin/bash user3_6:x:2147484008:2147483998:user3_6:/home/user3_6:/bin/bash user4_1:x:2147484058:2147484058:user4_1:/home/user4_1:/bin/bash user4_2:x:2147484068:2147484068:user4_2:/home/user4_2:/bin/bash user5_1:x:2147484158:2147484158:user5_1:/home/user5_1:/bin/bash user5_2:x:2147484168:2147484178:user5_2:/home/user5_2:/bin/bash user6_1:x:2147484258:2147484258:GECOS6_1:HomeDir6_1:Shell6_1 user6_2:x:2147484268:2147484268:user6_2:/home/user6_2:/bin/bash user6_3:x:2147484278:2147484278:user6_3:/home/user6_3:/bin/bash user6_4:x:2147484288:GID:user6_4:/home/user6_4:/bin/bash user7_1:x:2147484358:2147484358:GECOS7_1:HomeDir7_1:Shell7_1 2147484369:x:2147484370:2147484368:2147484369:/home/2147484369:/bin/bash user9_2:x:2147484559:2147484568:GECOS9_1:HomeDir9_1:Shell9_1 user9_3:x:2147484578:2147484578:user9_3:/home/user9_3:/bin/bash user9_5:x:2147484588:2147484588:user9_4:/home/user9_4:/bin/bash user9_6:x:2147484608:2147484609:user9_6:/home/user9_6:/bin/bash libuser-0.60~dfsg/tests/config.conf.in0000644000175000017500000000062512226342570017763 0ustar tzafrirtzafrir[defaults] # non-portable moduledir = @TOP_BUILDDIR@/modules/.libs modules = files shadow create_modules = files shadow [files] nonroot = yes [shadow] nonroot = yes # trailing garbage on section headers is ignored [test] garbage name = value1 # empty value name2 = # values of the same key are kept in order name = value2 # invalid section header [invalid # no '=' sign name3 # empty key name = value3 libuser-0.60~dfsg/tests/utils_group0000644000175000017500000000111112226342570017530 0ustar tzafrirtzafrirgroup1_1:x:2147483758: group3_2:x:2147483959:user3_4 group3_3:x:2147483978: group3_4:x:2147483989:user3_6 group3_5:x:2147483998: user4_1:x:2147484058: user4_2:x:2147484068: group5_1:x:2147484158:user5_2 group5_2:x:2147484168:user5_1,user5_2 group5_3:x:2147484178: user6_2:x:2147484268: group6_3:x:2147484278: user6_1:x:2147484258: group6_4:x:GID: group7_1:x:2147484358: 2147484369:x:2147484368: group8_1:x:2147484458: user8_3:x:2147484478: group9_1:x:2147484558: group9_2:x:2147484568: group9_3:x:2147484578: group9_4:x:2147484588: group9_5:x:2147484598:user9_5 group9_6:x:2147484608: libuser-0.60~dfsg/AUTHORS0000644000175000017500000000004312226342567015150 0ustar tzafrirtzafrirNalin Dahyabhai libuser-0.60~dfsg/configure.ac0000644000175000017500000001102212226342567016365 0ustar tzafrirtzafrirAC_INIT([libuser], [0.60], [mitr@redhat.com], , [https://fedorahosted.org/libuser/]) AC_PREREQ([2.63b]) AC_CONFIG_HEADERS(config.h) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([lib/user.c]) AC_CONFIG_AUX_DIR([admin]) AM_INIT_AUTOMAKE([no-dist-gzip dist-xz subdir-objects -Wall]) AC_USE_SYSTEM_EXTENSIONS AC_PROG_CC AM_PROG_CC_C_O AM_PROG_AR AC_CHECK_PROG([YACC], [bison -y], [bison -y], [:]) AC_PATH_PROG([NSCD], [nscd], [/usr/sbin/nscd], [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin]) AC_ARG_VAR([NSCD], [Path to nscd]) AC_SYS_LARGEFILE LT_INIT([disable-static]) PKG_CHECK_MODULES(GLIB,[glib-2.0 gmodule-no-export-2.0]) PKG_CHECK_MODULES(GOBJECT,[glib-2.0 gobject-2.0]) PKG_CHECK_MODULES(GMODULE,[glib-2.0 gmodule-no-export-2.0 gobject-2.0]) AC_DEFINE(G_DISABLE_DEPRECATED,, [Stay away from deprecated glib functionality.]) # GValueArray is a part of external API of the library; warnings about it being # deprecated do no good. AC_DEFINE([GLIB_VERSION_MIN_REQUIRED], [GLIB_VERSION_2_30], [Shut up warnings about deprecated GValueArray]) AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([0.18.2]) LIBSAVE="$LIBS" AC_SEARCH_LIBS([crypt], [crypt]) CRYPT_LIBS="$LIBS" LIBS="$LIBSAVE" AC_SUBST(CRYPT_LIBS) AC_ARG_WITH([popt], AS_HELP_STRING([--with-popt=DIR], [use popt headers and libraries under DIR]), [if test "x$withval" != x -a "x$withval" != xyes -a "x$withval" != xno -a \ "x$withval" != x/usr ; then CPPFLAGS="$CPPFLAGS -I$popt/include" LDFLAGS="$LDFLAGS -L$popt/lib" fi]) AC_ARG_WITH([ldap], AS_HELP_STRING([--with-ldap=DIR], [use OpenLDAP 2.x headers and libraries under DIR]), [if test "x$withval" != x -a "x$withval" != xno ; then ldap=$withval else ldap=no fi ],ldap=no) build_ldap=no if test x$ldap != xno ; then LIBSAVE="$LIBS" if test x$ldap != xyes -a x$ldap != x/usr ; then CPPFLAGS="$CPPFLAGS -I$ldap/include" LDFLAGS="$LDFLAGS -L$ldap/lib" fi AC_SEARCH_LIBS([ldap_sasl_interactive_bind_s], [ldap]) AC_CHECK_FUNC(ldap_sasl_interactive_bind_s,[ AC_CHECK_FUNC(ldap_set_option,[ AC_CHECK_FUNC(ldap_start_tls_s,[ AC_CHECK_FUNC(ldap_modify_ext_s,[ AC_CHECK_FUNC(ldap_delete_ext_s,[ build_ldap=yes])])])])]) LIBS="$LIBSAVE" fi AM_CONDITIONAL([LDAP], [test $build_ldap = yes]) AC_ARG_WITH([sasl], AS_HELP_STRING([--with-sasl=DIR], [use Cyrus SASL headers and libraries under DIR]), [if test "x$withval" != x -a "x$withval" != xno ; then sasl=$withval else sasl=no fi ],sasl=no) build_sasl=no if test x$sasl != xno ; then LIBSAVE="$LIBS" if test x$sasl != xyes -a x$sasl != x/usr ; then CPPFLAGS="$CPPFLAGS -I$sasl/include" LDFLAGS="$LDFLAGS -L$sasl/lib" fi AC_SEARCH_LIBS([sasl_setpass], [sasl2], [build_sasl=yes]) AC_CHECK_FUNCS_ONCE([sasl_user_exists]) LIBS="$LIBSAVE" fi AM_CONDITIONAL([SASL], [test $build_sasl = yes]) AC_ARG_WITH([python], AS_HELP_STRING([--with-python], [build Python modules (default is YES)]), [], [with_python=yes]) AM_CONDITIONAL([WITH_PYTHON], [test $with_python != no]) if test $with_python != no ; then AM_PATH_PYTHON fi AC_ARG_WITH([selinux], AS_HELP_STRING([--with-selinux], [work with SELinux extensions (default is NO)]), [selinux=$withval], [selinux=no]) if test "x$selinux" != xno ; then SELINUX_LIBS=-lselinux AC_DEFINE([WITH_SELINUX], [1], [Define to 1 to use SELinux extensions]) fi AC_SUBST(SELINUX_LIBS) AC_C_CONST AC_TYPE_UID_T AC_TYPE_MODE_T AC_TYPE_OFF_T AC_TYPE_SIZE_T AC_CHECK_FUNCS([__secure_getenv secure_getenv]) # Modify CFLAGS after all tests are run (some of them could fail because # of the -Werror). if test "$GCC" = yes ; then AC_CACHE_CHECK([for available GCC warning flags], [mitr_cv_prog_gcc_warnings], [mitr_cv_prog_gcc_warnings="" for i in -Wall -Wcast-align -Wmissing-noreturn -Wnested-externs dnl -Wpointer-arith -Wstrict-prototypes -Wundef; do oldcflags=$CFLAGS CFLAGS="$CFLAGS $i" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [mitr_cv_prog_gcc_warnings="$mitr_cv_prog_gcc_warnings $i"]) CFLAGS=$oldcflags done]) CFLAGS="$CFLAGS $mitr_cv_prog_gcc_warnings" AC_MSG_CHECKING([whether we should use -Werror]) AC_ARG_ENABLE([Werror], AS_HELP_STRING([--enable-Werror], [use -Werror if compiling with gcc (default is NO)]), [], enable_Werror=no) if test "x$enable_Werror" != xno; then CFLAGS="$CFLAGS -Werror" fi AC_MSG_RESULT([$enable_Werror]) fi GTK_DOC_CHECK dnl Does not even compile AM_CONDITIONAL([KRB5], [false]) AC_CONFIG_FILES([Makefile po/Makefile.in docs/Makefile docs/reference/Makefile libuser.pc]) AC_OUTPUT libuser-0.60~dfsg/m4/0000755000175000017500000000000012226342602014411 5ustar tzafrirtzafrirlibuser-0.60~dfsg/m4/progtest.m40000644000175000017500000000604012226342570016526 0ustar tzafrirtzafrir# progtest.m4 serial 7 (gettext-0.18.2) dnl Copyright (C) 1996-2003, 2005, 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1996. AC_PREREQ([2.50]) # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [ # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL([ac_cv_path_$1], [case "[$]$1" in [[\\/]]* | ?:[[\\/]]*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in ifelse([$5], , $PATH, [$5]); do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$][$1]) else AC_MSG_RESULT([no]) fi AC_SUBST([$1])dnl ]) libuser-0.60~dfsg/m4/iconv.m40000644000175000017500000002162012226342570015776 0ustar tzafrirtzafrir# iconv.m4 serial 18 (gettext-0.18.2) dnl Copyright (C) 2000-2002, 2007-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_LINK_IFELSE will then fail, the second AC_LINK_IFELSE will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK([for iconv], [am_cv_func_iconv], [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #include ]], [[iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);]])], [am_cv_func_iconv=yes]) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #include ]], [[iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);]])], [am_cv_lib_iconv=yes] [am_cv_func_iconv=yes]) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [ dnl This tests against bugs in AIX 5.1, AIX 6.1..7.1, HP-UX 11.11, dnl Solaris 10. am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include int main () { int result = 0; /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 1; iconv_close (cd_utf8_to_88591); } } /* Test against Solaris 10 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); if (cd_ascii_to_88591 != (iconv_t)(-1)) { static const char input[] = "\263"; char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_ascii_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) result |= 2; iconv_close (cd_ascii_to_88591); } } /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ { iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304"; static char buf[2] = { (char)0xDE, (char)0xAD }; const char *inptr = input; size_t inbytesleft = 1; char *outptr = buf; size_t outbytesleft = 1; size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) result |= 4; iconv_close (cd_88591_to_utf8); } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) result |= 8; iconv_close (cd_88591_to_utf8); } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) result |= 16; return result; }]])], [am_cv_func_iconv_works=yes], [am_cv_func_iconv_works=no], [ changequote(,)dnl case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac changequote([,])dnl ]) LIBS="$am_save_LIBS" ]) case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then AC_DEFINE([HAVE_ICONV], [1], [Define if you have the iconv() function and it works.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST([LIBICONV]) AC_SUBST([LTLIBICONV]) ]) dnl Define AM_ICONV using AC_DEFUN_ONCE for Autoconf >= 2.64, in order to dnl avoid warnings like dnl "warning: AC_REQUIRE: `AM_ICONV' was expanded before it was required". dnl This is tricky because of the way 'aclocal' is implemented: dnl - It requires defining an auxiliary macro whose name ends in AC_DEFUN. dnl Otherwise aclocal's initial scan pass would miss the macro definition. dnl - It requires a line break inside the AC_DEFUN_ONCE and AC_DEFUN expansions. dnl Otherwise aclocal would emit many "Use of uninitialized value $1" dnl warnings. m4_define([gl_iconv_AC_DEFUN], m4_version_prereq([2.64], [[AC_DEFUN_ONCE( [$1], [$2])]], [m4_ifdef([gl_00GNULIB], [[AC_DEFUN_ONCE( [$1], [$2])]], [[AC_DEFUN( [$1], [$2])]])])) gl_iconv_AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL([am_cv_proto_iconv], [ AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ]], [[]])], [am_cv_proto_iconv_arg1=""], [am_cv_proto_iconv_arg1="const"]) am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([ $am_cv_proto_iconv]) AC_DEFINE_UNQUOTED([ICONV_CONST], [$am_cv_proto_iconv_arg1], [Define as const if the declaration of iconv() needs const.]) dnl Also substitute ICONV_CONST in the gnulib generated . m4_ifdef([gl_ICONV_H_DEFAULTS], [AC_REQUIRE([gl_ICONV_H_DEFAULTS]) if test -n "$am_cv_proto_iconv_arg1"; then ICONV_CONST="const" fi ]) fi ]) libuser-0.60~dfsg/m4/po.m40000644000175000017500000004500212226342570015276 0ustar tzafrirtzafrir# po.m4 serial 20 (gettext-0.18.2) dnl Copyright (C) 1995-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.60]) dnl Checks for all prerequisites of the po subdirectory. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl AC_REQUIRE([AM_NLS])dnl dnl Release version of the gettext macros. This is used to ensure that dnl the gettext macros and po/Makefile.in.in are in sync. AC_SUBST([GETTEXT_MACRO_VERSION], [0.18]) dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT]) dnl Test whether it is GNU msgfmt >= 0.15. changequote(,)dnl case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac changequote([,])dnl AC_SUBST([MSGFMT_015]) changequote(,)dnl case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac changequote([,])dnl AC_SUBST([GMSGFMT_015]) dnl Search for GNU xgettext 0.12 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Test whether it is GNU xgettext >= 0.15. changequote(,)dnl case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac changequote([,])dnl AC_SUBST([XGETTEXT_015]) dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :) dnl Installation directories. dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we dnl have to define it here, so that it can be used in po/Makefile. test -n "$localedir" || localedir='${datadir}/locale' AC_SUBST([localedir]) dnl Support for AM_XGETTEXT_OPTION. test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= AC_SUBST([XGETTEXT_EXTRA_OPTIONS]) AC_CONFIG_COMMANDS([po-directories], [[ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" gt_tab=`printf '\t'` cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assignment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done]], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Postprocesses a Makefile in a directory containing PO files. AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], [ # When this code is run, in config.status, two variables have already been # set: # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, # - LINGUAS is the value of the environment variable LINGUAS at configure # time. changequote(,)dnl # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Find a way to echo strings without interpreting backslash. if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then gt_echo='echo' else if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then gt_echo='printf %s\n' else echo_func () { cat < "$ac_file.tmp" tab=`printf '\t'` if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` cat >> "$ac_file.tmp" < /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'` cat >> "$ac_file.tmp" <> "$ac_file.tmp" <= $1],, AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build $PACKAGE_NAME]))]) dnl don't check for glib if we build glib if test "x$PACKAGE_NAME" != "xglib"; then dnl don't fail if someone does not have glib PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0,,[:]) fi fi AC_MSG_CHECKING([whether to build gtk-doc documentation]) AC_MSG_RESULT($enable_gtk_doc) dnl enable/disable output formats AC_ARG_ENABLE([gtk-doc-html], AS_HELP_STRING([--enable-gtk-doc-html], [build documentation in html format [[default=yes]]]),, [enable_gtk_doc_html=yes]) AC_ARG_ENABLE([gtk-doc-pdf], AS_HELP_STRING([--enable-gtk-doc-pdf], [build documentation in pdf format [[default=no]]]),, [enable_gtk_doc_pdf=no]) if test -z "$GTKDOC_MKPDF"; then enable_gtk_doc_pdf=no fi if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi AC_SUBST([AM_DEFAULT_VERBOSITY]) AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes]) AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes]) AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [test x$enable_gtk_doc_pdf = xyes]) AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"]) AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"]) ]) libuser-0.60~dfsg/m4/lib-prefix.m40000644000175000017500000002042212226342570016720 0ustar tzafrirtzafrir# lib-prefix.m4 serial 7 (gettext-0.18) dnl Copyright (C) 2001-2005, 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't dnl require excessive bracketing. ifdef([AC_HELP_STRING], [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], [AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed dnl to access previously installed libraries. The basic assumption is that dnl a user will want packages to use other packages he previously installed dnl with the same --prefix option. dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate dnl libraries, but is otherwise very convenient. AC_DEFUN([AC_LIB_PREFIX], [ AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib-prefix], [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib --without-lib-prefix don't search for libraries in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" fi fi ]) if test $use_additional = yes; then dnl Potentially add $additional_includedir to $CPPFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's already present in $CPPFLAGS, dnl 3. if it's /usr/local/include and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= for x in $CPPFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $CPPFLAGS. CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" fi fi fi fi dnl Potentially add $additional_libdir to $LDFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's already present in $LDFLAGS, dnl 3. if it's /usr/local/lib and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then haveit= for x in $LDFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LDFLAGS. LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" fi fi fi fi fi ]) dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, dnl acl_final_exec_prefix, containing the values to which $prefix and dnl $exec_prefix will expand at the end of the configure script. AC_DEFUN([AC_LIB_PREPARE_PREFIX], [ dnl Unfortunately, prefix and exec_prefix get only finally determined dnl at the end of configure. if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" ]) dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the dnl variables prefix and exec_prefix bound to the values they will have dnl at the end of the configure script. AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], [ acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" $1 exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" ]) dnl AC_LIB_PREPARE_MULTILIB creates dnl - a variable acl_libdirstem, containing the basename of the libdir, either dnl "lib" or "lib64" or "lib/64", dnl - a variable acl_libdirstem2, as a secondary possible value for dnl acl_libdirstem, either the same as acl_libdirstem or "lib/sparcv9" or dnl "lib/amd64". AC_DEFUN([AC_LIB_PREPARE_MULTILIB], [ dnl There is no formal standard regarding lib and lib64. dnl On glibc systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. We determine dnl the compiler's default mode by looking at the compiler's library search dnl path. If at least one of its elements ends in /lib64 or points to a dnl directory whose absolute pathname ends in /lib64, we assume a 64-bit ABI. dnl Otherwise we use the default, namely "lib". dnl On Solaris systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib. AC_REQUIRE([AC_CANONICAL_HOST]) acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment dnl . dnl "Portable Makefiles should refer to any library directories using the 64 symbolic link." dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the dnl symlink is missing, so we set acl_libdirstem2 too. AC_CACHE_CHECK([for 64-bit host], [gl_cv_solaris_64bit], [AC_EGREP_CPP([sixtyfour bits], [ #ifdef _LP64 sixtyfour bits #endif ], [gl_cv_solaris_64bit=yes], [gl_cv_solaris_64bit=no]) ]) if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" ]) libuser-0.60~dfsg/m4/ltversion.m40000644000175000017500000000126212153313341016676 0ustar tzafrirtzafrir# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 3337 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.2]) m4_define([LT_PACKAGE_REVISION], [1.3337]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.2' macro_revision='1.3337' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) libuser-0.60~dfsg/m4/lib-ld.m40000644000175000017500000000714312226342570016027 0ustar tzafrirtzafrir# lib-ld.m4 serial 6 dnl Copyright (C) 1996-2003, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Subroutines of libtool.m4, dnl with replacements s/_*LT_PATH/AC_LIB_PROG/ and s/lt_/acl_/ to avoid dnl collision with libtool.m4. dnl From libtool-2.4. Sets the variable with_gnu_ld to yes or no. AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld], [# I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 /dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'` while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL([acl_cv_path_LD], [if test -z "$LD"; then acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$acl_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) libuser-0.60~dfsg/m4/nls.m40000644000175000017500000000231512226342570015454 0ustar tzafrirtzafrir# nls.m4 serial 5 (gettext-0.18) dnl Copyright (C) 1995-2003, 2005-2006, 2008-2013 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.50]) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE([nls], [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT([$USE_NLS]) AC_SUBST([USE_NLS]) ]) libuser-0.60~dfsg/m4/intlmacosx.m40000644000175000017500000000475312226342570017051 0ustar tzafrirtzafrir# intlmacosx.m4 serial 5 (gettext-0.18.2) dnl Copyright (C) 2004-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Checks for special options needed on Mac OS X. dnl Defines INTL_MACOSX_LIBS. AC_DEFUN([gt_INTL_MACOSX], [ dnl Check for API introduced in Mac OS X 10.2. AC_CACHE_CHECK([for CFPreferencesCopyAppValue], [gt_cv_func_CFPreferencesCopyAppValue], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[CFPreferencesCopyAppValue(NULL, NULL)]])], [gt_cv_func_CFPreferencesCopyAppValue=yes], [gt_cv_func_CFPreferencesCopyAppValue=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1], [Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) fi dnl Check for API introduced in Mac OS X 10.3. AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent], [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[CFLocaleCopyCurrent();]])], [gt_cv_func_CFLocaleCopyCurrent=yes], [gt_cv_func_CFLocaleCopyCurrent=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFLocaleCopyCurrent = yes; then AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1], [Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi AC_SUBST([INTL_MACOSX_LIBS]) ]) libuser-0.60~dfsg/m4/libtool.m40000644000175000017500000105743212153313341016330 0ustar tzafrirtzafrir# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ]) # serial 57 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from `configure', and `config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # `config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain="$ac_aux_dir/ltmain.sh" ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the `libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to `config.status' so that its # declaration there will have the same value as in `configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags="_LT_TAGS"dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the `libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into `config.status', and then the shell code to quote escape them in # for loops in `config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # `#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test $lt_write_fail = 0 && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ \`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) _LT_PROG_REPLACE_SHELLFNS mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test "$lt_cv_ld_force_load" = "yes"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" m4_if([$1], [CXX], [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script which will find a shell with a builtin # printf (which we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case "$ECHO" in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [ --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified).], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([${with_sysroot}]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and in which our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links="nottested" if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", [Define to the sub-directory in which libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([], [sys_lib_dlsearch_path_spec], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program which can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program which can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS="$save_LDFLAGS"]) if test "$lt_cv_irix_exported_symbol" = yes; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting ${shlibpath_var} if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC="$lt_save_CC" ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared # libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ func_to_tool_file "$lt_outputfile"~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd2*) # C++ shared libraries are fairly broken _LT_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(GCC, $1)="$GXX" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test "$pre_test_object_deps_done" = no; then case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)="${prev}${p}" else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)="$p" else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)="$p" else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$G77" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" CFLAGS="$lt_save_CFLAGS" fi # test "$_lt_disable_F77" != yes AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test "X$FC" = "Xno"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_FC" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test "$_lt_disable_FC" != yes AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [AC_MSG_CHECKING([whether the shell understands some XSI constructs]) # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes AC_MSG_RESULT([$xsi_shell]) _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) AC_MSG_CHECKING([whether the shell understands "+="]) lt_shell_append=no ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes AC_MSG_RESULT([$lt_shell_append]) _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) # ------------------------------------------------------ # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. m4_defun([_LT_PROG_FUNCTION_REPLACE], [dnl { sed -e '/^$1 ()$/,/^} # $1 /c\ $1 ()\ {\ m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: ]) # _LT_PROG_REPLACE_SHELLFNS # ------------------------- # Replace existing portable implementations of several shell functions with # equivalent extended shell implementations where those features are available.. m4_defun([_LT_PROG_REPLACE_SHELLFNS], [if test x"$xsi_shell" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"}]) _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl func_split_long_opt_name=${1%%=*} func_split_long_opt_arg=${1#*=}]) _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) fi if test x"$lt_shell_append" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl func_quote_for_eval "${2}" dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) fi ]) # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine which file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS libuser-0.60~dfsg/m4/ltoptions.m40000644000175000017500000003007312153313341016706 0ustar tzafrirtzafrir# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, # Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 7 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option `$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl `shared' nor `disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the `shared' and # `disable-shared' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the `static' and # `disable-static' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the `fast-install' # and `disable-fast-install' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the `pic-only' and `no-pic' # LT_INIT options. # MODE is either `yes' or `no'. If omitted, it defaults to `both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac], [pic_mode=default]) test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) libuser-0.60~dfsg/m4/lib-link.m40000644000175000017500000010044312226342570016362 0ustar tzafrirtzafrir# lib-link.m4 serial 26 (gettext-0.18.2) dnl Copyright (C) 2001-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_PREREQ([2.54]) dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and dnl augments the CPPFLAGS variable. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[m4_translit([$1],[./+-], [____])]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ac_cv_lib[]Name[]_libs="$LIB[]NAME" ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" ac_cv_lib[]Name[]_cppflags="$INC[]NAME" ac_cv_lib[]Name[]_prefix="$LIB[]NAME[]_PREFIX" ]) LIB[]NAME="$ac_cv_lib[]Name[]_libs" LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" INC[]NAME="$ac_cv_lib[]Name[]_cppflags" LIB[]NAME[]_PREFIX="$ac_cv_lib[]Name[]_prefix" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the dnl results of this search when this library appears as a dependency. HAVE_LIB[]NAME=yes popdef([NAME]) popdef([Name]) ]) dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message]) dnl searches for libname and the libraries corresponding to explicit and dnl implicit dependencies, together with the specified include files and dnl the ability to compile and link the specified testcode. The missing-message dnl defaults to 'no' and may contain additional hints for the user. dnl If found, it sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} dnl and LTLIB${NAME} variables and augments the CPPFLAGS variable, and dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[m4_translit([$1],[./+-], [____])]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME dnl accordingly. AC_LIB_LINKFLAGS_BODY([$1], [$2]) dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, dnl because if the user has installed lib[]Name and not disabled its use dnl via --without-lib[]Name-prefix, he wants to use it. ac_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ ac_save_LIBS="$LIBS" dnl If $LIB[]NAME contains some -l options, add it to the end of LIBS, dnl because these -l options might require -L options that are present in dnl LIBS. -l options benefit only from the -L options listed before it. dnl Otherwise, add it to the front of LIBS, because it may be a static dnl library that depends on another static library that is present in LIBS. dnl Static libraries benefit only from the static libraries listed after dnl it. case " $LIB[]NAME" in *" -l"*) LIBS="$LIBS $LIB[]NAME" ;; *) LIBS="$LIB[]NAME $LIBS" ;; esac AC_LINK_IFELSE( [AC_LANG_PROGRAM([[$3]], [[$4]])], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name='m4_if([$5], [], [no], [[$5]])']) LIBS="$ac_save_LIBS" ]) if test "$ac_cv_lib[]Name" = yes; then HAVE_LIB[]NAME=yes AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.]) AC_MSG_CHECKING([how to link with lib[]$1]) AC_MSG_RESULT([$LIB[]NAME]) else HAVE_LIB[]NAME=no dnl If $LIB[]NAME didn't lead to a usable library, we don't need dnl $INC[]NAME either. CPPFLAGS="$ac_save_CPPFLAGS" LIB[]NAME= LTLIB[]NAME= LIB[]NAME[]_PREFIX= fi AC_SUBST([HAVE_LIB]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) popdef([NAME]) popdef([Name]) ]) dnl Determine the platform dependent parameters needed to use rpath: dnl acl_libext, dnl acl_shlibext, dnl acl_libname_spec, dnl acl_library_names_spec, dnl acl_hardcode_libdir_flag_spec, dnl acl_hardcode_libdir_separator, dnl acl_hardcode_direct, dnl acl_hardcode_minus_L. AC_DEFUN([AC_LIB_RPATH], [ dnl Tell automake >= 1.10 to complain if config.rpath is missing. m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir AC_CACHE_CHECK([for shared library run path origin], [acl_cv_rpath], [ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done ]) wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" dnl Determine whether the user wants rpath handling at all. AC_ARG_ENABLE([rpath], [ --disable-rpath do not hardcode runtime library paths], :, enable_rpath=yes) ]) dnl AC_LIB_FROMPACKAGE(name, package) dnl declares that libname comes from the given package. The configure file dnl will then not have a --with-libname-prefix option but a dnl --with-package-prefix option. Several libraries can come from the same dnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar dnl macro call that searches for libname. AC_DEFUN([AC_LIB_FROMPACKAGE], [ pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) define([acl_frompackage_]NAME, [$2]) popdef([NAME]) pushdef([PACK],[$2]) pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) define([acl_libsinpackage_]PACKUP, m4_ifdef([acl_libsinpackage_]PACKUP, [m4_defn([acl_libsinpackage_]PACKUP)[, ]],)[lib$1]) popdef([PACKUP]) popdef([PACK]) ]) dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS_BODY], [ AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])]) pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])]) dnl Autoconf >= 2.61 supports dots in --with options. pushdef([P_A_C_K],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[m4_translit(PACK,[.],[_])],PACK)]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_ARG_WITH(P_A_C_K[-prefix], [[ --with-]]P_A_C_K[[-prefix[=DIR] search for ]PACKLIBS[ in DIR/include and DIR/lib --without-]]P_A_C_K[[-prefix don't search for ]PACKLIBS[ in includedir and libdir]], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi ]) dnl Search the library and its dependencies in $additional_libdir and dnl $LDFLAGS. Using breadth-first-seach. LIB[]NAME= LTLIB[]NAME= INC[]NAME= LIB[]NAME[]_PREFIX= dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been dnl computed. So it has to be reset here. HAVE_LIB[]NAME= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='$1 $2' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" dnl See if it was already located by an earlier AC_LIB_LINKFLAGS dnl or AC_LIB_HAVE_LINKFLAGS call. uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" else dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined dnl that this library doesn't exist. So just drop it. : fi else dnl Search the library lib$name in $additional_libdir and $LDFLAGS dnl and the already constructed $LIBNAME/$LTLIBNAME. found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" dnl The same code as in the loop below: dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then dnl Found the library. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then dnl Linking with a shared library. We attempt to hardcode its dnl directory into the executable's runpath, unless it's the dnl standard /usr/lib. if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then dnl No hardcoding is needed. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl Use an explicit option to hardcode DIR into the resulting dnl binary. dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi dnl The hardcoding into $LIBNAME is system dependent. if test "$acl_hardcode_direct" = yes; then dnl Using DIR/libNAME.so during linking hardcodes DIR into the dnl resulting binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode DIR into the resulting dnl binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else dnl Rely on "-L$found_dir". dnl But don't add it if it's already contained in the LDFLAGS dnl or the already constructed $LIBNAME haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH dnl here, because this doesn't fit in flags passed to the dnl compiler. So give up. No hardcoding. This affects only dnl very old systems. dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then dnl Linking with a static library. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" else dnl We shouldn't come here, but anyway it's good to have a dnl fallback. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" fi fi dnl Assume the include files are nearby. additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then dnl Potentially add $additional_includedir to $INCNAME. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's /usr/local/include and we are using GCC on Linux, dnl 3. if it's already present in $CPPFLAGS or the already dnl constructed $INCNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INC[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $INCNAME. INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" fi fi fi fi fi dnl Look for dependencies. if test -n "$found_la"; then dnl Read the .la file. It defines the variables dnl dlname, library_names, old_library, dependency_libs, current, dnl age, revision, installed, dlopen, dlpreopen, libdir. save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" dnl We use only dependency_libs. for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's /usr/local/lib and we are using GCC on Linux, dnl 3. if it's already present in $LDFLAGS or the already dnl constructed $LIBNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LIBNAME. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LTLIBNAME. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) dnl Handle this in the next round. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) dnl Handle this in the next round. Throw away the .la's dnl directory; it is already contained in a preceding -L dnl option. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) dnl Most likely an immediate library name. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" ;; esac done fi else dnl Didn't find the library; assume it is in the system directories dnl known to the linker and runtime loader. (All the system dnl directories known to the linker should also be known to the dnl runtime loader, otherwise the system is severely misconfigured.) LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user must dnl pass all path elements in one option. We can arrange that for a dnl single library, but not when more than one $LIBNAMEs are used. alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl. acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" else dnl The -rpath options are cumulative. for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then dnl When using libtool, the option that works for both libraries and dnl executables is -R. The -R options are cumulative. for found_dir in $ltrpathdirs; do LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" done fi popdef([P_A_C_K]) popdef([PACKLIBS]) popdef([PACKUP]) popdef([PACK]) popdef([NAME]) ]) dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, dnl unless already present in VAR. dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes dnl contains two or three consecutive elements that belong together. AC_DEFUN([AC_LIB_APPENDTOVAR], [ for element in [$2]; do haveit= for x in $[$1]; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then [$1]="${[$1]}${[$1]:+ }$element" fi done ]) dnl For those cases where a variable contains several -L and -l options dnl referring to unknown libraries and directories, this macro determines the dnl necessary additional linker options for the runtime path. dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) dnl sets LDADDVAR to linker options needed together with LIBSVALUE. dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, dnl otherwise linking without libtool is assumed. AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], [ AC_REQUIRE([AC_LIB_RPATH]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) $1= if test "$enable_rpath" != no; then if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode directories into the resulting dnl binary. rpathdirs= next= for opt in $2; do if test -n "$next"; then dir="$next" dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= else case $opt in -L) next=yes ;; -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= ;; *) next= ;; esac fi done if test "X$rpathdirs" != "X"; then if test -n ""$3""; then dnl libtool is used for linking. Use -R options. for dir in $rpathdirs; do $1="${$1}${$1:+ }-R$dir" done else dnl The linker is used for linking directly. if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user dnl must pass all path elements in one option. alldirs= for dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="$flag" else dnl The -rpath options are cumulative. for dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="${$1}${$1:+ }$flag" done fi fi fi fi fi AC_SUBST([$1]) ]) libuser-0.60~dfsg/m4/lt~obsolete.m40000644000175000017500000001375612153313341017236 0ustar tzafrirtzafrir# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) libuser-0.60~dfsg/m4/gettext.m40000644000175000017500000003561512226342570016355 0ustar tzafrirtzafrir# gettext.m4 serial 66 (gettext-0.18.2) dnl Copyright (C) 1995-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2006, 2008-2010. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value '$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse(ifelse([$1], [], [old])[]ifelse([$1], [no-libtool], [old]), [old], [AC_DIAGNOSE([obsolete], [Use of AM_GNU_GETTEXT without [external] argument is deprecated.])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define([gt_included_intl], ifelse([$1], [external], ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]), [yes])) define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], [])) gt_NEEDS_INIT AM_GNU_GETTEXT_NEED([$2]) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) dnl Sometimes, on Mac OS X, libintl requires linking with CoreFoundation. gt_INTL_MACOSX dnl Set USE_NLS. AC_REQUIRE([AM_NLS]) ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl Add a version number to the cache macros. case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH([included-gettext], [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT([$nls_cv_force_use_gnu_gettext]) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc], [AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; ]], [[ bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings ]])], [eval "$gt_func_gnugettext_libc=yes"], [eval "$gt_func_gnugettext_libc=no"])]) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], [$gt_func_gnugettext_libintl], [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); ]], [[ bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ]])], [eval "$gt_func_gnugettext_libintl=yes"], [eval "$gt_func_gnugettext_libintl=no"]) dnl Now see whether libintl exists and depends on libiconv. if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); ]], [[ bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ]])], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi CATOBJEXT= if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Some extra flags are needed during linking. LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE([ENABLE_NLS], [1], [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi AC_MSG_CHECKING([whether to use NLS]) AC_MSG_RESULT([$USE_NLS]) if test "$USE_NLS" = "yes"; then AC_MSG_CHECKING([where the gettext function comes from]) if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi AC_MSG_RESULT([$gt_source]) fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE([HAVE_GETTEXT], [1], [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE([HAVE_DCGETTEXT], [1], [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST([BUILD_INCLUDED_LIBINTL]) AC_SUBST([USE_INCLUDED_LIBINTL]) AC_SUBST([CATOBJEXT]) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST([DATADIRNAME]) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST([INSTOBJEXT]) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST([GENCAT]) dnl For backward compatibility. Some Makefiles may be using this. INTLOBJS= if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi AC_SUBST([INTLOBJS]) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST([INTL_LIBTOOL_SUFFIX_PREFIX]) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST([INTLLIBS]) dnl Make all documented variables known to autoconf. AC_SUBST([LIBINTL]) AC_SUBST([LTLIBINTL]) AC_SUBST([POSUB]) ]) dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized. m4_define([gt_NEEDS_INIT], [ m4_divert_text([DEFAULTS], [gt_needs=]) m4_define([gt_NEEDS_INIT], []) ]) dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL]) AC_DEFUN([AM_GNU_GETTEXT_NEED], [ m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"]) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) libuser-0.60~dfsg/Makefile.am0000644000175000017500000002104312226342567016137 0ustar tzafrirtzafrir## Process this file with automake to produce Makefile.in ## Settings pkgconfigdir = $(libdir)/pkgconfig ACLOCAL_AMFLAGS = -I m4 AM_DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --with-ldap HGTAG = 'libuser-$(VERSION)' AM_CPPFLAGS = $(GOBJECT_CFLAGS) LOCALEDIR_CPPFLAGS = -DLOCALEDIR='"$(localedir)"' PYTHON_CPPFLAGS = -I/usr/include/python$(PYTHON_VERSION) # Ignore possibly lost, there are too many due to Python. --gen-suppressions # makes the run interactive, which is not good for regression testing - we # are not there yet. VG_EXECUTION = libtool --mode=execute \ valgrind --quiet --suppressions=$(srcdir)/tests/valgrind.supp \ --leak-check=full --num-callers=20 --log-fd=3 \ --gen-suppressions=yes --show-possibly-lost=no VG_ENVIRONMENT = G_SLICE=always-malloc \ G_DEBUG=gc-friendly,resident-modules ## Targets SUBDIRS = po docs TESTS = tests/config_test.sh tests/fs_test tests/files_test tests/pwhash_test \ tests/utils_test if LDAP TESTS += tests/default_pw_test tests/ldap_test endif EXTRA_DIST = \ $(EXTRA_MANS) \ python/modules.txt \ samples/genusers \ tests/config.conf.in tests/config_default_useradd \ tests/config_import.conf.in tests/config_import2.conf.in \ tests/config_login.defs tests/config_login2.defs \ tests/config_override.conf.in tests/config_test.py \ tests/config_test.sh \ tests/default_pw.conf.in tests/default_pw_test tests/default_pw_test.py \ tests/files.conf.in tests/files_test tests/files_test.py \ tests/fs.conf.in tests/fs_test tests/fs_test.py \ tests/ldap.conf.in tests/ldaprc tests/ldap_skel.ldif tests/ldap_test \ tests/ldap_test.py \ tests/pwhash.conf.in tests/pwhash.py tests/pwhash_test \ tests/slapd.conf.in \ tests/utils.conf.in tests/utils_group tests/utils_gshadow \ tests/utils_passwd tests/utils_shadow tests/utils_test \ tests/valgrind.supp bin_PROGRAMS = apps/lchfn apps/lchsh sbin_PROGRAMS = apps/lchage apps/lgroupadd apps/lgroupdel apps/lgroupmod \ apps/lid apps/lnewusers apps/lpasswd apps/luseradd apps/luserdel \ apps/lusermod noinst_PROGRAMS = samples/enum samples/field samples/homedir samples/lookup \ samples/prompt samples/testuser \ tests/config_test check_PROGRAMS = tests/alloc_port tests/wait_for_slapd_exit \ tests/wait_for_slapd_start noinst_LTLIBRARIES = apps/libapputil.la lib_LTLIBRARIES = lib/libuser.la pkglib_LTLIBRARIES = modules/libuser_files.la modules/libuser_shadow.la if KRB5 pkglib_LTLIBRARIES += modules/libuser_krb5.la endif if LDAP pkglib_LTLIBRARIES += modules/libuser_ldap.la endif if SASL pkglib_LTLIBRARIES += modules/libuser_sasldb.la endif if WITH_PYTHON pyexec_LTLIBRARIES = python/libusermodule.la endif dist_man_MANS = apps/lgroupadd.1 apps/lgroupdel.1 apps/lgroupmod.1 \ apps/lchage.1 apps/lchfn.1 apps/lchsh.1 apps/lid.1 apps/lnewusers.1 \ apps/lpasswd.1 apps/luseradd.1 apps/luserdel.1 apps/lusermod.1 pkgconfig_DATA = $(PACKAGE).pc dist_sysconf_DATA = libuser.conf pkginclude_HEADERS = lib/config.h lib/entity.h lib/error.h lib/fs.h \ lib/prompt.h lib/user.h lib/user_private.h dist_noinst_SCRIPTS = python/ldap-script python/test-script noinst_HEADERS = python/admin.c python/ent.c python/misc.c ## Rules force-tag: cd $(top_srcdir); hg tag -f $(HGTAG) tag: cd $(top_srcdir); hg tag $(HGTAG) archive: rm -fr /tmp/$(PACKAGE)-export-tmp hg clone -r $(HGTAG) $(abs_top_srcdir) /tmp/$(PACKAGE)-export-tmp cd /tmp/$(PACKAGE)-export-tmp; ./autogen.sh ; \ ./configure --sysconfdir=/etc --with-ldap --enable-gtk-doc \ --without-sasl; make -C docs/reference; make dist mv /tmp/$(PACKAGE)-export-tmp/$(PACKAGE)-$(VERSION).tar.xz . rm -fr /tmp/$(PACKAGE)-export-tmp @echo Package is in \"$(PACKAGE)-$(VERSION).tar.xz\". valgrind: VALGRIND='$(VG_EXECUTION)' \ $(MAKE) check TESTS_ENVIRONMENT='$(VG_ENVIRONMENT)' 3>&2 ## Dependency data apps_libapputil_la_CPPFLAGS = $(AM_CPPFLAGS) apps_libapputil_la_SOURCES = apps/apputil.c apps/apputil.h apps_libapputil_la_LDFLAGS = $(GOBJECT_LIBS) -lpam -lpam_misc $(SELINUX_LIBS) apps_lchage_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lchage_LDADD = lib/libuser.la $(LTLIBINTL) apps_lchage_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lchfn_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lchfn_LDADD = apps/libapputil.la lib/libuser.la $(LTLIBINTL) apps_lchfn_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lchsh_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lchsh_LDADD = apps/libapputil.la lib/libuser.la $(LTLIBINTL) apps_lchsh_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lgroupadd_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lgroupadd_LDADD = lib/libuser.la $(LTLIBINTL) apps_lgroupadd_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lgroupdel_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lgroupdel_LDADD = lib/libuser.la $(LTLIBINTL) apps_lgroupdel_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lgroupmod_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lgroupmod_LDADD = lib/libuser.la $(LTLIBINTL) apps_lgroupmod_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lid_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lid_LDADD = lib/libuser.la $(LTLIBINTL) apps_lid_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lnewusers_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lnewusers_LDADD = lib/libuser.la $(LTLIBINTL) apps_lnewusers_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lpasswd_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lpasswd_LDADD = apps/libapputil.la lib/libuser.la $(LTLIBINTL) apps_lpasswd_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_luseradd_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_luseradd_LDADD = lib/libuser.la $(LTLIBINTL) apps_luseradd_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_luserdel_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_luserdel_LDADD = lib/libuser.la $(LTLIBINTL) apps_luserdel_LDFLAGS = $(GMODULE_LIBS) -lpopt apps_lusermod_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) apps_lusermod_LDADD = lib/libuser.la $(LTLIBINTL) apps_lusermod_LDFLAGS = $(GMODULE_LIBS) -lpopt lib_libuser_la_SOURCES = lib/common.c lib/config.c lib/entity.c lib/error.c \ lib/fs.c lib/getdate.y lib/internal.h lib/misc.c lib/modules.c \ lib/prompt.c lib/scache.c lib/user.c lib/util.c # -Ilib so that "../config.h" is the result of configure lib_libuser_la_CPPFLAGS = $(GMODULE_CFLAGS) -Ilib $(LOCALEDIR_CPPFLAGS) \ -DMODULEDIR='"$(pkglibdir)"' -DNSCD='"$(NSCD)"' \ -DSYSCONFDIR='"$(sysconfdir)"' lib_libuser_la_LDFLAGS = $(GMODULE_LIBS) $(CRYPT_LIBS) $(SELINUX_LIBS) \ -version-info 6:0:5 lib_libuser_la_LIBADD = $(LTLIBINTL) modules_libuser_files_la_SOURCES = modules/files.c modules_libuser_files_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) modules_libuser_files_la_LIBADD = lib/libuser.la modules_libuser_shadow_la_SOURCES = modules/files.c modules_libuser_shadow_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) modules_libuser_shadow_la_LIBADD = lib/libuser.la modules_libuser_krb5_la_SOURCES = modules/krb5.c modules_libuser_krb5_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) modules_libuser_krb5_la_LIBADD = lib/libuser.la modules_libuser_ldap_la_SOURCES = modules/ldap.c modules_libuser_ldap_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) -lldap modules_libuser_ldap_la_LIBADD = lib/libuser.la modules_libuser_sasldb_la_SOURCES = modules/sasldb.c modules_libuser_sasldb_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) \ -lsasl2 modules_libuser_sasldb_la_LIBADD = lib/libuser.la python_libusermodule_la_SOURCES = python/libusermodule.c python/common.h \ python/debug.h python_libusermodule_la_CPPFLAGS = $(AM_CPPFLAGS) $(PYTHON_CPPFLAGS) python_libusermodule_la_LDFLAGS = -module -avoid-version $(GOBJECT_LIBS) python_libusermodule_la_LIBADD = lib/libuser.la samples_enum_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_enum_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_enum_LDFLAGS = -no-install samples_field_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_field_LDFLAGS = -no-install samples_homedir_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_homedir_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_homedir_LDFLAGS = -no-install samples_lookup_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_lookup_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_lookup_LDFLAGS = -no-install samples_prompt_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_prompt_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_prompt_LDFLAGS = -no-install samples_testuser_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS) samples_testuser_LDADD = lib/libuser.la $(GMODULE_LIBS) samples_testuser_LDFLAGS = -no-install tests_alloc_port_LDFLAGS = -no-install tests_config_test_LDADD = lib/libuser.la $(GMODULE_LIBS) tests_config_test_LDFLAGS = -no-install tests_wait_for_slapd_exit_LDFLAGS = -no-install tests_wait_for_slapd_start_LDFLAGS = -no-install libuser-0.60~dfsg/apps/0000755000175000017500000000000012226342602015034 5ustar tzafrirtzafrirlibuser-0.60~dfsg/apps/lgroupmod.10000644000175000017500000000530712226342567017145 0ustar tzafrirtzafrir.\" A man page for lgroupmod .\" Copyright (C) 2005 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH lgroupmod 1 "Jan 11 2005" libuser .SH NAME lgroupmod \- Modify an user group .SH SYNOPSIS lgroupmod [\fIOPTION\fR]... \fIgroup\fR .SH DESCRIPTION Modifies the user group with name \fIgroup\fR. .SH OPTIONS .TP \fB\-A\fR, \fB\-\-admin-add\fR=\fIlist\fR Add users in comma-separated \fIlist\fR among \fIgroup\fR's administrators. .TP \fB\-a\fR, \fB\-\-admin-remove\fR=\fIlist\fR Remove users in comma-separated \fIlist\fR from \fIgroup\fR's administrators. Removing users that are not currently among \fIgroup\fR's administrators silently succeeds. .TP \fB\-g\fR, \fB\-\-gid\fR=\fIgid\fR Change \fIgroup\fR's group ID to \fIgid\fR. .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .TP \fB\-L\fR, \fB\-\-lock\fR Lock \fIgroup\fR. This prevents users from using the group password with .BR newgrp (1) to become a member of \fIgroup\fR. .TP \fB\-M\fR, \fB\-\-member-add\fR=\fIlist\fR Add users in comma-separated \fIlist\fR among \fIgroup\fR's members. .TP \fB\-m\fR, \fB\-\-member-remove\fR=\fIlist\fR Remove users in comma-separated \fIlist\fR from \fIgroup\fR's members. Removing users that are not currently among \fIgroup\fR's members silently succeeds. .TP \fB\-n\fR, \fB\-\-name\fR=\fIname\fR Rename \fIgroup\fR to \fIname\fR. .TP \fB\-P\fR, \fB\-\-plainpassword\fR=\fIpassword\fR Set \fIgroup\fR's password to \fIpassword\fR. Note that the password can be viewed while running .BR lgroupmod using tools such as .BR ps (1)\fR. .TP \fB\-p\fR, \fB\-\-password\fR=\fIencrypted\fR Set \fIgroup\fR's password to the password represented by the hash \fIencrypted\fR. Note that the hash can be viewed while running .BR lgroupmod using tools such as .BR ps (1)\fR. .TP \fB\-U\fR, \fB\-\-unlock\fR Unlock \fIgroup\fR. .SH EXIT STATUS The exit status is 0 on success, nonzero on error. libuser-0.60~dfsg/apps/lpasswd.10000644000175000017500000000452212226342567016610 0ustar tzafrirtzafrir.\" A man page for lpasswd .\" Copyright (C) 2005 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH lpasswd 1 "Jan 12 2005" libuser .SH NAME lpasswd \- Change group or user password .SH SYNOPSIS lpasswd [\fIOPTION\fR]... [\fIname\fR] .SH DESCRIPTION Changes password of user or group \fIname\fR. If the \fIname\fR argument is not provided, username of the invoking user is used; the \fIname\fR argument is ignored if .B lpasswd is run set-uid to a different user. Entering an empty password (by pressing Enter) aborts the password setting operation. .SH OPTIONS .TP \fB\-F\fR, \fB\-\-plainpassword-fd\fR=\fIfd\fR Read password from file descriptor \fIfd\fR, terminated by end of file, \fB'\\r'\fR or \fB'\\n'\fR. .TP \fB\-f\fR, \fB\-\-password-fd\fR=\fIfd\fR Read password hash from file descriptor \fIfd\fR, terminated by end of file, \fB'\\r'\fR or \fB'\\n'\fR. .TP \fB\-g\fR, \fB\-\-group\fR Change password of group \fIname\fR. By default the password of user \fIname\fR is changed. .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .TP \fB\-P\fR, \fB\-\-plainpassword\fR=\fIpassword\fR Set the password to \fIpassword\fR. Note that the password can be viewed while running .BR lpasswd using tools such as .BR ps (1)\fR. .TP \fB\-p\fR, \fB\-\-password\fR=\fIencrypted\fR Set the password to the password represented by the hash \fIencrypted\fR. Note that the hash can be viewed while running .BR lpasswd using tools such as .BR ps (1)\fR. .SH EXIT STATUS The exit status is 0 on success, nonzero on error. libuser-0.60~dfsg/apps/lusermod.c0000644000175000017500000002610612226342567017051 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004, 2009 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include "../lib/user_private.h" #include "apputil.h" int main(int argc, const char **argv) { const char *userPassword = NULL, *cryptedUserPassword = NULL, *uid = NULL, *user, *gecos = NULL, *homeDirectory = NULL, *loginShell = NULL, *gid_number_str = NULL, *uid_number_str = NULL, *commonName = NULL, *givenName = NULL, *surname = NULL, *roomNumber = NULL, *telephoneNumber = NULL, *homePhone = NULL; char *old_uid, *oldHomeDirectory; uid_t uidNumber = LU_VALUE_INVALID_ID; gid_t gidNumber = LU_VALUE_INVALID_ID; struct lu_context *ctx; struct lu_ent *ent; struct lu_error *error = NULL; GPtrArray *groups = NULL; GValue *value; int change, move_home = FALSE, lock = FALSE, unlock = FALSE; int interactive = FALSE; int c; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"gecos", 'c', POPT_ARG_STRING, &gecos, 0, N_("GECOS information"), N_("STRING")}, {"directory", 'd', POPT_ARG_STRING, &homeDirectory, 0, N_("home directory"), N_("STRING")}, {"movedirectory", 'm', POPT_ARG_NONE, &move_home, 0, N_("move home directory contents"), NULL}, {"shell", 's', POPT_ARG_STRING, &loginShell, 0, N_("set shell for user"), N_("STRING")}, {"uid", 'u', POPT_ARG_STRING, &uid_number_str, 0, N_("set UID for user"), N_("NUM")}, {"gid", 'g', POPT_ARG_STRING, &gid_number_str, 0, N_("set primary GID for user"), N_("NUM")}, {"login", 'l', POPT_ARG_STRING, &uid, 0, N_("change login name for user"), N_("STRING")}, {"plainpassword", 'P', POPT_ARG_STRING, &userPassword, 0, N_("plaintext password for the user"), N_("STRING")}, {"password", 'p', POPT_ARG_STRING, &cryptedUserPassword, 0, N_("pre-hashed password for the user"), N_("STRING")}, {"lock", 'L', POPT_ARG_NONE, &lock, 0, N_("lock account"), NULL}, {"unlock", 'U', POPT_ARG_NONE, &unlock, 0, N_("unlock account"), NULL}, {"commonname", 0, POPT_ARG_STRING, &commonName, 0, N_("set common name for user"), N_("STRING")}, {"givenname", 0, POPT_ARG_STRING, &givenName, 0, N_("set given name for user"), N_("STRING")}, {"surname", 0, POPT_ARG_STRING, &surname, 0, N_("set surname for user"), N_("STRING")}, {"roomnumber", 0, POPT_ARG_STRING, &roomNumber, 0, N_("set room number for user"), N_("STRING")}, {"telephonenumber", 0, POPT_ARG_STRING, &telephoneNumber, 0, N_("set telephone number for user"), N_("STRING")}, {"homephone", 0, POPT_ARG_STRING, &homePhone, 0, N_("set home telephone number for user"), N_("STRING")}, POPT_AUTOHELP POPT_TABLEEND }; /* Set up i18n. */ bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); /* Start up the library. */ popt = poptGetContext("lusermod", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] user")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } /* We need to have been passed a user name on the command-line. We * could just delete some randomly-selected victim^H^H^H^H^H^Huser, * but that would probably upset most system administrators. */ user = poptGetArg(popt); if (user == NULL) { fprintf(stderr, _("No user name specified.\n")); poptPrintUsage(popt, stderr, 0); return 1; } if (gid_number_str != NULL) { intmax_t val; char *p; errno = 0; val = strtoimax(gid_number_str, &p, 10); if (errno != 0 || *p != 0 || p == gid_number_str || (gid_t)val != val || (gid_t)val == LU_VALUE_INVALID_ID) { fprintf(stderr, _("Invalid group ID %s\n"), gid_number_str); poptPrintUsage(popt, stderr, 0); return 1; } gidNumber = val; } if (uid_number_str != NULL) { intmax_t val; char *p; errno = 0; val = strtoimax(uid_number_str, &p, 10); if (errno != 0 || *p != 0 || p == uid_number_str || (uid_t)val != val || (uid_t)val == LU_VALUE_INVALID_ID) { fprintf(stderr, _("Invalid user ID %s\n"), uid_number_str); poptPrintUsage(popt, stderr, 0); return 1; } uidNumber = val; } poptFreeContext(popt); /* Start up the library. */ ctx = lu_start(NULL, 0, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } /* Sanity-check arguments. */ if (lock && unlock) { fprintf(stderr, _("Both -L and -U specified.\n")); return 2; } /* Look up the user's record. */ ent = lu_ent_new(); if (lu_user_lookup_name(ctx, user, ent, &error) == FALSE) { fprintf(stderr, _("User %s does not exist.\n"), user); return 3; } /* If the user's password needs to be changed, try to change it. */ if (userPassword != NULL) { if (lu_user_setpass(ctx, ent, userPassword, FALSE, &error) == FALSE) { fprintf(stderr, _("Failed to set password for user %s: %s.\n"), user, lu_strerror(error)); return 5; } } /* If we need to change a user's crypted password, try to change it, * though it might fail if an underlying mechanism doesn't support * using them. */ if (cryptedUserPassword != NULL) { if (lu_user_setpass(ctx, ent, cryptedUserPassword, TRUE, &error) == FALSE) { fprintf(stderr, _("Failed to set password for user %s: %s.\n"), user, lu_strerror(error)); return 6; } } /* If we need to lock/unlock the user's account, do that. */ if (lock) { if (lu_user_lock(ctx, ent, &error) == FALSE) { fprintf(stderr, _("User %s could not be locked: %s.\n"), user, lu_strerror(error)); return 7; } } if (unlock) { if (lu_user_unlock(ctx, ent, &error) == FALSE) { fprintf(stderr, _("User %s could not be unlocked: %s.\n"), user, lu_strerror(error)); return 8; } } /* Determine if we actually need to change anything. */ change = uid || gecos || homeDirectory || loginShell || commonName || givenName || surname || roomNumber || telephoneNumber || homePhone || uidNumber != LU_VALUE_INVALID_ID || gidNumber != LU_VALUE_INVALID_ID; /* Change the user's UID and GID. */ if (uidNumber != LU_VALUE_INVALID_ID) lu_ent_set_id(ent, LU_UIDNUMBER, uidNumber); if (gidNumber != LU_VALUE_INVALID_ID) { struct lu_ent *group_ent; group_ent = lu_ent_new(); if (lu_group_lookup_id(ctx, gidNumber, group_ent, &error) == FALSE) { fprintf(stderr, _("Warning: Group with ID %jd does not " "exist.\n"), (intmax_t)gidNumber); if (error != NULL) lu_error_free(&error); } lu_ent_free(group_ent); lu_ent_set_id(ent, LU_GIDNUMBER, gidNumber); } /* Change the user's shell and GECOS information. */ #define PARAM(ATTR, VAR) \ if ((VAR) != NULL) \ lu_ent_set_string(ent, (ATTR), (VAR)); PARAM(LU_LOGINSHELL, loginShell); PARAM(LU_GECOS, gecos); PARAM(LU_COMMONNAME, commonName); PARAM(LU_GIVENNAME, givenName); PARAM(LU_SN, surname); PARAM(LU_ROOMNUMBER, roomNumber); PARAM(LU_TELEPHONENUMBER, telephoneNumber); PARAM(LU_HOMEPHONE, homePhone); #undef PARAM /* If the user changed names or home directories, we need to keep track * of the old values. */ old_uid = NULL; if (uid != NULL) { old_uid = lu_ent_get_first_value_strdup(ent, LU_USERNAME); lu_ent_set_string(ent, LU_USERNAME, uid); groups = lu_groups_enumerate_by_user_full(ctx, old_uid, &error); if (error) lu_error_free(&error); } oldHomeDirectory = NULL; if (homeDirectory != NULL) { oldHomeDirectory = lu_ent_get_first_value_strdup(ent, LU_HOMEDIRECTORY); lu_ent_set_string(ent, LU_HOMEDIRECTORY, homeDirectory); } /* If we need to change anything about the user, do it. */ if (change && (lu_user_modify(ctx, ent, &error) == FALSE)) { fprintf(stderr, _("User %s could not be modified: %s.\n"), user, lu_strerror(error)); return 9; } lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); /* If the user's name changed, we need to update supplemental * group membership information. */ if (change && (old_uid != NULL)) { size_t i; for (i = 0; groups != NULL && i < groups->len; i++) { struct lu_ent *group; const char *username; GValueArray *members, *admins; size_t j; group = g_ptr_array_index(groups, i); /* Get a list of the group's members. */ members = lu_ent_get(group, LU_MEMBERNAME); admins = lu_ent_get(group, LU_ADMINISTRATORNAME); /* Search for this user in the member list. */ for (j = 0; (members != NULL) && (j < members->n_values); j++) { value = g_value_array_get_nth(members, j); username = g_value_get_string(value); /* If it holds the user's old name, then * set its value to the new name. */ if (strcmp(old_uid, username) == 0) { /* Modifies the entity in-place. */ g_value_set_string(value, uid); break; } } /* Do the same for the administrator list. */ for (j = 0; (admins != NULL) && (j < admins->n_values); j++) { value = g_value_array_get_nth(admins, j); username = g_value_get_string(value); /* If it holds the user's old name, then * set its value to the new name. */ if (strcmp(old_uid, username) == 0) { /* Modifies the entity in-place. */ g_value_set_string(value, uid); break; } } /* Save the changes to the group. */ if (lu_group_modify(ctx, group, &error) == FALSE) fprintf(stderr, _("Group %s could not be " "modified: %s.\n"), lu_ent_get_first_string(group, LU_GROUPNAME), lu_strerror(error)); lu_ent_free(group); } g_ptr_array_free(groups, TRUE); lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP); } g_free(old_uid); /* If we need to move the user's directory, we do that now. */ if (change && move_home) { if (oldHomeDirectory == NULL) { fprintf(stderr, _("No old home directory for %s.\n"), user); return 10; } if (homeDirectory == NULL) { fprintf(stderr, _("No new home directory for %s.\n"), user); return 11; } if (lu_homedir_move(oldHomeDirectory, homeDirectory, &error) == FALSE) { fprintf(stderr, _("Error moving %s to %s: %s.\n"), oldHomeDirectory, homeDirectory, lu_strerror(error)); return 12; } } g_free(oldHomeDirectory); lu_ent_free(ent); lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/apputil.c0000644000175000017500000001727012226342567016677 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004, 2005, 2006, 2007 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #ifdef WITH_SELINUX #include #include #include #include #endif #include "../lib/error.h" #include "../lib/user.h" #include "../lib/user_private.h" #include "apputil.h" #ifdef WITH_SELINUX static int check_access(const char *chuser, access_vector_t access) { int status; security_context_t user_context; status = -1; if (getprevcon(&user_context) == 0) { context_t c; const char *user; c = context_new(user_context); user = context_user_get(c); if (strcmp(chuser, user) == 0) status = 0; else { struct av_decision avd; int retval; retval = security_compute_av(user_context, user_context, SECCLASS_PASSWD, access, &avd); if (retval == 0 && (avd.allowed & access) == access) status = 0; } context_free(c); freecon(user_context); } return status; } #endif #if 0 /* Concatenate a string onto another string on the heap. */ static char * lu_strconcat(char *existing, const char *appendee) { if (existing == NULL) { existing = g_strdup(appendee); } else { char *tmp; tmp = g_strconcat(existing, appendee, NULL); g_free(existing); existing = tmp; } return existing; } struct conv_data { lu_prompt_fn *prompt; gpointer callback_data; }; /* PAM callback information. */ static int lu_converse(int num_msg, const struct pam_message **msg, struct pam_response **resp, void *appdata_ptr) { struct conv_data *data = appdata_ptr; struct lu_prompt prompts[num_msg]; struct lu_error *error = NULL; struct pam_response *responses; char *pending = NULL, *p; int i; memset(&prompts, 0, sizeof(prompts)); /* Convert the PAM prompts to our own prompter type. */ for (i = 0; i < num_msg; i++) { switch ((*msg)[i].msg_style) { case PAM_PROMPT_ECHO_ON: /* Append this text to any pending output text * we already have. */ prompts[i].prompt = lu_strconcat(pending, (*msg)[i].msg); p = strrchr(prompts[i].prompt, ':'); if (p != NULL) { *p = '\0'; } prompts[i].visible = TRUE; pending = NULL; break; case PAM_PROMPT_ECHO_OFF: /* Append this text to any pending output text * we already have. */ prompts[i].prompt = lu_strconcat(pending, (*msg)[i].msg); p = strrchr(prompts[i].prompt, ':'); if (p != NULL) { *p = '\0'; } prompts[i].visible = FALSE; pending = NULL; break; default: /* Make this pending output text. */ pending = lu_strconcat(pending, (*msg)[i].msg); break; } } g_free(pending); /* Discards trailing PAM_ERROR_MSG or PAM_TEXT_INFO */ /* Prompt the user. */ if (data->prompt(prompts, num_msg, data->callback_data, &error)) { /* Allocate room for responses. This memory will be * freed by the calling application, so use malloc() instead * of g_malloc() and friends. */ responses = calloc(num_msg, sizeof(*responses)); if (responses == NULL) return PAM_BUF_ERR; /* Transcribe the responses into the PAM structure. */ for (i = 0; i < num_msg; i++) { /* Set the response code and text (if we have text), * and free the prompt text. */ responses[i].resp_retcode = PAM_SUCCESS; if (prompts[i].value != NULL) { responses[i].resp = strdup(prompts[i].value); prompts[i].free_value(prompts[i].value); } g_free((gpointer) prompts[i].prompt); } /* Set the return pointer. */ *resp = responses; } if (error != NULL) { lu_error_free(&error); } return PAM_CONV_ERR; } #endif /* Authenticate the user if the invoking user is not privileged. If * authentication fails, exit immediately. */ void lu_authenticate_unprivileged(struct lu_context *ctx, const char *user, const char *appname) { pam_handle_t *pamh; struct pam_conv conv; const void *puser; int ret; /* Don't bother (us and the user) if none of the modules makes use of * elevated privileges and the program is not set*id. */ if (lu_uses_elevated_privileges(ctx) == FALSE && geteuid() == getuid() && getegid() == getgid()) return; #if 0 struct conv_data data; /* Don't bother if none of the modules makes use of elevated * privileges. */ if (lu_uses_elevated_privileges(ctx) == FALSE) { /* Great! We can drop privileges. */ if (setegid(getgid()) == -1) { fprintf(stderr, _("Failed to drop privileges.\n")); goto err; } if (seteuid(getuid()) == -1) { fprintf(stderr, _("Failed to drop privileges.\n")); goto err; } return; } /* Get the address of the glue conversation function. */ lu_get_prompter(ctx, &data.prompt, &data.callback_data); if (data.prompt == NULL) { fprintf(stderr, _("Internal error.\n")); goto err; } conv.conv = lu_converse; conv.appdata_ptr = &data; #endif conv.conv = misc_conv; conv.appdata_ptr = NULL; #ifdef WITH_SELINUX if (is_selinux_enabled() > 0) { /* FIXME: PASSWD_CHSH, PASSWD_PASSWD ? */ if (getuid() == 0 && check_access(user, PASSWD__CHFN) != 0) { security_context_t user_context; if (getprevcon(&user_context) < 0) user_context = NULL; /* FIXME: "change the finger info?" */ fprintf(stderr, _("%s is not authorized to change the finger " "info of %s\n"), user_context ? user_context : _("Unknown user context"), user); if (user_context != NULL) freecon(user_context); goto err; } /* FIXME: is this right for lpasswd? */ if (!lu_util_fscreate_from_file("/etc/passwd", NULL)) { fprintf(stderr, _("Can't set default context for " "/etc/passwd\n")); goto err; } } #endif /* Start up PAM. */ if (pam_start(appname, user, &conv, &pamh) != PAM_SUCCESS) { fprintf(stderr, _("Error initializing PAM.\n")); goto err; } /* Use PAM to authenticate the user. */ ret = pam_authenticate(pamh, 0); if (ret != PAM_SUCCESS) { if (pam_get_item(pamh, PAM_USER, &puser) != PAM_SUCCESS || puser == NULL) puser = user; fprintf(stderr, _("Authentication failed for %s.\n"), (const char *)puser); goto err_pam; } /* Make sure we authenticated the user we wanted to authenticate. */ ret = pam_get_item(pamh, PAM_USER, &puser); if (ret != PAM_SUCCESS) { fprintf(stderr, _("Internal PAM error `%s'.\n"), pam_strerror(pamh, ret)); goto err_pam; } if (puser == NULL) { fprintf(stderr, _("Unknown user authenticated.\n")); goto err_pam; } if (strcmp(puser, user) != 0) { fprintf(stderr, _("User mismatch.\n")); goto err_pam; } /* Check if the user is allowed to run this program. */ ret = pam_acct_mgmt(pamh, 0); if (ret != PAM_SUCCESS) { if (pam_get_item(pamh, PAM_USER, &puser) != PAM_SUCCESS || puser == NULL) puser = user; fprintf(stderr, _("Authentication failed for %s.\n"), (const char *)puser); goto err_pam; } /* Clean up -- we're done. */ pam_end(pamh, PAM_SUCCESS); return; err_pam: pam_end(pamh, ret); err: exit(1); } libuser-0.60~dfsg/apps/lchsh.c0000644000175000017500000001003612226342567016313 0ustar tzafrirtzafrir/* * Copyright (C) 2001,2002, 2004, 2006 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include "../lib/user.h" #include "apputil.h" int main(int argc, const char **argv) { const char *user; struct lu_context *ctx; struct lu_error *error = NULL; struct lu_ent *ent; char *shell; int interactive = FALSE; int c; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, POPT_AUTOHELP POPT_TABLEEND }; /* Set up i18n. */ bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); /* Parse arguments. */ popt = poptGetContext("lchsh", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] [user]")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } user = poptGetArg(popt); /* If no user was specified, or we're setuid, force the user name to * be that of the current user. */ if ((user == NULL) || (geteuid() != getuid())) { struct passwd *pwd; pwd = getpwuid(getuid()); if (pwd != NULL) { user = g_strdup(pwd->pw_name); } else { fprintf(stderr, _("No user name specified, no name for " "uid %d.\n"), getuid()); poptPrintUsage(popt, stderr, 0); exit(1); } } poptFreeContext(popt); /* Give the user some idea of what's going on. */ g_print(_("Changing shell for %s.\n"), user); /* Start up the library. */ ctx = lu_start(user, lu_user, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } /* Authenticate the user if we need to. */ lu_authenticate_unprivileged(ctx, user, "chsh"); /* Look up this user's record. */ ent = lu_ent_new(); if (lu_user_lookup_name(ctx, user, ent, &error) == FALSE) { fprintf(stderr, _("User %s does not exist.\n"), user); exit(1); } /* Read the user's shell. */ shell = lu_ent_get_first_value_strdup(ent, LU_LOGINSHELL); if (shell != NULL) { struct lu_prompt prompts[1]; /* Fill in the prompt structure using the user's shell. */ memset(prompts, 0, sizeof(prompts)); prompts[0].key = "lchfn/shell"; prompts[0].prompt = N_("New Shell"); prompts[0].domain = PACKAGE; prompts[0].visible = TRUE; prompts[0].default_value = shell; /* Prompt for a new shell. */ if (lu_prompt_console(prompts, G_N_ELEMENTS(prompts), NULL, &error) == FALSE) { fprintf(stderr, _("Shell not changed: %s\n"), lu_strerror(error)); return 1; } /* Modify the in-memory structure's shell attribute. */ lu_ent_set_string(ent, LU_LOGINSHELL, prompts[0].value); if (prompts[0].free_value != NULL) { prompts[0].free_value(prompts[0].value); prompts[0].value = NULL; } /* Modify the user's record in the information store. */ if (lu_user_modify(ctx, ent, &error)) { g_print(_("Shell changed.\n")); lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); } else { fprintf(stderr, _("Shell not changed: %s\n"), lu_strerror(error)); return 1; } } lu_ent_free(ent); lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/lchage.10000644000175000017500000000605212226342567016356 0ustar tzafrirtzafrir.\" A man page for lchage .\" Copyright (C) 2005, 2012 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmač .TH lchage 1 "Nov 8 2012" libuser .SH NAME lchage \- Display or change user password policy .SH SYNOPSIS lchage [\fIOPTION\fR]... \fIuser\fR .SH DESCRIPTION Displays or allows changing password policy of \fIuser\fR. .SH OPTIONS .TP \fB\-d\fR, \fB\-\-date\fR=\fIdays\fR Set the date of last password change to \fIdays\fR after Jan 1 1970. Set .I days to -1 to disable password expiration (i.e. to ignore \fB\-\-mindays\fP, and \fB\-\-maxdays\fP and related settings). Set .I days to 0 to enforce password change on next login. (This also disables password expiration until the password is changed.) .TP \fB\-E\fR, \fB\-\-expire\fR=\fIdays\fR Set the account expiration date to \fIdays\fR after Jan 1 1970. Set \fIdays\fR to -1 to disable account expiration. .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .TP \fB\-I\fR, \fB\-\-inactive\fR=\fIdays\fR Disable the account after \fIdays\fR after password expires (after the user is required to change the password). Set .I days to -1 to keep the account enabled indefinitely after password expiration. .TP \fB\-l\fR, \fB\-\-list\fR Only list current \fIuser\fR's policy and make no changes. .TP \fB\-m\fR, \fB\-\-mindays\fR=\fIdays\fR Require at least \fIdays\fR days between password changes. Set \fIdays\fR to 0 or -1 to disable this requirement. If this value is larger than the value set by \fB\-\-maxdays\fP, the user cannot change the pasword. .TP \fB\-M\fR, \fB\-\-maxdays\fR=\fIdays\fR Require changing the password after \fIdays\fR since last password change. Set \fIdays\fR to -1 to disable password expiration. .TP \fB\-W\fR, \fB\-\-warndays\fR=\fIdays\fR Start warning the user \fIdays\fR before password expires (before the user is required to change the password). Set .I days to 0 or -1 to disable the warning. .SH EXIT STATUS The exit status is 0 on success, nonzero on error. .SH NOTES Note that \(lqaccount expiration\(rq (set by \fB\-\-expire\fP) is distinct from \(lqpassword expiration\(rq (set by \fB\-\-maxdays\fP). Account expiration happens on a fixed date regardless of password changes. Password expiration is relative to the date of last password change. libuser-0.60~dfsg/apps/lchfn.c0000644000175000017500000001751112226342567016311 0ustar tzafrirtzafrir/* * Copyright (C) 2001, 2002, 2004, 2006 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include "../lib/user.h" #include "apputil.h" #define NAME_KEY "lchfn/name" #define SURNAME_KEY "lchfn/surname" #define GIVENNAME_KEY "lchfn/givenname" #define OFFICE_KEY "lchfn/office" #define OFFICEPHONE_KEY "lchfn/officephone" #define HOMEPHONE_KEY "lchfn/homephone" #define EMAIL_KEY "lchfn/email" int main(int argc, const char **argv) { const char *user, *gecos; const char *name, *office, *officephone, *homephone; struct lu_context *ctx; struct lu_error *error = NULL; struct lu_ent *ent; int interactive = FALSE; int c; struct lu_prompt prompts[7]; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, POPT_AUTOHELP POPT_TABLEEND }; char **fields, *p; size_t fields_len; size_t pcount, i; /* Set up i18n. */ bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); /* Parse command-line arguments. */ popt = poptGetContext("lchfn", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] [user]")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } user = poptGetArg(popt); /* If no user name was specified, or we're running in a setuid * environment, force the user name to be the current user. */ if ((user == NULL) || (geteuid() != getuid())) { struct passwd *pwd; pwd = getpwuid(getuid()); if (pwd != NULL) { user = g_strdup(pwd->pw_name); } else { fprintf(stderr, _("No user name specified, no name " "for uid %d.\n"), getuid()); poptPrintUsage(popt, stderr, 0); exit(1); } } poptFreeContext(popt); /* Give the user some idea of what's going on. */ g_print(_("Changing finger information for %s.\n"), user); /* Start up the library. */ ctx = lu_start(user, lu_user, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } /* Authenticate the user to the "chfn" service. */ lu_authenticate_unprivileged(ctx, user, "chfn"); /* Look up the user's information. */ ent = lu_ent_new(); if (lu_user_lookup_name(ctx, user, ent, &error) == FALSE) { fprintf(stderr, _("User %s does not exist.\n"), user); exit(1); } /* Read the user's GECOS information. */ gecos = lu_ent_get_first_value_strdup(ent, LU_GECOS); if (gecos == NULL) gecos = ""; /* Split the gecos into the prompt structures. */ fields = g_strsplit(gecos, ",", G_N_ELEMENTS(prompts)); /* Count the number of fields we got. */ fields_len = g_strv_length(fields); /* Fill out the prompt structures. */ memset(prompts, 0, sizeof(prompts)); pcount = 0; /* The first prompt is for the full name. */ name = (fields_len > 0) ? fields[0] : NULL; prompts[pcount].key = NAME_KEY; prompts[pcount].prompt = N_("Full Name"); prompts[pcount].domain = PACKAGE; prompts[pcount].visible = TRUE; prompts[pcount].default_value = name; pcount++; /* If we have it, prompt for the user's surname. */ p = lu_ent_get_first_value_strdup(ent, LU_SN); if (p != NULL) { prompts[pcount].key = SURNAME_KEY; prompts[pcount].prompt = N_("Surname"); prompts[pcount].domain = PACKAGE; prompts[pcount].visible = TRUE; prompts[pcount].default_value = p; pcount++; } /* If we have it, prompt for the user's givenname. */ p = lu_ent_get_first_value_strdup(ent, LU_GIVENNAME); if (p != NULL) { prompts[pcount].key = GIVENNAME_KEY; prompts[pcount].prompt = N_("Given Name"); prompts[pcount].domain = PACKAGE; prompts[pcount].visible = TRUE; prompts[pcount].default_value = p; pcount++; } /* Prompt for the user's office number. */ office = (fields_len > 1) ? fields[1] : NULL; prompts[pcount].key = OFFICE_KEY; prompts[pcount].prompt = N_("Office"); prompts[pcount].domain = PACKAGE; prompts[pcount].visible = TRUE; prompts[pcount].default_value = office; pcount++; /* Prompt for the user's office telephone number. */ officephone = (fields_len > 2) ? fields[2] : NULL; prompts[pcount].key = OFFICEPHONE_KEY; prompts[pcount].prompt = N_("Office Phone"); prompts[pcount].domain = PACKAGE; prompts[pcount].visible = TRUE; prompts[pcount].default_value = officephone; pcount++; /* Prompt for the user's home telephone number. */ homephone = (fields_len > 3) ? fields[3] : NULL; prompts[pcount].key = HOMEPHONE_KEY; prompts[pcount].prompt = N_("Home Phone"); prompts[pcount].domain = PACKAGE; prompts[pcount].visible = TRUE; prompts[pcount].default_value = homephone; pcount++; /* If we have it, prompt for the user's email. */ p = lu_ent_get_first_value_strdup(ent, LU_EMAIL); if (p != NULL) { prompts[pcount].key = EMAIL_KEY; prompts[pcount].prompt = N_("E-Mail Address"); prompts[pcount].domain = PACKAGE; prompts[pcount].visible = TRUE; prompts[pcount].default_value = p; pcount++; } /* Sanity check. */ g_assert(pcount <= G_N_ELEMENTS(prompts)); /* Ask the user for new values. */ if (lu_prompt_console(prompts, pcount, NULL, &error) == FALSE) { fprintf(stderr, _("Finger information not changed: input error.\n")); exit(1); } /* Now iterate over the answers and figure things out. */ for (i = 0; i < pcount; i++) { const char *filtered; if (prompts[i].value == NULL) { filtered = ""; } else if (strcmp(prompts[i].value, ".") == 0) { filtered = ""; } else { filtered = prompts[i].value; } #define ATTR__(KEY, EXTRA, ATTR) \ if (strcmp(prompts[i].key, KEY) == 0) { \ EXTRA; \ if (strlen(filtered) > 0) \ lu_ent_set_string(ent, ATTR, filtered); \ else \ lu_ent_clear(ent, ATTR); \ } #define ATTR(KEY, ATTR_) ATTR__(KEY, , ATTR_) #define NAMED_ATTR(KEY, NAME, ATTR_) ATTR__(KEY, NAME = filtered, ATTR_) NAMED_ATTR(NAME_KEY, name, LU_COMMONNAME); ATTR(SURNAME_KEY, LU_SN); ATTR(GIVENNAME_KEY, LU_GIVENNAME); NAMED_ATTR(OFFICE_KEY, office, LU_ROOMNUMBER); NAMED_ATTR(OFFICEPHONE_KEY, officephone, LU_TELEPHONENUMBER); NAMED_ATTR(HOMEPHONE_KEY, homephone, LU_HOMEPHONE); ATTR(EMAIL_KEY, LU_EMAIL); #undef NAMED_ATTR #undef ATTR #undef ATTR__ } /* Build a new gecos string. */ gecos = g_strjoin(",", name ?: "", office ?: "", officephone ?: "", homephone ?: "", NULL); /* Now we can free the answers. */ for (i = 0; i < pcount; i++) { if (prompts[i].value != NULL) { if (prompts[i].free_value != NULL) { prompts[i].free_value(prompts[i].value); prompts[i].value = NULL; } } } lu_ent_set_string(ent, LU_GECOS, gecos); /* Try to save our changes. */ if (lu_user_modify(ctx, ent, &error)) { g_print(_("Finger information changed.\n")); lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); } else { fprintf(stderr, _("Finger information not changed: %s.\n"), lu_strerror(error)); return 1; } g_strfreev(fields); lu_ent_free(ent); lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/lgroupadd.c0000644000175000017500000000673712226342567017210 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include "../lib/user_private.h" #include "apputil.h" int main(int argc, const char **argv) { const char *name, *gid_number_str = NULL; gid_t gidNumber = LU_VALUE_INVALID_ID; struct lu_context *ctx; struct lu_ent *ent; struct lu_error *error = NULL; int interactive = FALSE; int system_account = FALSE; int c; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"gid", 'g', POPT_ARG_STRING, &gid_number_str, 0, N_("gid for new group"), N_("NUM")}, {"reserved", 'r', POPT_ARG_NONE, &system_account, 0, N_("create a system group"), NULL}, POPT_AUTOHELP POPT_TABLEEND }; /* Set up i18n. */ bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); /* Parse arguments. */ popt = poptGetContext("lgroupadd", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] group")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } name = poptGetArg(popt); /* We require a group name to be specified. */ if (name == NULL) { fprintf(stderr, _("No group name specified.\n")); poptPrintUsage(popt, stderr, 0); return 1; } if (gid_number_str != NULL) { intmax_t val; char *p; errno = 0; val = strtoimax(gid_number_str, &p, 10); if (errno != 0 || *p != 0 || p == gid_number_str || (gid_t)val != val || (gid_t)val == LU_VALUE_INVALID_ID) { fprintf(stderr, _("Invalid group ID %s\n"), gid_number_str); poptPrintUsage(popt, stderr, 0); return 1; } gidNumber = val; } poptFreeContext(popt); /* Start up the library. */ ctx = lu_start(NULL, 0, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } /* Create a group entity object holding sensible defaults for a * new group. */ ent = lu_ent_new(); lu_group_default(ctx, name, system_account, ent); /* If the user specified a particular GID number, override the * default. */ if (gidNumber != LU_VALUE_INVALID_ID) lu_ent_set_id(ent, LU_GIDNUMBER, gidNumber); /* Try to create the group. */ if (lu_group_add(ctx, ent, &error) == FALSE) { fprintf(stderr, _("Group creation failed: %s\n"), lu_strerror(error)); return 2; } lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP); lu_ent_free(ent); lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/luseradd.10000644000175000017500000001166712226342567016746 0ustar tzafrirtzafrir.\" A man page for luseradd .\" Copyright (C) 2005, 2009 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH luseradd 1 2009-12-09 libuser .SH NAME luseradd \- Add an user .SH SYNOPSIS luseradd [\fIOPTION\fR]... \fIuser\fR .SH DESCRIPTION Adds an user with name \fIuser\fR. .SH OPTIONS .TP \fB\-c\fR, \fB\-\-gecos\fR=\fIgecos\fR Set the \f[SM]GECOS\fR field to \fIgecos\fR. The \f[SM]GECOS\fR field is traditionally used to store user's real name and other information. .TP \fB\-d\fR, \fB\-\-directory\fR=\fIdirectory\fR Set user's home directory to \fIdirectory\fR. If this option is not present, a default specified by .B libuser configuration is used. .TP \fB\-g\fR, \fB\-\-gid\fR=\fIgroup\fR Set user's primary group to \fIgroup\fR. \fIgroup\fR can either be a group ID of an existing group, or a group name; if \fIgroup\fR is a group name and the group does not exist, it is created. If the \fB\-\-gid\fR option is not specified, the default group name is \fIuser\fR. .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .TP \fB\-k\fR, \fB\-\-skeleton\fR=\fIdirectory\fR Populate the newly created user's home directory with a copy of \fIdirectory\fR. If this option is not present, a default directory specified by .B libuser configuration, or \fB/etc/skel\fR if .B libuser configuration does not specify a default, is used. .TP \fB\-M\fR, \fB\-\-nocreatehome\fR Don't create a home directory and a mail spool for the newly created user. .TP \fB\-n\fR, \fB\-\-nocreategroup\fR If a group is not specified using \fB\-g\fR, use group name "users" instead of \fIuser\fR. Note that despite the name of the option, the group will still be created if it does not exist. .TP \fB\-P\fR, \fB\-\-plainpassword\fR=\fIpassword\fR Set \fIuser\fR's password to \fIpassword\fR. Note that the password can be viewed while running .BR luseradd using tools such as .BR ps (1)\fR. .TP \fB\-p\fR, \fB\-\-password\fR=\fIencrypted\fR Set \fIuser\fR's password to the password represented by the hash \fIencrypted\fR. Note that the hash can be viewed while running .BR luseradd using tools such as .BR ps (1)\fR. .TP \fB\-r\fR, \fB\-\-reserved\fR The user is a system user. Users that are not marked as system user usually have automatically selected user IDs above a certain value (configured as .B LU_UIDNUMBER in \fBlibuser.conf\fP\fR(5)\fP). This information is also passed to the .B libuser backends. This option implies the \fB\-M\fR option. .TP \fB\-s\fR, \fB\-\-shell\fR=\fIshell\fR Set user's login shell to \fIshell\fR. If this option is not present, a default specified by .B libuser configuration is used. .TP \fB\-u\fR, \fB\-\-uid\fR=\fIuid\fR Use user ID \fIuid\fR for the newly created user. An user ID is selected automatically if this option is not present. .TP \fB\-\-commonname\fP=\fIname\fP Use common name .I name for the newly created user. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-givenname\fP=\fIname\fP Use given name .I name for the newly created user. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-homephone\fP=\fIphone\fP Use home telephone number .I phone for the newly created user. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-roomnumber\fP=\fIroom\fP Use room number .I room for the newly created user. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-surname\fP=\fIname\fP Use surname .I name for the newly created user. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-telephonenumber\fP=\fIphone\fP Use telephone number .I phone for the newly created user. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .SH EXIT STATUS The exit status is 0 on success, nonzero on error. libuser-0.60~dfsg/apps/lgroupdel.c0000644000175000017500000000522512226342567017213 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include "../lib/user.h" #include "apputil.h" int main(int argc, const char **argv) { struct lu_context *ctx; struct lu_ent *ent; struct lu_error *error = NULL; const char *group; int interactive = FALSE; int c; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, POPT_AUTOHELP POPT_TABLEEND }; /* Set up for i18n. */ bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); /* Parse arguments. */ popt = poptGetContext("lgroupdel", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] group")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } group = poptGetArg(popt); /* The caller has to specify a group name. */ if (group == NULL) { fprintf(stderr, _("No group name specified.\n")); poptPrintUsage(popt, stderr, 0); return 1; } poptFreeContext(popt); /* Start up the library. */ ctx = lu_start(NULL, 0, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } /* Look up the group structure. */ ent = lu_ent_new(); if (lu_group_lookup_name(ctx, group, ent, &error) == FALSE) { fprintf(stderr, _("Group %s does not exist.\n"), group); return 2; } /* Delete the group. */ if (lu_group_delete(ctx, ent, &error) == FALSE) { fprintf(stderr, _("Group %s could not be deleted: %s\n"), group, lu_strerror(error)); return 3; } lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP); lu_ent_free(ent); lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/lchage.c0000644000175000017500000001661112226342567016442 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include "../lib/user.h" #include "apputil.h" #define INVALID_LONG LONG_MIN /* Return the first G_TYPE_LONG value of ATTR if ENT, if exists, or -1 if the attribute is missing or invalid. */ static glong read_ndays(struct lu_ent *ent, const char *attr) { GValueArray *values; GValue *value; values = lu_ent_get(ent, attr); if (values == NULL) return -1; value = g_value_array_get_nth(values, 0); g_assert(G_VALUE_HOLDS_LONG(value)); return g_value_get_long(value); } /* Format a count of days into a string that's intelligible to a user. */ static void date_to_string(glong n_days, char *buf, size_t len) { if ((n_days >= 0) && (n_days < 99999)) { GDate *date; date = g_date_new_dmy(1, G_DATE_JANUARY, 1970); g_date_add_days(date, n_days); g_date_strftime(buf, len, "%x", date); g_date_free(date); } } int main(int argc, const char **argv) { long shadowMin = INVALID_LONG, shadowMax = INVALID_LONG, shadowLastChange = INVALID_LONG, shadowInactive = INVALID_LONG, shadowExpire = INVALID_LONG, shadowWarning = INVALID_LONG; const char *user; struct lu_context *ctx; struct lu_ent *ent; struct lu_error *error = NULL; int interactive = FALSE; int list_only = FALSE; int c; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"list", 'l', POPT_ARG_NONE, &list_only, 0, N_("list aging parameters for the user"), NULL}, {"mindays", 'm', POPT_ARG_LONG, &shadowMin, 0, N_("minimum days between password changes"), N_("DAYS")}, {"maxdays", 'M', POPT_ARG_LONG, &shadowMax, 0, N_("maximum days between password changes"), N_("DAYS")}, {"date", 'd', POPT_ARG_LONG, &shadowLastChange, 0, N_("date of last password change in days since 1/1/70"), N_("DAYS")}, {"inactive", 'I', POPT_ARG_LONG, &shadowInactive, 0, N_("number of days after password expiration date when " "account is considered inactive"), N_("DAYS")}, {"expire", 'E', POPT_ARG_LONG, &shadowExpire, 0, N_("password expiration date in days since 1/1/70"), N_("DAYS")}, {"warndays", 'W', POPT_ARG_LONG, &shadowWarning, 0, N_("days before expiration to begin warning user"), N_("DAYS")}, POPT_AUTOHELP POPT_TABLEEND }; /* Set up i18n. */ bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); /* Parse arguments. */ popt = poptGetContext("lchage", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] user")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } user = poptGetArg(popt); /* We need exactly one argument, and that's the user's name. */ if (user == NULL) { fprintf(stderr, _("No user name specified.\n")); poptPrintUsage(popt, stderr, 0); return 1; } poptFreeContext(popt); /* Start up the library. */ ctx = lu_start(user, lu_user, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } ent = lu_ent_new(); /* Look up information about the user. */ if (lu_user_lookup_name(ctx, user, ent, &error) == FALSE) { fprintf(stderr, _("User %s does not exist.\n"), user); return 2; } if (list_only) { char buf[LINE_MAX]; /* Just print out what we can find out, in a format similar to the chage(1) utility from the shadow suite. To make it a little easier to understand, convert "-1" to "0" in cases where the two have the same meaning. */ if (lu_user_islocked(ctx, ent, &error)) { printf(_("Account is locked.\n")); } else { printf(_("Account is not locked.\n")); } shadowMin = read_ndays(ent, LU_SHADOWMIN); printf(_("Minimum:\t%ld\n"), shadowMin != -1 ? shadowMin : 0); shadowMax = read_ndays(ent, LU_SHADOWMAX); if (shadowMax != -1) printf(_("Maximum:\t%ld\n"), shadowMax); else printf(_("Maximum:\tNone\n")); shadowWarning = read_ndays(ent, LU_SHADOWWARNING); printf(_("Warning:\t%ld\n"), shadowWarning != -1 ? shadowWarning : 0); shadowInactive = read_ndays(ent, LU_SHADOWINACTIVE); if (shadowInactive != -1) printf(_("Inactive:\t%ld\n"), shadowInactive); else printf(_("Inactive:\tNever\n")); shadowLastChange = read_ndays(ent, LU_SHADOWLASTCHANGE); if (shadowLastChange == 0) strcpy(buf, _("Must change password on next login")); else { strcpy(buf, _("Never")); date_to_string(shadowLastChange, buf, sizeof(buf)); } printf(_("Last Change:\t%s\n"), buf); if (shadowLastChange == 0) strcpy(buf, _("Must change password on next login")); else { strcpy(buf, _("Never")); if (shadowLastChange != -1 && shadowMax != -1) date_to_string(shadowLastChange + shadowMax, buf, sizeof(buf)); } printf(_("Password Expires:\t%s\n"), buf); if (shadowLastChange == 0) strcpy(buf, _("Must change password on next login")); else { strcpy(buf, _("Never")); if (shadowLastChange != -1 && shadowMax != -1 && shadowInactive != -1) date_to_string(shadowLastChange + shadowMax + shadowInactive, buf, sizeof(buf)); } printf(_("Password Inactive:\t%s\n"), buf); strcpy(buf, _("Never")); shadowExpire = read_ndays(ent, LU_SHADOWEXPIRE); if (shadowExpire != -1) date_to_string(shadowExpire, buf, sizeof(buf)); printf(_("Account Expires:\t%s\n"), buf); } else { /* Set values using parameters given on the command-line. */ if (shadowLastChange != INVALID_LONG) lu_ent_set_long(ent, LU_SHADOWLASTCHANGE, shadowLastChange); if (shadowMin != INVALID_LONG) lu_ent_set_long(ent, LU_SHADOWMIN, shadowMin); if (shadowMax != INVALID_LONG) lu_ent_set_long(ent, LU_SHADOWMAX, shadowMax); if (shadowWarning != INVALID_LONG) lu_ent_set_long(ent, LU_SHADOWWARNING, shadowWarning); if (shadowInactive != INVALID_LONG) lu_ent_set_long(ent, LU_SHADOWINACTIVE, shadowInactive); if (shadowExpire != INVALID_LONG) lu_ent_set_long(ent, LU_SHADOWEXPIRE, shadowExpire); /* Now actually modify the user's data in the system * information store. */ if (lu_user_modify(ctx, ent, &error) == FALSE) { fprintf(stderr, _("Failed to modify aging information for %s: " "%s\n"), user, lu_strerror(error)); return 3; } lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); } lu_ent_free(ent); lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/lchfn.10000644000175000017500000000335612226342567016231 0ustar tzafrirtzafrir.\" A man page for lchfn .\" Copyright (C) 2004 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH lchfn 1 "Sep 20 2004" libuser .SH NAME lchfn \- Change finger information .SH SYNOPSIS lchfn [\fIOPTION\fR]... [\fIuser\fR] .SH DESCRIPTION Displays and allows changing information about \fIuser\fR that is available using the .BR finger (1) command (usually stored in the "gecos" field of \fI/etc/passwd\fR). If the \fIuser\fR argument is not provided, username of the invoking user is used; the \fIuser\fR argument is ignored if .B lchfn is run set-uid to a different user. Entering an empty string (by pressing Enter) at a prompt is interpreted as accepting a default value; to erase an attribute (or to use an empty string as the attribute value), enter a single dot character. .SH OPTIONS .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .SH EXIT STATUS The exit status is 0 on success, 1 on error. libuser-0.60~dfsg/apps/lid.c0000644000175000017500000001263112226342567015765 0ustar tzafrirtzafrir/* * Copyright (C) 2001, 2002, 2004, 2006, 2009 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include "../lib/user.h" #include "apputil.h" static void do_nameonly(struct lu_context *ctx, const char *name, GValueArray *(*enumerate) (struct lu_context *, const char *, struct lu_error **)) { GValueArray *values; struct lu_error *error; error = NULL; values = enumerate(ctx, name, &error); if (error != NULL) { fprintf(stderr, _("Error looking up %s: %s\n"), name, lu_strerror(error)); lu_error_free(&error); exit(1); } if (values != NULL) { size_t i; for (i = 0; i < values->n_values; i++) { GValue *value; value = g_value_array_get_nth(values, i); g_print(" %s\n", g_value_get_string(value)); } g_value_array_free(values); } } static void do_full(struct lu_context *ctx, const char *name, GPtrArray *(*enumerate_full) (struct lu_context *, const char *, struct lu_error **), const char *name_attribute, const char *id_attribute, const char *id_descr) { GPtrArray *entities; struct lu_error *error; error = NULL; entities = enumerate_full(ctx, name, &error); if (error != NULL) { fprintf(stderr, _("Error looking up %s: %s\n"), name, lu_strerror(error)); lu_error_free(&error); exit(1); } if (entities != NULL) { struct lu_ent *ent; size_t i; for (i = 0; i < entities->len; i++) { id_t id; const char *ent_name; ent = g_ptr_array_index(entities, i); ent_name = lu_ent_get_first_string(ent, name_attribute); id = lu_ent_get_first_id(ent, id_attribute); if (id != LU_VALUE_INVALID_ID) g_print(" %s(%s=%jd)\n", ent_name, id_descr, (intmax_t)id); else g_print(" %s\n", ent_name); lu_ent_free(ent); } g_ptr_array_free(entities, TRUE); } } int main(int argc, const char **argv) { const char *name; struct lu_context *ctx; struct lu_error *error = NULL; struct lu_ent *ent; int interactive = FALSE; int groupflag = FALSE, nameonly = FALSE; int c; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"group", 'g', POPT_ARG_NONE, &groupflag, 0, N_("list members of a named group instead of the group " "memberships for the named user"), NULL}, {"onlynames", 'n', POPT_ARG_NONE, &nameonly, 0, N_("only list membership information by name, and not " "UID/GID"), NULL}, POPT_AUTOHELP POPT_TABLEEND }; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); popt = poptGetContext("lid", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] user")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } name = poptGetArg(popt); if (name == NULL) { if (groupflag) { struct group *grp; grp = getgrgid(getgid()); if (grp != NULL) { fprintf(stderr, _("No group name specified, " "using %s.\n"), grp->gr_name); name = g_strdup(grp->gr_name); } else { fprintf(stderr, _("No group name specified, " "no name for gid %d.\n"), getgid()); poptPrintUsage(popt, stderr, 0); exit(1); } } else { struct passwd *pwd; pwd = getpwuid(getuid()); if (pwd != NULL) { fprintf(stderr, _("No user name specified, " "using %s.\n"), pwd->pw_name); name = g_strdup(pwd->pw_name); } else { fprintf(stderr, _("No user name specified, " "no name for uid %d.\n"), getuid()); poptPrintUsage(popt, stderr, 0); exit(1); } } } poptFreeContext(popt); ctx = lu_start(name, groupflag ? lu_user : lu_group, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } ent = lu_ent_new(); if ((groupflag ? lu_group_lookup_name : lu_user_lookup_name) (ctx, name, ent, &error) == FALSE) { if (error != NULL) { fprintf(stderr, _("Error looking up %s: %s\n"), name, lu_strerror(error)); lu_error_free(&error); } else fprintf(stderr, _("%s does not exist\n"), name); return 1; } lu_ent_free(ent); if (nameonly) do_nameonly(ctx, name, groupflag ? lu_users_enumerate_by_group : lu_groups_enumerate_by_user); else { if (groupflag) do_full(ctx, name, lu_users_enumerate_by_group_full, LU_USERNAME, LU_UIDNUMBER, "uid"); else do_full(ctx, name, lu_groups_enumerate_by_user_full, LU_GROUPNAME, LU_GIDNUMBER, "gid"); } lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/lusermod.10000644000175000017500000000776312226342567016777 0ustar tzafrirtzafrir.\" A man page for lusermod .\" Copyright (C) 2005, 2008, 2009 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH lusermod 1 2009-12-11 libuser .SH NAME lusermod \- Modify an user .SH SYNOPSIS lusermod [\fIOPTION\fR]... \fIuser\fR .SH DESCRIPTION Modifies the user with name \fIuser\fR. .SH OPTIONS .TP \fB\-c\fR, \fB\-\-gecos\fR=\fIgecos\fR Set \fIuser\fR's \f[SM]GECOS\fR field to \fIgecos\fR. The \f[SM]GECOS\fR field is traditionally used to store user's real name and other information. .TP \fB\-d\fR, \fB\-\-directory\fR=\fIdirectory\fR Set \fIuser\fR's home directory to \fIdirectory\fR. .TP \fB\-g\fR, \fB\-\-gid\fR=\fIgid\fR Change \fIuser\fR's primary group ID to \fIgid\fR. If group with ID .I gid does not exist, a warning is printed, but the operation is performed anyway. .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .TP \fB\-L\fR, \fB\-\-lock\fR Lock \fIuser\fR's account. This prevents logging in using \fIuser\fR's password. .TP \fB\-l\fR, \fB\-\-login\fR=\fIname\fR Rename \fIuser\fR to \fIname\fR. .TP \fB\-m\fR, \fB\-\-movedirectory\fR After changing \fIuser\fR's home directory (using the \fB\-d\fR option), move the old home directory to the new location. .TP \fB\-P\fR, \fB\-\-plainpassword\fR=\fIpassword\fR Set \fIuser\fR's password to \fIpassword\fR. Note that the password can be viewed while running .BR lusermod using tools such as .BR ps (1)\fR. .TP \fB\-p\fR, \fB\-\-password\fR=\fIencrypted\fR Set \fIuser\fR's password to the password represented by the hash \fIencrypted\fR. Note that the hash can be viewed while running .BR lusermod using tools such as .BR ps (1)\fR. .TP \fB\-s\fR, \fB\-\-shell\fR=\fIshell\fR Set \fIuser\fR's login shell to \fIshell\fR. .TP \fB\-U\fR, \fB\-\-unlock\fR Unlock \fIuser\fR's account. .TP \fB\-u\fR, \fB\-\-uid\fR=\fIuid\fR Change \fIuser\fR's user ID to \fIuid\fR. .TP \fB\-\-commonname\fP=\fIname\fP Set \fIuser\fP's common name to \fIname\fP. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-givenname\fP=\fIname\fP Set \fIuser\fP's given name to \fIname\fP. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-homephone\fP=\fIphone\fP Set \fIuser\fP's home telephone number to \fIphone\fP. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-roomnumber\fP=\fIroom\fP Set \fIuser\fP's room number to \fIroom\fP. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-surname\fP=\fIname\fP Set \fIuser\fP's surname to \fIname\fP. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .TP \fB\-\-telephonenumber\fP=\fIphone\fP Set \fIuser\fP's telephone number to \fIphone\fP. This attribute is only supported in some backends (e.g.LDAP), and its support may have further limitations (e.g. LDAP schema rules). .SH EXIT STATUS The exit status is 0 on success, nonzero on error. libuser-0.60~dfsg/apps/lgroupdel.10000644000175000017500000000241412226342567017126 0ustar tzafrirtzafrir.\" A man page for lgroupdel .\" Copyright (C) 2005 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH lgroupdel 1 "Jan 11 2005" libuser .SH NAME lgroupdel \- Delete an user group .SH SYNOPSIS lgroupdel [\fIOPTION\fR]... \fIgroup\fR .SH DESCRIPTION Deletes the user group with name \fIgroup\fR. .SH OPTIONS .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .SH EXIT STATUS The exit status is 0 on success, nonzero on error. libuser-0.60~dfsg/apps/lgroupadd.10000644000175000017500000000332412226342567017113 0ustar tzafrirtzafrir.\" A man page for lgroupadd .\" Copyright (C) 2005 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH lgroupadd 1 "Jan 11 2005" libuser .SH NAME lgroupadd \- Add an user group .SH SYNOPSIS lgroupadd [\fIOPTION\fR]... \fIgroup\fR .SH DESCRIPTION Adds a new user group with name \fIgroup\fR. .SH OPTIONS .TP \fB\-g\fR, \fB\-\-gid\fR=\fIgid\fR Use group ID \fIgid\fR for the newly created group. A group ID is selected automatically if this option is not present. .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .TP \fB\-r\fR, \fB\-\-reserved\fR The group is a system group. Groups that are not marked as system groups usually have automatically selected group IDs above a certain value (configured as .B LU_GIDNUMBER in \fBlibuser.conf\fP\fR(5)\fP). This information is also passed to the .B libuser backends. .SH EXIT STATUS The exit status is 0 on success, nonzero on error. libuser-0.60~dfsg/apps/lgroupmod.c0000644000175000017500000001744412226342567017234 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include "../lib/user_private.h" #include "apputil.h" int main(int argc, const char **argv) { const char *userPassword = NULL, *cryptedUserPassword = NULL, *gid = NULL, *addAdmins = NULL, *remAdmins = NULL, *addMembers = NULL, *remMembers = NULL, *group, *gid_number_str = NULL; char **admins, **members; gid_t gidNumber = LU_VALUE_INVALID_ID; gid_t oldGidNumber = LU_VALUE_INVALID_ID; struct lu_context *ctx; struct lu_ent *ent; struct lu_error *error = NULL; GPtrArray *users = NULL; GValue val; int change = FALSE, lock = FALSE, unlock = FALSE; int interactive = FALSE; int c; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"gid", 'g', POPT_ARG_STRING, &gid_number_str, 0, N_("set GID for group"), N_("NUM")}, {"name", 'n', POPT_ARG_STRING, &gid, 0, N_("change group to have given name"), N_("NAME")}, {"plainpassword", 'P', POPT_ARG_STRING, &userPassword, 0, N_("plaintext password for use with group"), N_("STRING")}, {"password", 'p', POPT_ARG_STRING, &cryptedUserPassword, 0, N_("pre-hashed password for use with group"), N_("STRING")}, {"admin-add", 'A', POPT_ARG_STRING, &addAdmins, 0, N_("list of administrators to add"), N_("STRING")}, {"admin-remove", 'a', POPT_ARG_STRING, &remAdmins, 0, N_("list of administrators to remove"), N_("STRING")}, {"member-add", 'M', POPT_ARG_STRING, &addMembers, 0, N_("list of group members to add"), N_("STRING")}, {"member-remove", 'm', POPT_ARG_STRING, &remMembers, 0, N_("list of group members to remove"), N_("STRING")}, {"lock", 'L', POPT_ARG_NONE, &lock, 0, N_("lock group"), NULL}, {"unlock", 'U', POPT_ARG_NONE, &unlock, 0, N_("unlock group"), NULL}, POPT_AUTOHELP POPT_TABLEEND }; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); popt = poptGetContext("lgroupmod", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] group")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } group = poptGetArg(popt); if (group == NULL) { fprintf(stderr, _("No group name specified.\n")); poptPrintUsage(popt, stderr, 0); return 1; } if (gid_number_str != NULL) { intmax_t val; char *p; errno = 0; val = strtoimax(gid_number_str, &p, 10); if (errno != 0 || *p != 0 || p == gid_number_str || (gid_t)val != val || (gid_t)val == LU_VALUE_INVALID_ID) { fprintf(stderr, _("Invalid group ID %s\n"), gid_number_str); poptPrintUsage(popt, stderr, 0); return 1; } gidNumber = val; } poptFreeContext(popt); ctx = lu_start(NULL, 0, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } if (lock && unlock) { fprintf(stderr, _("Both -L and -U specified.\n")); return 2; } ent = lu_ent_new(); if (lu_group_lookup_name(ctx, group, ent, &error) == FALSE) { fprintf(stderr, _("Group %s does not exist.\n"), group); return 3; } if (userPassword) { if (lu_group_setpass(ctx, ent, userPassword, FALSE, &error) == FALSE) { fprintf(stderr, _("Failed to set password for group " "%s: %s\n"), group, lu_strerror(error)); return 4; } } if (cryptedUserPassword) { if (lu_group_setpass(ctx, ent, cryptedUserPassword, TRUE, &error) == FALSE) { fprintf(stderr, _("Failed to set password for group " "%s: %s\n"), group, lu_strerror(error)); return 5; } } if (lock) { if (lu_group_lock(ctx, ent, &error) == FALSE) { fprintf(stderr, _("Group %s could not be locked: %s\n"), group, lu_strerror(error)); return 6; } } if (unlock) { if (lu_group_unlock(ctx, ent, &error) == FALSE) { fprintf(stderr, _("Group %s could not be unlocked: %s\n"), group, lu_strerror(error)); return 7; } } change = gid || addAdmins || remAdmins || addMembers || remMembers; if (gid != NULL) { if (lu_ent_get(ent, LU_GROUPNAME) != NULL) lu_ent_set_string(ent, LU_GROUPNAME, gid); else { lu_ent_clear(ent, LU_GROUPNAME); gid = group; } } else gid = group; if (addAdmins) { memset(&val, 0, sizeof(val)); g_value_init(&val, G_TYPE_STRING); admins = g_strsplit(addAdmins, ",", 0); if (admins) { for (c = 0; admins && admins[c]; c++) { g_value_set_string(&val, admins[c]); lu_ent_add(ent, LU_ADMINISTRATORNAME, &val); g_value_reset(&val); } g_strfreev(admins); } g_value_unset(&val); } if (remAdmins) { memset(&val, 0, sizeof(val)); g_value_init(&val, G_TYPE_STRING); admins = g_strsplit(remAdmins, ",", 0); if (admins) { for (c = 0; admins && admins[c]; c++) { g_value_set_string(&val, admins[c]); lu_ent_del(ent, LU_ADMINISTRATORNAME, &val); g_value_reset(&val); } g_strfreev(admins); } g_value_unset(&val); } if (addMembers) { memset(&val, 0, sizeof(val)); g_value_init(&val, G_TYPE_STRING); members = g_strsplit(addMembers, ",", 0); if (members) { for (c = 0; members && members[c]; c++) { g_value_set_string(&val, members[c]); lu_ent_add(ent, LU_MEMBERNAME, &val); g_value_reset(&val); } g_strfreev(members); } g_value_unset(&val); } if (remMembers) { memset(&val, 0, sizeof(val)); g_value_init(&val, G_TYPE_STRING); members = g_strsplit(remMembers, ",", 0); if (members) { for (c = 0; members && members[c]; c++) { g_value_set_string(&val, members[c]); lu_ent_del(ent, LU_MEMBERNAME, &val); g_value_reset(&val); } g_strfreev(members); } g_value_unset(&val); } if (change && lu_group_modify(ctx, ent, &error) == FALSE) { fprintf(stderr, _("Group %s could not be modified: %s\n"), group, lu_strerror(error)); return 8; } if (gidNumber != LU_VALUE_INVALID_ID) { users = lu_users_enumerate_by_group_full(ctx, gid, &error); oldGidNumber = lu_ent_get_first_id(ent, LU_GIDNUMBER); lu_ent_set_id(ent, LU_GIDNUMBER, gidNumber); if (error != NULL) lu_error_free(&error); if (lu_group_modify(ctx, ent, &error) == FALSE) { fprintf(stderr, _("Group %s could not be modified: %s\n"), group, lu_strerror(error)); return 8; } } lu_ent_free(ent); lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP); if (oldGidNumber != LU_VALUE_INVALID_ID && gidNumber != LU_VALUE_INVALID_ID && users != NULL) { size_t i; for (i = 0; i < users->len; i++) { ent = g_ptr_array_index(users, i); if (lu_ent_get_first_id(ent, LU_GIDNUMBER) == oldGidNumber) { lu_ent_set_id(ent, LU_GIDNUMBER, gidNumber); lu_user_modify(ctx, ent, &error); if (error != NULL) lu_error_free(&error); } lu_ent_free(ent); } g_ptr_array_free(users, TRUE); lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); } lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/luserdel.c0000644000175000017500000001014112226342567017026 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include "../lib/user.h" #include "apputil.h" int main(int argc, const char **argv) { struct lu_context *ctx; struct lu_ent *ent; struct lu_error *error = NULL; const char *user; int interactive = FALSE; int remove_home = 0, dont_remove_group = 0; int c; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"dontremovegroup", 'G', POPT_ARG_NONE, &dont_remove_group, 0, N_("don't remove the user's private group, if the user has " "one"), NULL}, {"removehome", 'r', POPT_ARG_NONE, &remove_home, 0, N_("remove the user's home directory"), NULL}, POPT_AUTOHELP POPT_TABLEEND }; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); popt = poptGetContext("luserdel", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] user")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } user = poptGetArg(popt); if (user == NULL) { fprintf(stderr, _("No user name specified.\n")); poptPrintUsage(popt, stderr, 0); return 1; } poptFreeContext(popt); ctx = lu_start(NULL, 0, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } ent = lu_ent_new(); if (lu_user_lookup_name(ctx, user, ent, &error) == FALSE) { fprintf(stderr, _("User %s does not exist.\n"), user); return 2; } if (lu_user_delete(ctx, ent, &error) == FALSE) { fprintf(stderr, _("User %s could not be deleted: %s.\n"), user, lu_strerror(error)); return 3; } lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); if (!dont_remove_group) { struct lu_ent *group_ent; gid_t gid; const char *tmp; gid = lu_ent_get_first_id(ent, LU_GIDNUMBER); if (gid == LU_VALUE_INVALID_ID) { fprintf(stderr, _("%s did not have a gid number.\n"), user); return 4; } group_ent = lu_ent_new(); if (lu_group_lookup_id(ctx, gid, group_ent, &error) == FALSE) { fprintf(stderr, _("No group with GID %jd exists, not " "removing.\n"), (intmax_t)gid); return 5; } tmp = lu_ent_get_first_string(group_ent, LU_GROUPNAME); if (tmp == NULL) { fprintf(stderr, _("Group with GID %jd did not have a " "group name.\n"), (intmax_t)gid); return 6; } if (strcmp(tmp, user) == 0) { if (lu_group_delete(ctx, group_ent, &error) == FALSE) { fprintf(stderr, _("Group %s could not be " "deleted: %s.\n"), tmp, lu_strerror(error)); return 7; } } lu_ent_free(group_ent); lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP); } if (remove_home) { if (lu_homedir_remove_for_user(ent, &error) == FALSE) { fprintf(stderr, _("Error removing home directory: %s.\n"), lu_strerror(error)); return 9; } /* Delete the user's mail spool. */ if (lu_mail_spool_remove(ctx, ent, &error) != TRUE) { fprintf(stderr, _("Error removing mail spool: %s"), lu_strerror(error)); return 1; } } lu_ent_free(ent); lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/lnewusers.c0000644000175000017500000002147112226342567017246 0ustar tzafrirtzafrir/* * Copyright (C) 2001, 2002, 2004, 2006 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include "../lib/user.h" #include "apputil.h" int main(int argc, const char **argv) { struct lu_context *ctx; struct lu_error *error = NULL; struct lu_ent *ent, *groupEnt; int interactive = FALSE, nocreatehome = FALSE, nocreatemail = FALSE; int c; char *file = NULL; FILE *fp = stdin; char buf[LINE_MAX]; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"file", 'f', POPT_ARG_STRING, &file, 0, N_("file with user information records"), N_("PATH")}, {"nocreatehome", 'M', POPT_ARG_NONE, &nocreatehome, 0, N_("don't create home directories"), NULL}, {"nocreatemail", 'n', POPT_ARG_NONE, &nocreatemail, 0, N_("don't create mail spools"), NULL}, POPT_AUTOHELP POPT_TABLEEND }; /* Initialize i18n support. */ bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); /* Parse arguments. */ popt = poptGetContext("lnewusers", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...]")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } poptFreeContext(popt); /* Start up the library. */ ctx = lu_start(NULL, lu_user, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } /* Open the file we're going to look at. */ if (file != NULL) { fp = fopen(file, "r"); if (fp == NULL) { fprintf(stderr, _("Error opening `%s': %s.\n"), file, strerror(errno)); return 2; } } else { fp = stdin; } ent = lu_ent_new(); groupEnt = lu_ent_new(); while (fgets(buf, sizeof(buf), fp)) { gboolean creategroup, dubious_homedir; char **fields, *homedir, *gidstring, *p; intmax_t imax; uid_t uid; gid_t gid; /* Strip off the end-of-line terminators. */ p = strchr(buf, '\r'); if (p != NULL) *p = '\0'; p = strchr(buf, '\n'); if (p != NULL) *p = '\0'; /* Make sure the line splits into *exactly* seven fields. */ fields = g_strsplit(buf, ":", 7); if (g_strv_length(fields) != 7) { fprintf(stderr, _("Error creating account for `%s': line " "improperly formatted.\n"), buf); g_strfreev(fields); continue; } errno = 0; imax = strtoimax(fields[2], &p, 10); if (errno != 0 || *p != 0 || p == fields[2] || (uid_t)imax != imax || (uid_t)imax == LU_VALUE_INVALID_ID) { g_print(_("Invalid user ID %s\n"), fields[2]); g_strfreev(fields); continue; } /* Sorry, but we're bastards here. No root accounts. */ uid = imax; if (uid == 0) { g_print(_("Refusing to create account with UID 0.\n")); g_strfreev(fields); continue; } /* Try to figure out if the field is the name of a group, or * a gid. If it's just empty, make it the same as the user's * name. FIXME: provide some way to set a default other than * the user's own name, like "users" or something. */ if (strlen(fields[3]) > 0) { gidstring = fields[3]; } else { gidstring = fields[0]; } /* Try to convert the field to a number. */ errno = 0; imax = strtoimax(gidstring, &p, 10); gid = LU_VALUE_INVALID_ID; if (errno != 0 || *p != '\0' || p == gidstring || (gid_t)imax != imax) { /* It's not a number, so it's a group name -- * see if it's being used. */ if (lu_group_lookup_name(ctx, gidstring, ent, &error)) { /* Retrieve the group's GID. */ gid = lu_ent_get_first_id(ent, LU_GIDNUMBER); creategroup = FALSE; } else { /* Mark that we need to create a group for the * user to be in. */ creategroup = TRUE; } } else { /* It's a group number -- see if it's being used. */ gid = imax; if (gid == LU_VALUE_INVALID_ID) { g_print(_("Invalid group ID %s\n"), gidstring); g_strfreev(fields); continue; } if (lu_group_lookup_id(ctx, gid, ent, &error)) { /* Retrieve the group's GID. */ gid = lu_ent_get_first_id(ent, LU_GIDNUMBER); creategroup = FALSE; } else { /* Mark that we need to create a group for the * user to be in. */ creategroup = TRUE; } } /* If we need to create a group, create a template group and * try to apply what the user has asked us to. */ if (creategroup) { /* If we got a GID, then we need to use the user's name, * otherwise we need to use the default group name. */ if (gid != LU_VALUE_INVALID_ID) { lu_group_default(ctx, fields[0], FALSE, ent); lu_ent_set_id(ent, LU_GIDNUMBER, gid); } else { lu_group_default(ctx, gidstring, FALSE, ent); } /* Try to create the group, and if it works, get its * GID, which we need to give to this user. */ if (lu_group_add(ctx, ent, &error)) { lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP); gid = lu_ent_get_first_id(ent, LU_GIDNUMBER); g_assert(gid != LU_VALUE_INVALID_ID); } else { /* Aargh! Abandon all hope. */ fprintf(stderr, _("Error creating group for `%s' with " "GID %jd: %s\n"), fields[0], imax, lu_strerror(error)); g_strfreev(fields); continue; } } /* Create a new user record, and set the user's primary GID. */ lu_user_default(ctx, fields[0], FALSE, ent); lu_ent_set_id(ent, LU_UIDNUMBER, uid); lu_ent_set_id(ent, LU_GIDNUMBER, gid); /* Set other fields if we've got them. */ if (strlen(fields[4]) > 0) lu_ent_set_string(ent, LU_GECOS, fields[4]); dubious_homedir = 0; if (strlen(fields[5]) > 0) { homedir = g_strdup(fields[5]); lu_ent_set_string(ent, LU_HOMEDIRECTORY, homedir); } else { const char *home; home = lu_ent_get_first_string(ent, LU_HOMEDIRECTORY); if (home != NULL) homedir = g_strdup(home); else { homedir = g_strconcat("/home/", fields[0], (const gchar *)NULL); if (strcmp(fields[0], ".") == 0 || strcmp(fields[0], "..") == 0) dubious_homedir = 1; } } if (strlen(fields[6]) > 0) lu_ent_set_string(ent, LU_LOGINSHELL, fields[6]); /* Now try to add the user's account. */ if (dubious_homedir) fprintf(stderr, _("Refusing to use dangerous home directory `%s' " "for %s by default\n"), homedir, fields[0]); else if (lu_user_add(ctx, ent, &error)) { lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); /* Unless the nocreatehomedirs flag was given, attempt * to create the user's home directory. */ if (!nocreatehome) { if (lu_homedir_populate(ctx, NULL, homedir, uid, gid, 0700, &error) == FALSE) { fprintf(stderr, _("Error creating home " "directory for %s: %s\n"), fields[0], lu_strerror(error)); if (error) { lu_error_free(&error); } } } /* Unless the nocreatemail flag was given, give the * user a mail spool. */ if (!nocreatemail) { if (!lu_mail_spool_create(ctx, ent, &error)) { fprintf(stderr, _("Error creating mail spool " "for %s: %s\n"), fields[0], lu_strerror(error)); if (error) { lu_error_free(&error); } } } /* Set the password after creating the home directory to prevent the user from seeing an incomplete home, and to prevent the user from interfering with the creation of the home directory. */ if (!lu_user_setpass(ctx, ent, fields[1], FALSE, &error)) { fprintf(stderr, _("Error setting initial password for " "%s: %s\n"), fields[0], lu_strerror(error)); if (error) { lu_error_free(&error); } } lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); } else { fprintf(stderr, _("Error creating user account for %s: %s\n"), fields[0], lu_strerror(error)); if (error) { lu_error_free(&error); } } g_free(homedir); g_strfreev(fields); lu_ent_clear_all(ent); lu_ent_clear_all(groupEnt); } lu_ent_free(groupEnt); lu_ent_free(ent); lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/luserdel.10000644000175000017500000000303412226342567016747 0ustar tzafrirtzafrir.\" A man page for luserdel .\" Copyright (C) 2005, 2009 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH luserdel 1 "May 2009" libuser .SH NAME luserdel \- Delete an user .SH SYNOPSIS luserdel [\fIOPTION\fR]... \fIuser\fR .SH DESCRIPTION Deletes the user with name \fIuser\fR. .SH OPTIONS .TP \fB\-G\fR, \fB\-\-dontremovegroup\fR By default the user's primary group is removed if it has group name \fIuser\fR (user's private group). This option disables this behavior. .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .TP \fB\-r\fR, \fB\-\-removehome\fR Remove user's home directory and mail spool after deleting the user. .SH EXIT STATUS The exit status is 0 on success, nonzero on error. libuser-0.60~dfsg/apps/lid.10000644000175000017500000000341612226342567015704 0ustar tzafrirtzafrir.\" A man page for lid .\" Copyright (C) 2005, 2007 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH lid 1 "Dec 6 2007" libuser .SH NAME lid \- Display user's groups or group's users .SH SYNOPSIS lid [\fIOPTION\fR]... [\fIname\fR] .SH DESCRIPTION Displays information about groups containing user \fIname\fR, or users contained in group \fIname\fR. By default .B lid lists groups containing user \fIname\fR, or groups containing the invoking user if \fIname\fR is not specified; the mode of operation can be changed using the \fB\-g\fR option. .SH OPTIONS .TP \fB\-g\fR, \fB\-\-group\fR List users in a group \fIname\fR, or in the invoking user's primary group if \fIname\fR is not specified. .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .TP \fB\-n\fR, \fB\-\-onlynames\fR List only group or user names. By default the corresponging user or group IDs are listed too. .SH EXIT STATUS The exit status is 0 on success, 1 on error. libuser-0.60~dfsg/apps/apputil.h0000644000175000017500000000207712226342567016703 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef apputil_h #define apputil_h #include #include "../lib/user.h" #ifndef _ #define _(String) gettext(String) #endif #ifndef N_ #define N_(String) (String) #endif void lu_authenticate_unprivileged(struct lu_context *ctx, const char *user, const char *appname) G_GNUC_INTERNAL; #endif libuser-0.60~dfsg/apps/lpasswd.c0000644000175000017500000001405112226342567016670 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include "../lib/user.h" #include "apputil.h" int main(int argc, const char **argv) { struct lu_context *ctx; struct lu_ent *ent; struct lu_error *error = NULL; char *password = NULL, *cryptedPassword = NULL; const char *user; int c; int plain_fd = -1, crypted_fd = -1; int interactive = 0, groupflag = 0; poptContext popt; gboolean is_crypted; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"group", 'g', POPT_ARG_NONE, &groupflag, 0, N_("set group password instead of user password"), NULL}, {"plainpassword", 'P', POPT_ARG_STRING, &password, 0, N_("new plain password"), N_("STRING")}, {"password", 'p', POPT_ARG_STRING, &cryptedPassword, 0, N_("new crypted password"), N_("STRING")}, {"plainpassword-fd", 'F', POPT_ARG_INT, &plain_fd, 0, N_("read new plain password from given descriptor"), N_("NUM")}, {"password-fd", 'f', POPT_ARG_INT, &crypted_fd, 0, N_("read new crypted password from given descriptor"), N_("NUM")}, POPT_AUTOHELP POPT_TABLEEND }; bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); popt = poptGetContext("lpasswd", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] user")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } user = poptGetArg(popt); if ((user == NULL) || (geteuid() != getuid())) { struct passwd *pwd; pwd = getpwuid(getuid()); if (pwd != NULL) { user = g_strdup(pwd->pw_name); fprintf(stderr, _("Changing password for %s.\n"), user); } else { fprintf(stderr, _("No user name specified.\n")); poptPrintUsage(popt, stderr, 0); return 1; } } poptFreeContext(popt); ctx = lu_start(user, groupflag ? lu_group : lu_user, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } lu_authenticate_unprivileged(ctx, user, "passwd"); if ((password == NULL) && (cryptedPassword == NULL) && (plain_fd == -1) && (crypted_fd == -1)) { do { struct lu_prompt prompts[2]; memset(&prompts, 0, sizeof(prompts)); prompts[0].key = "lpasswd/password1"; prompts[0].prompt = N_("New password"); prompts[0].domain = PACKAGE; prompts[1].key = "lpasswd/password2"; prompts[1].prompt = N_("New password (confirm)"); prompts[1].domain = PACKAGE; if (lu_prompt_console(prompts, G_N_ELEMENTS(prompts), NULL, &error)) { if (prompts[0].value && strlen(prompts[0].value) && prompts[1].value && strlen(prompts[1].value)) { if (strcmp(prompts[0].value, prompts[1].value) == 0) { password = g_strdup(prompts[0].value); prompts[0].free_value(prompts[0].value); prompts[1].free_value(prompts[1].value); } else { fprintf(stderr, _("Passwords " "do not match, try " "again.\n")); } } else { fprintf(stderr, _("Password change " "canceled.\n")); return 1; } } if (error) { lu_error_free(&error); } } while (password == NULL); } ent = lu_ent_new(); if (!groupflag) { if (lu_user_lookup_name(ctx, user, ent, &error) == FALSE) { fprintf(stderr, _("User %s does not exist.\n"), user); return 2; } } else { if (lu_group_lookup_name(ctx, user, ent, &error) == FALSE) { fprintf(stderr, _("Group %s does not exist.\n"), user); return 2; } } if (plain_fd != -1) { char buf[LINE_MAX + 1]; ssize_t i; i = read(plain_fd, buf, sizeof(buf) - 1); if (i < 0) { fprintf(stderr, _("Error reading from file descriptor %d.\n"), plain_fd); return 1; } while ((i > 0) && ((buf[i - 1] == '\r') || (buf[i - 1] == '\n'))) i--; buf[i] = '\0'; password = g_strdup(buf); is_crypted = FALSE; } else if (crypted_fd != -1) { char buf[LINE_MAX + 1]; ssize_t i; i = read(crypted_fd, buf, sizeof(buf) - 1); if (i < 0) { fprintf(stderr, _("Error reading from file descriptor %d.\n"), crypted_fd); return 1; } while ((i > 0) && ((buf[i - 1] == '\r') || (buf[i - 1] == '\n'))) i--; buf[i] = '\0'; password = g_strdup(buf); is_crypted = TRUE; } else if (cryptedPassword != NULL) { password = g_strdup(cryptedPassword); is_crypted = TRUE; } else { is_crypted = FALSE; /* the password variable is already set */ } if (!groupflag) { if (lu_user_setpass(ctx, ent, password, is_crypted, &error) == FALSE) { fprintf(stderr, _("Error setting password for user " "%s: %s.\n"), user, lu_strerror(error)); return 3; } lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); } else { if (lu_group_setpass(ctx, ent, password, is_crypted, &error) == FALSE) { fprintf(stderr, _("Error setting password for group " "%s: %s.\n"), user, lu_strerror(error)); return 3; } lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP); } lu_ent_free(ent); lu_end(ctx); fprintf(stderr, _("Password changed.\n")); return 0; } libuser-0.60~dfsg/apps/lnewusers.10000644000175000017500000000515412226342567017164 0ustar tzafrirtzafrir.\" A man page for lnewusers .\" Copyright (C) 2005, 2008 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH lnewusers 1 "Jul 13 2008" libuser .SH NAME lnewusers \- Create new user accounts .SH SYNOPSIS lnewusers [\fIOPTION\fR]... .SH DESCRIPTION Creates new user accounts using data read from standard input. The input data consists of lines, each line has 7 colon-separated fields: .IP "User name" .IP "Plaintext password" .IP "User ID" .B lnewusers refuses to create users with user ID 0 (the \fBroot\fR user ID). .IP Group If this field is a valid group ID, it is interpreted as a group ID, otherwise as a group name. If the field is empty, a group name equal to user name is used. If the specified group does not exist, it is automatically created. If the group is specified with a group ID, the created group has group name equal to the user name. .IP \f[SM]GECOS\fR The \f[SM]GECOS\fR field is traditionally used to store user's real name and other information. .IP "Home directory" If this field is empty, a default specified by .B libuser configuration, or \fB/home/\fIusername\fR if .B libuser configuration does not specify a default, is used. .IP "Login shell" If this field is empty, a default specified by .B libuser configuration is used. .PP Errors in user specifications are reported and processing continues on the next line. .SH OPTIONS .TP \fB\-f\fR, \fB\-\-file\fR=\fIfile\fR Read account data from \fIfile\fR instead of standard input. .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .TP \fB\-M\fR, \fB\-\-nocreatehome\fR Don't create home directories. .TP \fB\-n\fR, \fB\-\-nocreatemail\fR Don't create mail spool files. .SH EXIT STATUS The exit status is 0 on success, nonzero on fatal error. Errors in user specifications are not reflected in the exit status. libuser-0.60~dfsg/apps/luseradd.c0000644000175000017500000002347712226342567017032 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004, 2006, 2009 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include "../lib/user_private.h" #include "apputil.h" int main(int argc, const char **argv) { const char *userPassword = NULL, *cryptedUserPassword = NULL, *gecos = NULL, *homeDirectory = NULL, *loginShell = NULL, *skeleton = NULL, *name, *gid = NULL, *uid_number_str = NULL, *commonName = NULL, *givenName = NULL, *surname = NULL, *roomNumber = NULL, *telephoneNumber = NULL, *homePhone = NULL; struct lu_context *ctx; struct lu_ent *ent, *groupEnt; struct lu_error *error = NULL; uid_t uidNumber = LU_VALUE_INVALID_ID; gid_t gidNumber; int dont_create_group = FALSE, dont_create_home = FALSE, system_account = FALSE, interactive = FALSE, create_group; int c; intmax_t imax; char *p; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"reserved", 'r', POPT_ARG_NONE, &system_account, 0, N_("create a system user"), NULL}, {"gecos", 'c', POPT_ARG_STRING, &gecos, 0, N_("GECOS information for new user"), N_("STRING")}, {"directory", 'd', POPT_ARG_STRING, &homeDirectory, 0, N_("home directory for new user"), N_("STRING")}, {"skeleton", 'k', POPT_ARG_STRING, &skeleton, 0, N_("directory with files for the new user"), N_("STRING")}, {"shell", 's', POPT_ARG_STRING, &loginShell, 0, N_("shell for new user"), N_("STRING")}, {"uid", 'u', POPT_ARG_STRING, &uid_number_str, 0, N_("uid for new user"), N_("NUM")}, {"gid", 'g', POPT_ARG_STRING, &gid, 0, N_("group for new user"), N_("STRING")}, {"nocreatehome", 'M', POPT_ARG_NONE, &dont_create_home, 0, N_("don't create home directory for user"), NULL}, {"nocreategroup", 'n', POPT_ARG_NONE, &dont_create_group, 0, N_("don't create group with same name as user"), NULL}, {"plainpassword", 'P', POPT_ARG_STRING, &userPassword, 0, N_("plaintext password for use with group"), N_("STRING")}, {"password", 'p', POPT_ARG_STRING, &cryptedUserPassword, 0, N_("pre-hashed password for use with group"), N_("STRING")}, {"commonname", 0, POPT_ARG_STRING, &commonName, 0, N_("common name for new user"), N_("STRING")}, {"givenname", 0, POPT_ARG_STRING, &givenName, 0, N_("given name for new user"), N_("STRING")}, {"surname", 0, POPT_ARG_STRING, &surname, 0, N_("surname for new user"), N_("STRING")}, {"roomnumber", 0, POPT_ARG_STRING, &roomNumber, 0, N_("room number for new user"), N_("STRING")}, {"telephonenumber", 0, POPT_ARG_STRING, &telephoneNumber, 0, N_("telephone number for new user"), N_("STRING")}, {"homephone", 0, POPT_ARG_STRING, &homePhone, 0, N_("home telephone number for new user"), N_("STRING")}, POPT_AUTOHELP POPT_TABLEEND }; /* Initialize i18n. */ bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); /* Parse command-line arguments. */ popt = poptGetContext("luseradd", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] user")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); exit(1); } /* Force certain flags one way or another. */ if (system_account) { dont_create_home = TRUE; } /* We require at least the user's name (I suppose we could just * make one up, but that could get weird). */ name = poptGetArg(popt); if (name == NULL) { fprintf(stderr, _("No user name specified.\n")); poptPrintUsage(popt, stderr, 0); return 1; } if (uid_number_str != NULL) { errno = 0; imax = strtoimax(uid_number_str, &p, 10); if (errno != 0 || *p != 0 || p == uid_number_str || (uid_t)imax != imax || (uid_t)imax == LU_VALUE_INVALID_ID) { fprintf(stderr, _("Invalid user ID %s\n"), uid_number_str); poptPrintUsage(popt, stderr, 0); return 1; } uidNumber = imax; } poptFreeContext(popt); /* Initialize the library. */ ctx = lu_start(NULL, 0, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); return 1; } /* Select a group name for the user to be in. */ if (gid == NULL) { if (dont_create_group) gid = "users"; else gid = name; /* Consider "gid" a group name even if it is composed of digits. */ gidNumber = LU_VALUE_INVALID_ID; } else { /* Try to convert the given GID to a number. */ errno = 0; imax = strtoimax(gid, &p, 10); if (errno == 0 && *p == 0 && p != gid && (gid_t)imax == imax) { gidNumber = imax; if (gidNumber == LU_VALUE_INVALID_ID) { fprintf(stderr, _("Invalid group ID %s\n"), gid); return 1; } } else /* It's not a number, so it's a group name. */ gidNumber = LU_VALUE_INVALID_ID; } /* Check if the group exists. */ groupEnt = lu_ent_new(); if (gidNumber == LU_VALUE_INVALID_ID) { if (lu_group_lookup_name(ctx, gid, groupEnt, &error)) { /* Retrieve the group's GID. */ gidNumber = lu_ent_get_first_id(groupEnt, LU_GIDNUMBER); g_assert(gidNumber != LU_VALUE_INVALID_ID); create_group = FALSE; } else { /* No such group, we need to create one. */ create_group = TRUE; } } else { if (lu_group_lookup_id(ctx, gidNumber, groupEnt, &error)) { create_group = FALSE; } else { fprintf(stderr, _("Group %jd does not exist\n"), (intmax_t)gidNumber); return 1; } } if (create_group) { g_assert(gidNumber == LU_VALUE_INVALID_ID); if (error) lu_error_free(&error); /* Create the group template. */ lu_group_default(ctx, gid, FALSE, groupEnt); /* Try to add the group. */ if (lu_group_add(ctx, groupEnt, &error)) lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP); else { /* Aargh! Abandon all hope. */ fprintf(stderr, _("Error creating group `%s': %s\n"), gid, lu_strerror(error)); if (error) { lu_error_free(&error); } lu_end(ctx); return 1; } } /* Retrieve the group ID. */ gidNumber = lu_ent_get_first_id(groupEnt, LU_GIDNUMBER); if (gidNumber == LU_VALUE_INVALID_ID) { fprintf(stderr, _("Error creating group `%s': %s\n"), gid, lu_strerror(error)); if (error) { lu_error_free(&error); } lu_end(ctx); return 1; } g_assert(gidNumber != LU_VALUE_INVALID_ID); lu_ent_free(groupEnt); /* Create the user record. */ ent = lu_ent_new(); lu_user_default(ctx, name, system_account, ent); /* Modify the default UID if we had one passed in. */ if (uidNumber != LU_VALUE_INVALID_ID) lu_ent_set_id(ent, LU_UIDNUMBER, uidNumber); /* Use the GID we've created, or the one which was passed in. */ if (gidNumber != LU_VALUE_INVALID_ID) lu_ent_set_id(ent, LU_GIDNUMBER, gidNumber); #define PARAM(ATTR, VAR) \ if ((VAR) != NULL) \ lu_ent_set_string(ent, (ATTR), (VAR)); PARAM(LU_GECOS, gecos); PARAM(LU_HOMEDIRECTORY, homeDirectory); PARAM(LU_LOGINSHELL, loginShell); PARAM(LU_COMMONNAME, commonName); PARAM(LU_GIVENNAME, givenName); PARAM(LU_SN, surname); PARAM(LU_ROOMNUMBER, roomNumber); PARAM(LU_TELEPHONENUMBER, telephoneNumber); PARAM(LU_HOMEPHONE, homePhone); #undef PARAM /* Moment-of-truth time. */ if (lu_user_add(ctx, ent, &error) == FALSE) { fprintf(stderr, _("Account creation failed: %s.\n"), lu_strerror(error)); return 3; } lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); /* If we don't have the the don't-create-home flag, create the user's * home directory. */ if (!dont_create_home) { /* Read the user's UID. */ uidNumber = lu_ent_get_first_id(ent, LU_UIDNUMBER); g_assert(uidNumber != LU_VALUE_INVALID_ID); /* Read the user's GID. */ gidNumber = lu_ent_get_first_id(ent, LU_GIDNUMBER); g_assert(gidNumber != LU_VALUE_INVALID_ID); /* Read the user's home directory. */ homeDirectory = lu_ent_get_first_string(ent, LU_HOMEDIRECTORY); if (lu_homedir_populate(ctx, skeleton, homeDirectory, uidNumber, gidNumber, 0700, &error) == FALSE) { fprintf(stderr, _("Error creating %s: %s.\n"), homeDirectory, lu_strerror(error)); return 7; } /* Create a mail spool for the user. */ if (lu_mail_spool_create(ctx, ent, &error) != TRUE) { fprintf(stderr, _("Error creating mail spool: %s\n"), lu_strerror(error)); return 8; } } /* Set the password after creating the home directory to prevent the user from seeing an incomplete home, and to prevent the user from interfering with the creation of the home directory. */ if (userPassword != NULL) { if (lu_user_setpass(ctx, ent, userPassword, FALSE, &error) == FALSE) { fprintf(stderr, _("Error setting password for user " "%s: %s.\n"), name, lu_strerror(error)); return 3; } } if (cryptedUserPassword != NULL) { if (lu_user_setpass(ctx, ent, cryptedUserPassword, TRUE, &error) == FALSE) { fprintf(stderr, _("Error setting password for user " "%s: %s.\n"), name, lu_strerror(error)); return 3; } } lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD); lu_ent_free(ent); lu_end(ctx); return 0; } libuser-0.60~dfsg/apps/lchsh.10000644000175000017500000000311312226342567016227 0ustar tzafrirtzafrir.\" A man page for lchsh .\" Copyright (C) 2004 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH lchsh 1 "Sep 20 2004" libuser .SH NAME lchsh \- Change login shell .SH SYNOPSIS lchsh [\fIOPTION\fR]... [\fIuser\fR] .SH DESCRIPTION Displays and allows changing login shell of \fIuser\fR. If the \fIuser\fR argument is not provided, username of the invoking user is used; the \fIuser\fR argument is ignored if .B lchsh is run set-uid to a different user. Entering an empty string (by pressing Enter) at the "New Shell" prompt is interpreted as accepting the current value. .SH OPTIONS .TP \fB\-i\fR, \fB\-\-interactive\fR Ask all questions when connecting to the user database, even if default answers are set up in .B libuser configuration. .SH EXIT STATUS The exit status is 0 on success, 1 on error. .SH BUGS .B lchsh ignores \fI/etc/shells\fR. libuser-0.60~dfsg/python/0000755000175000017500000000000012226342602015412 5ustar tzafrirtzafrirlibuser-0.60~dfsg/python/debug.h0000644000175000017500000000144012226342570016654 0ustar tzafrirtzafrir#ifndef debug_h #define debug_h #include #undef DEBUG_BINDING #ifdef DEBUG #define DEBUG_BINDING #endif #ifdef DEBUG_BINDING static int indent = 0; static char *getindent() { static char buf[LINE_MAX]; g_return_val_if_fail(indent < sizeof(buf), ""); memset(buf, 0, sizeof(buf)); memset(buf, ' ', indent); return buf; } #define DEBUG_ENTRY {\ fprintf(stderr, "%sEntering `%s' at line %d.\n", \ getindent(), __FUNCTION__, __LINE__); \ indent++; \ } #define DEBUG_CALL {\ fprintf(stderr, "%sIn `%s' at line %d.\n", \ getindent(), __FUNCTION__, __LINE__); \ } #define DEBUG_EXIT {\ indent--; \ fprintf(stderr, "%sLeaving `%s' at line %d.\n", \ getindent(), __FUNCTION__, __LINE__); \ } #else #define DEBUG_ENTRY #define DEBUG_CALL #define DEBUG_EXIT #endif #endif libuser-0.60~dfsg/python/common.h0000644000175000017500000000270512226342570017063 0ustar tzafrirtzafrir#ifndef common_h #define common_h #include #include "../lib/user.h" #include "debug.h" /* FIXME: remove this when dropping Python < 2.5 compatibility */ #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) typedef int Py_ssize_t; #endif struct libuser_admin { PyObject_HEAD PyObject *prompt_data[2]; struct lu_context *ctx; }; struct libuser_entity { PyObject_HEAD struct lu_ent *ent; }; struct libuser_prompt { PyObject_HEAD struct lu_prompt prompt; }; static PyTypeObject EntityType; static PyTypeObject AdminType; static PyTypeObject PromptType; static PyObject *libuser_admin_new(PyObject *self, PyObject *args, PyObject *kwargs); static gboolean libuser_admin_python_prompter(struct lu_prompt *prompts, int count, gpointer callback_data, struct lu_error **error); static PyObject *libuser_admin_prompt_console(PyObject *self, PyObject *args, PyObject *kwargs); static PyObject *libuser_admin_prompt_console_quiet(PyObject *self, PyObject *args, PyObject *kwargs); static PyObject *convert_value_array_pylist(GValueArray *array); static PyObject *convert_ent_array_pylist(GPtrArray *array); static PyObject *libuser_prompt_new(PyObject *ignored_self, PyObject *ignore); static PyObject *libuser_get_user_shells(PyObject *self, PyObject *ignored); static PyObject *libuser_wrap_ent(struct lu_ent *ent); void initlibuser(void); #endif libuser-0.60~dfsg/python/admin.c0000644000175000017500000012724012226342570016660 0ustar tzafrirtzafrir/* Copyright (C) 2001, 2002, 2004, 2006 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include "common.h" #include "../lib/user.h" #include "../lib/user_private.h" #include "../apps/apputil.h" /* Boilerplate for the admin object, which wraps a libuser context. */ static PyMethodDef libuser_admin_user_methods[]; static PyMethodDef libuser_admin_group_methods[]; static PyMethodDef libuser_admin_methods[]; static PyTypeObject AdminType; #define Admin_Check(__x) ((__x)->ob_type == &AdminType) /* Destroy the object. */ static void libuser_admin_destroy(PyObject *self) { struct libuser_admin *me = (struct libuser_admin *) self; size_t i; DEBUG_ENTRY; /* Free the context. */ if (me->ctx != NULL) { lu_end(me->ctx); me->ctx = NULL; } /* Free the prompt data. */ for (i = 0; i < sizeof(me->prompt_data) / sizeof(me->prompt_data[0]); i++) { if (me->prompt_data[i]) { Py_DECREF(me->prompt_data[i]); } me->prompt_data[i] = NULL; } /* Delete the python object. */ PyObject_DEL(self); DEBUG_EXIT; } /* Get an attribute of the admin object. */ static PyObject * libuser_admin_getattr(PyObject *self, char *name) { struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* The prompting function. */ if (strcmp(name, "prompt") == 0) { Py_INCREF(me->prompt_data[0]); DEBUG_EXIT; return me->prompt_data[0]; } /* The prompting function's arguments. */ if (strcmp(name, "prompt_args") == 0) { Py_INCREF(me->prompt_data[1]); DEBUG_EXIT; return me->prompt_data[1]; } /* Random other methods or members. */ #ifdef DEBUG_BINDING fprintf(stderr, "Searching for attribute `%s'\n", name); #endif DEBUG_EXIT; return Py_FindMethod(libuser_admin_methods, (PyObject *) self, name); } /* Set an attribute in the admin object. */ static int libuser_admin_setattr(PyObject *self, char *attr, PyObject *args) { struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; #ifdef DEBUG_BINDING fprintf(stderr, "%sSetting attribute `%s'\n", getindent(), attr); #endif /* The prompting function. */ if (strcmp(attr, "prompt") == 0) { /* If it's a wrapped up function, set the first prompt data * to the function, and the second to an empty tuple. */ if (PyCFunction_Check(args)) { Py_DECREF(me->prompt_data[0]); Py_DECREF(me->prompt_data[1]); me->prompt_data[0] = args; Py_INCREF(me->prompt_data[0]); me->prompt_data[1] = Py_None; Py_INCREF(me->prompt_data[0]); } /* If it's a tuple, the first item is the function, and the * rest are arguments to pass to it. */ if (PyTuple_Check(args)) { Py_DECREF(me->prompt_data[0]); Py_DECREF(me->prompt_data[1]); me->prompt_data[0] = PyTuple_GetItem(args, 0); Py_INCREF(me->prompt_data[0]); me->prompt_data[1] = PyTuple_GetSlice(args, 1, PyTuple_Size(args)); } DEBUG_EXIT; return 0; } /* If it's just prompting arguments, save them as the second chunk of * prompting data. */ if (strcmp(attr, "prompt_args") == 0) { Py_DECREF(me->prompt_data[1]); me->prompt_data[1] = args; Py_INCREF(me->prompt_data[1]); DEBUG_EXIT; return 0; } PyErr_SetString(PyExc_AttributeError, "no such writable attribute"); DEBUG_EXIT; return -1; } /* Look up a user by name. */ static PyObject * libuser_admin_lookup_user_name(PyObject *self, PyObject *args, PyObject *kwargs) { char *arg; struct lu_ent *ent; struct lu_error *error = NULL; char *keywords[] = { "name", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* We expect a single string (no mapping shenanigans here). */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s", keywords, &arg)) { DEBUG_EXIT; return NULL; } /* Create the entity to return, and look it up. */ ent = lu_ent_new(); if (lu_user_lookup_name(me->ctx, arg, ent, &error)) { /* Wrap it up, and return it. */ DEBUG_EXIT; return libuser_wrap_ent(ent); } else { /* No such user. Clean up and bug out. */ if (error) lu_error_free(&error); lu_ent_free(ent); DEBUG_EXIT; Py_RETURN_NONE; } } /* Look up a user give the UID. */ static PyObject * libuser_admin_lookup_user_id(PyObject *self, PyObject *args, PyObject *kwargs) { PY_LONG_LONG arg; struct lu_ent *ent; struct lu_error *error = NULL; char *keywords[] = { "id", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* We expect a single string (no mapping shenanigans here). */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "L", keywords, &arg)) { DEBUG_EXIT; return NULL; } if ((uid_t)arg != arg) { PyErr_SetString(PyExc_OverflowError, "UID out of range"); DEBUG_EXIT; return NULL; } ent = lu_ent_new(); if (lu_user_lookup_id(me->ctx, arg, ent, &error)) { /* Wrap it up, and return it. */ DEBUG_EXIT; return libuser_wrap_ent(ent); } else { /* No such user. Clean up and bug out. */ if (error != NULL) lu_error_free(&error); lu_ent_free(ent); DEBUG_EXIT; Py_RETURN_NONE; } } /* Look up a group by name. */ static PyObject * libuser_admin_lookup_group_name(PyObject *self, PyObject *args, PyObject *kwargs) { char *arg; struct lu_ent *ent; struct lu_error *error = NULL; char *keywords[] = { "name", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Expect a string. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s", keywords, &arg)) { DEBUG_EXIT; return NULL; } /* Try to look up this user. */ ent = lu_ent_new(); if (lu_group_lookup_name(me->ctx, arg, ent, &error)) { /* Got you! Wrap and return. */ DEBUG_EXIT; return libuser_wrap_ent(ent); } else { /* We've got nothing. Return nothing. */ if (error != NULL) lu_error_free(&error); lu_ent_free(ent); DEBUG_EXIT; Py_RETURN_NONE; } } /* Look up a group by ID. */ static PyObject * libuser_admin_lookup_group_id(PyObject *self, PyObject *args, PyObject *kwargs) { PY_LONG_LONG arg; struct lu_ent *ent; struct lu_error *error = NULL; char *keywords[] = { "id", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Expect a number. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "L", keywords, &arg)) { DEBUG_EXIT; return NULL; } if ((gid_t)arg != arg) { PyErr_SetString(PyExc_OverflowError, "GID out of range"); DEBUG_EXIT; return NULL; } /* Try to look up the group. */ ent = lu_ent_new(); if (lu_group_lookup_id(me->ctx, arg, ent, &error)) { /* Wrap the answer up. */ DEBUG_EXIT; return libuser_wrap_ent(ent); } else { /* Clean up and exit, we have nothing to return. */ if (error != NULL) lu_error_free(&error); lu_ent_free(ent); DEBUG_EXIT; Py_RETURN_NONE; } } /* Create a template user object. */ static PyObject * libuser_admin_init_user(PyObject *self, PyObject *args, PyObject *kwargs) { char *arg; int is_system = 0; struct lu_ent *ent; char *keywords[] = { "name", "is_system", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* We expect a string and an optional flag indicating that the * user will be a system user. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|i", keywords, &arg, &is_system)) { DEBUG_EXIT; return NULL; } /* Create a new user object for the user name, and return it. */ ent = lu_ent_new(); lu_user_default(me->ctx, arg, is_system, ent); DEBUG_EXIT; return libuser_wrap_ent(ent); } /* Create a group object. */ static PyObject * libuser_admin_init_group(PyObject *self, PyObject *args, PyObject *kwargs) { char *arg; int is_system = 0; struct lu_ent *ent; char *keywords[] = { "name", "is_system", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Expect a string and a flag indicating that the group is to be a * system group. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|i", keywords, &arg, &is_system)) { DEBUG_EXIT; return NULL; } /* Create a defaulted group by this name, and wrap it up. */ ent = lu_ent_new(); lu_group_default(me->ctx, arg, is_system, ent); DEBUG_EXIT; return libuser_wrap_ent(ent); } /* Run the given function. If the function fails, raise an error. */ static PyObject * libuser_admin_do_wrap(PyObject *self, struct libuser_entity *ent, gboolean (*fn) (struct lu_context *, struct lu_ent *, struct lu_error ** error)) { struct lu_error *error = NULL; struct libuser_admin *me = (struct libuser_admin *)self; DEBUG_ENTRY; /* Try running the function. */ if (fn(me->ctx, ent->ent, &error)) { /* It succeeded! Return truth. */ DEBUG_EXIT; return PyInt_FromLong(1); } else { /* It failed. Build an exception and return an error. */ PyErr_SetString(PyExc_RuntimeError, lu_strerror(error)); if (error) lu_error_free(&error); DEBUG_EXIT; return NULL; } } /* Run the given function, using a Python entity passed in as the first * argument to the function. If the function fails, raise an error. */ static PyObject * libuser_admin_wrap(PyObject *self, PyObject *args, PyObject *kwargs, gboolean(*fn) (struct lu_context *, struct lu_ent *, struct lu_error ** error)) { PyObject *ent; char *keywords[] = { "entity", NULL }; PyObject *ret; DEBUG_ENTRY; /* Expect a Python Entity object and maybe some other stuff we * don't really care about. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!", keywords, &EntityType, &ent)) { DEBUG_EXIT; return NULL; } ret = libuser_admin_do_wrap(self, (struct libuser_entity *)ent, fn); DEBUG_EXIT; return ret; } /* Run the given function, using a Python entity passed in as the first * argument to the function. Return a 1 or 0 depending on the boolean * returned by the function. */ static PyObject * libuser_admin_wrap_boolean(PyObject *self, PyObject *args, PyObject *kwargs, gboolean(*fn) (struct lu_context *, struct lu_ent *, struct lu_error ** error)) { struct libuser_entity *ent; struct lu_error *error = NULL; char *keywords[] = { "entity", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; gboolean ret; DEBUG_ENTRY; /* Expect a Python Entity object and maybe some other stuff we * don't really care about. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!", keywords, &EntityType, &ent)) { DEBUG_EXIT; return NULL; } /* Run the function. */ ret = fn(me->ctx, ent->ent, &error); if (error != NULL) lu_error_free(&error); DEBUG_EXIT; return PyInt_FromLong(ret ? 1 : 0); } /* Wrap the setpass function for either type of entity. */ static PyObject * libuser_admin_setpass(PyObject *self, PyObject *args, PyObject *kwargs, gboolean(*fn) (struct lu_context *, struct lu_ent *, const char *, gboolean, struct lu_error **)) { struct libuser_entity *ent; struct lu_error *error = NULL; PyObject *is_crypted = NULL; const char *password = NULL; char *keywords[] = { "entity", "password", "is_crypted", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* We expect an entity object and a string. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!sO", keywords, &EntityType, &ent, &password, &is_crypted)) { DEBUG_EXIT; return NULL; } /* Call the appropriate setpass function for this entity. */ if (fn(me->ctx, ent->ent, password, ((is_crypted != NULL) && (PyObject_IsTrue(is_crypted))), &error)) { /* The change succeeded. Return a truth. */ DEBUG_EXIT; return PyInt_FromLong(1); } else { /* The change failed. Return an error. */ PyErr_SetString(PyExc_SystemError, lu_strerror(error)); if (error) { lu_error_free(&error); } DEBUG_EXIT; return NULL; } } /* Create a home directory for a user. */ static PyObject * libuser_admin_create_home(PyObject *self, PyObject *args, PyObject *kwargs) { struct libuser_entity *ent = NULL; struct lu_context *context; const char *dir, *skeleton = NULL; char *keywords[] = { "home", "skeleton", NULL }; uid_t uidNumber = 0; gid_t gidNumber = 0; struct lu_error *error = NULL; (void)self; DEBUG_ENTRY; context = ((struct libuser_admin *)self)->ctx; /* Expect an object and a string. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!|s", keywords, &EntityType, &ent, &skeleton)) { DEBUG_EXIT; return NULL; } /* Get the user's home directory value. */ dir = lu_ent_get_first_string(ent->ent, LU_HOMEDIRECTORY); if (dir == NULL) { PyErr_SetString(PyExc_KeyError, "user does not have a `" LU_HOMEDIRECTORY "' attribute"); return NULL; } /* Get the user's UID. */ uidNumber = lu_ent_get_first_id(ent->ent, LU_UIDNUMBER); if (uidNumber == LU_VALUE_INVALID_ID) { PyErr_SetString(PyExc_KeyError, "user does not have a `" LU_UIDNUMBER "' attribute"); return NULL; } /* Get the user's GID. */ gidNumber = lu_ent_get_first_id(ent->ent, LU_GIDNUMBER); if (gidNumber == LU_VALUE_INVALID_ID) { PyErr_SetString(PyExc_KeyError, "user does not have a `" LU_GIDNUMBER "' attribute"); return NULL; } /* Attempt to populate the directory. */ if (lu_homedir_populate(context, skeleton, dir, uidNumber, gidNumber, 0700, &error)) { /* Success -- return an empty tuple. */ DEBUG_EXIT; return PyInt_FromLong(1); } else { /* Failure. Mark the error. */ PyErr_SetString(PyExc_RuntimeError, error ? error->string : _("error creating home directory for user")); if (error) { lu_error_free(&error); } DEBUG_EXIT; return NULL; } } /* Remove a user's home directory. */ static PyObject * libuser_admin_remove_home(PyObject *self, PyObject *args, PyObject *kwargs) { struct libuser_entity *ent = NULL; char *keywords[] = { "home", NULL }; struct lu_error *error = NULL; (void)self; DEBUG_ENTRY; /* We expect an object. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!", keywords, &EntityType, &ent)) { DEBUG_EXIT; return NULL; } /* Remove the directory. */ if (lu_homedir_remove_for_user(ent->ent, &error)) { /* Successfully removed. */ DEBUG_EXIT; return PyInt_FromLong(1); } else { /* Removal failed. You'll have to come back for repeated * treatments. */ PyErr_SetString(PyExc_RuntimeError, error ? error->string : _("error removing home directory for user")); if (error) { lu_error_free(&error); } DEBUG_EXIT; return NULL; } } /* Remove a user's home directory if it is owned by them. */ static PyObject * libuser_admin_remove_home_if_owned(PyObject *self, PyObject *args, PyObject *kwargs) { struct libuser_entity *ent = NULL; char *keywords[] = { "user", NULL }; struct lu_error *error = NULL; (void)self; DEBUG_ENTRY; /* We expect an object. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!", keywords, &EntityType, &ent)) { DEBUG_EXIT; return NULL; } /* Remove the directory. */ if (lu_homedir_remove_for_user_if_owned(ent->ent, &error)) { /* Successfully removed. */ DEBUG_EXIT; return PyInt_FromLong(1); } else { /* Removal failed. You'll have to come back for repeated * treatments. */ PyErr_SetString(PyExc_RuntimeError, error ? error->string : _("error removing home directory for user")); if (error) { lu_error_free(&error); } DEBUG_EXIT; return NULL; } } /* Move a user's home directory somewhere else. */ static PyObject * libuser_admin_move_home(PyObject *self, PyObject *args, PyObject *kwargs) { struct libuser_entity *ent = NULL; const char *olddir = NULL, *newdir = NULL; char *keywords[] = { "entity", "newhome", NULL }; struct lu_error *error = NULL; (void)self; DEBUG_ENTRY; /* We expect an object and an optional string. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!|s", keywords, &EntityType, &ent, &newdir)) { DEBUG_EXIT; return NULL; } if (newdir != NULL) { /* We were given a string, so move the user's home directory * to the new location. */ olddir = lu_ent_get_first_string(ent->ent, LU_HOMEDIRECTORY); if (olddir == NULL) { PyErr_SetString(PyExc_KeyError, "user does not have a current `" LU_HOMEDIRECTORY "' attribute"); return NULL; } } else { /* We weren't given a string, so use the current and pending * values, and move from one to the other. */ olddir = lu_ent_get_first_string_current(ent->ent, LU_HOMEDIRECTORY); if (olddir == NULL) { PyErr_SetString(PyExc_KeyError, "user does not have a current `" LU_HOMEDIRECTORY "' attribute"); return NULL; } /* Now read the pending directory. */ newdir = lu_ent_get_first_string(ent->ent, LU_HOMEDIRECTORY); if (newdir == NULL) { PyErr_SetString(PyExc_KeyError, "user does not have a pending `" LU_HOMEDIRECTORY "' attribute"); return NULL; } } /* Attempt the move. */ if (lu_homedir_move(olddir, newdir, &error)) { /* Success! */ DEBUG_EXIT; return PyInt_FromLong(1); } else { /* Failure. Set an error. */ PyErr_SetString(PyExc_RuntimeError, error ? error->string : _("error moving home directory for user")); if (error) { lu_error_free(&error); } DEBUG_EXIT; return NULL; } } /* Create a user's mail spool. */ static PyObject * libuser_admin_create_remove_mail(PyObject *self, PyObject *args, PyObject *kwargs, gboolean action) { struct libuser_entity *ent = NULL; char *keywords[] = { "entity", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; struct lu_error *error; gboolean res; DEBUG_ENTRY; /* We expect an Entity object. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!", keywords, &EntityType, &ent)) { DEBUG_EXIT; return NULL; } /* Now just pass it to the internal function. */ error = NULL; if (action) res = lu_mail_spool_create(me->ctx, ent->ent, &error); else res = lu_mail_spool_remove(me->ctx, ent->ent, &error); if (res) { return PyInt_FromLong(1); } else { PyErr_SetString(PyExc_RuntimeError, lu_strerror(error)); if (error != NULL) lu_error_free(&error); return NULL; } } /* Create a user's mail spool. */ static PyObject * libuser_admin_create_mail(PyObject *self, PyObject *args, PyObject *kwargs) { return libuser_admin_create_remove_mail(self, args, kwargs, TRUE); } /* Destroy a user's mail spool. */ static PyObject * libuser_admin_remove_mail(PyObject *self, PyObject *args, PyObject *kwargs) { return libuser_admin_create_remove_mail(self, args, kwargs, FALSE); } /* Add a user. */ static PyObject * libuser_admin_add_user(PyObject *self, PyObject *args, PyObject *kwargs) { PyObject *ret = NULL; PyObject *mkhomedir = self; PyObject *mkmailspool = self; PyObject *skeleton = NULL; struct libuser_entity *ent = NULL; struct lu_context *context = NULL; char *keywords[] = { "entity", "mkhomedir", "mkmailspool", "skeleton", NULL }; DEBUG_ENTRY; context = ((struct libuser_admin *)self)->ctx; /* Expect an entity and a flag to tell us if we need to create the * user's home directory. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!|OOO", keywords, &EntityType, &ent, &mkhomedir, &mkmailspool, &skeleton)) { DEBUG_EXIT; return NULL; } /* Pass the entity object to lu_user_add(). */ ret = libuser_admin_do_wrap(self, ent, lu_user_add); if (ret != NULL && mkhomedir != NULL && PyObject_IsTrue(mkhomedir)) { PyObject *subargs, *subkwargs; Py_DECREF(ret); /* Create the user's home directory we need to pass the entity structure in a tuple, so create a tuple * and add just that object to it. */ subargs = PyTuple_New(1); Py_INCREF(ent); PyTuple_SetItem(subargs, 0, (PyObject*) ent); /* Create a dictionary for keyword args. */ subkwargs = PyDict_New(); if (skeleton != NULL) { Py_INCREF(skeleton); PyDict_SetItemString(subkwargs, "skeleton", skeleton); } /* We'll return the result of the creation call. */ ret = libuser_admin_create_home(self, subargs, subkwargs); Py_DECREF(subargs); Py_DECREF(subkwargs); } if (ret != NULL && mkmailspool != NULL && PyObject_IsTrue(mkmailspool)) { struct lu_error *error; Py_DECREF(ret); error = NULL; if (lu_mail_spool_create(context, ent->ent, &error)) ret = PyInt_FromLong(1); else { PyErr_SetString(PyExc_RuntimeError, lu_strerror(error)); if (error != NULL) lu_error_free(&error); ret = NULL; } } DEBUG_EXIT; return ret; } /* Add a group. Simple wrapper. */ static PyObject * libuser_admin_add_group(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_wrap(self, args, kwargs, lu_group_add); } static PyObject * libuser_admin_modify_user(PyObject *self, PyObject *args, PyObject *kwargs) { PyObject *ent = NULL; PyObject *ret; PyObject *mvhomedir = NULL; struct lu_ent *copy = NULL; char *keywords[] = { "entity", "mvhomedir", NULL }; DEBUG_ENTRY; if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!|O", keywords, &EntityType, &ent, &mvhomedir)) return NULL; if (mvhomedir != NULL) { if (!PyObject_IsTrue(mvhomedir)) /* Cache the PyObject_IsTrue() result */ mvhomedir = NULL; else { copy = lu_ent_new(); lu_ent_copy(((struct libuser_entity *)ent)->ent, copy); } } ret = libuser_admin_do_wrap(self, (struct libuser_entity *)ent, lu_user_modify); if (ret != NULL && mvhomedir != NULL) { PyObject *subargs, *subkwargs, *wrapped; Py_DECREF(ret); subargs = PyTuple_New(1); wrapped = libuser_wrap_ent(copy); copy = NULL; /* Will be freed along with `wrapped' */ PyTuple_SetItem(subargs, 0, wrapped); subkwargs = PyDict_New(); ret = libuser_admin_move_home(self, subargs, subkwargs); Py_DECREF(subargs); Py_DECREF(subkwargs); } if (copy != NULL) lu_ent_free(copy); DEBUG_EXIT; return ret; } /* Modify a group. Trivial wrapper. */ static PyObject * libuser_admin_modify_group(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_wrap(self, args, kwargs, lu_group_modify); } static PyObject * libuser_admin_delete_user(PyObject *self, PyObject *args, PyObject *kwargs) { PyObject *ent = NULL; PyObject *ret; PyObject *rmhomedir = NULL, *rmmailspool = NULL; struct lu_context *context; char *keywords[] = { "entity", "rmhomedir", "rmmailspool", NULL }; DEBUG_ENTRY; context = ((struct libuser_admin *)self)->ctx; if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!|OO", keywords, &EntityType, &ent, &rmhomedir, &rmmailspool)) { return NULL; } ret = libuser_admin_do_wrap(self, (struct libuser_entity *)ent, lu_user_delete); if (ret != NULL && rmhomedir != NULL && PyObject_IsTrue(rmhomedir)) { PyObject *subargs, *subkwargs; Py_DECREF(ret); subargs = PyTuple_New(1); Py_INCREF(ent); PyTuple_SetItem(subargs, 0, ent); subkwargs = PyDict_New(); ret = libuser_admin_remove_home(self, subargs, subkwargs); Py_DECREF(subargs); Py_DECREF(subkwargs); } if (ret != NULL && rmmailspool != NULL && PyObject_IsTrue(rmmailspool)) { struct libuser_entity *entity; struct lu_error *error; Py_DECREF(ret); entity = (struct libuser_entity *)ent; error = NULL; if (lu_mail_spool_remove(context, entity->ent, &error)) ret = PyInt_FromLong(1); else { PyErr_SetString(PyExc_RuntimeError, lu_strerror(error)); if (error != NULL) lu_error_free(&error); ret = NULL; } } DEBUG_EXIT; return ret; } /* Delete a group. Trivial wrapper. */ static PyObject * libuser_admin_delete_group(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_wrap(self, args, kwargs, lu_group_delete); } /* Lock a user account. Trivial wrapper. */ static PyObject * libuser_admin_lock_user(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_wrap(self, args, kwargs, lu_user_lock); } /* Lock a group account. Trivial wrapper. */ static PyObject * libuser_admin_lock_group(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_wrap(self, args, kwargs, lu_group_lock); } /* Unlock a user account. */ static PyObject * libuser_admin_unlock_user(PyObject *self, PyObject *args, PyObject *kwargs) { PyObject *ent, *nonempty = NULL; char *keywords[] = { "entity", "nonempty", NULL }; gboolean (*fn) (struct lu_context *, struct lu_ent *, struct lu_error **); PyObject *ret; DEBUG_ENTRY; if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!|O", keywords, &EntityType, &ent, &nonempty)) { DEBUG_EXIT; return NULL; } fn = (nonempty != NULL && PyObject_IsTrue (nonempty) ? lu_user_unlock_nonempty : lu_user_unlock); ret = libuser_admin_do_wrap(self, (struct libuser_entity *)ent, fn); DEBUG_EXIT; return ret; } /* Unlock a group account. */ static PyObject * libuser_admin_unlock_group(PyObject *self, PyObject *args, PyObject *kwargs) { PyObject *ent, *nonempty = NULL; char *keywords[] = { "entity", "nonempty", NULL }; gboolean (*fn) (struct lu_context *, struct lu_ent *, struct lu_error **); PyObject *ret; DEBUG_ENTRY; if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!|O", keywords, &EntityType, &ent, &nonempty)) { DEBUG_EXIT; return NULL; } fn = (nonempty != NULL && PyObject_IsTrue (nonempty) ? lu_group_unlock_nonempty : lu_group_unlock); ret = libuser_admin_do_wrap(self, (struct libuser_entity *)ent, fn); DEBUG_EXIT; return ret; } /* Check if a user account is locked. Trivial wrapper. */ static PyObject * libuser_admin_user_islocked(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_wrap_boolean(self, args, kwargs, lu_user_islocked); } /* Check if a group account is locked. Trivial wrapper. */ static PyObject * libuser_admin_group_islocked(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_wrap_boolean(self, args, kwargs, lu_group_islocked); } /* Remove a user's password. Trivial wrapper to make sure the right function * gets called. */ static PyObject * libuser_admin_removepass_user(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_wrap(self, args, kwargs, lu_user_removepass); } /* Remove a group's password. Trivial wrapper to make sure the right function * gets called. */ static PyObject * libuser_admin_removepass_group(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_wrap(self, args, kwargs, lu_group_removepass); } /* Set a user's password. Trivial wrapper to make sure the right setpass * function gets called. */ static PyObject * libuser_admin_setpass_user(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_setpass(self, args, kwargs, lu_user_setpass); } /* Set a group's password. Trivial wrapper to make sure the right setpass * function gets called. */ static PyObject * libuser_admin_setpass_group(PyObject *self, PyObject *args, PyObject *kwargs) { DEBUG_CALL; return libuser_admin_setpass(self, args, kwargs, lu_group_setpass); } /* Get a list of all users who match a particular pattern. */ static PyObject * libuser_admin_enumerate_users(PyObject *self, PyObject *args, PyObject *kwargs) { GValueArray *results; const char *pattern = NULL; PyObject *ret; struct lu_error *error = NULL; char *keywords[] = { "pattern", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Expect a possible pattern. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|s", keywords, &pattern)) { DEBUG_EXIT; return NULL; } /* Read the list of all users. */ results = lu_users_enumerate(me->ctx, pattern, &error); if (error != NULL) lu_error_free(&error); /* Convert the list to a PyList. */ ret = convert_value_array_pylist(results); if (results != NULL) g_value_array_free(results); DEBUG_EXIT; return ret; } /* Get a list of all groups. */ static PyObject * libuser_admin_enumerate_groups(PyObject *self, PyObject *args, PyObject *kwargs) { GValueArray *results; const char *pattern = NULL; PyObject *ret; struct lu_error *error = NULL; char *keywords[] = { "pattern", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Possibly expect a pattern. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|s", keywords, &pattern)) { DEBUG_EXIT; return NULL; } /* Get the list of groups. */ results = lu_groups_enumerate(me->ctx, pattern, &error); if (error != NULL) lu_error_free(&error); /* Convert the list to a PyList. */ ret = convert_value_array_pylist(results); if (results != NULL) g_value_array_free(results); DEBUG_EXIT; return ret; } /* Get the list of users who belong to a group. */ static PyObject * libuser_admin_enumerate_users_by_group(PyObject *self, PyObject *args, PyObject *kwargs) { GValueArray *results; char *group = NULL; PyObject *ret; struct lu_error *error = NULL; char *keywords[] = { "group", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Expect the group's name. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s", keywords, &group)) { DEBUG_EXIT; return NULL; } /* Get a list of the users in this group. */ results = lu_users_enumerate_by_group(me->ctx, group, &error); if (error != NULL) lu_error_free(&error); ret = convert_value_array_pylist(results); if (results != NULL) g_value_array_free(results); DEBUG_EXIT; return ret; } /* Get a list of groups a user belongs to. */ static PyObject * libuser_admin_enumerate_groups_by_user(PyObject *self, PyObject *args, PyObject *kwargs) { GValueArray *results; char *user = NULL; PyObject *ret; struct lu_error *error = NULL; char *keywords[] = { "user", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Expect the user's name. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s", keywords, &user)) { DEBUG_EXIT; return NULL; } /* Get the list. */ results = lu_groups_enumerate_by_user(me->ctx, user, &error); if (error != NULL) lu_error_free(&error); ret = convert_value_array_pylist(results); if (results != NULL) g_value_array_free(results); DEBUG_EXIT; return ret; } /* Get a list of all users who match a particular pattern. */ static PyObject * libuser_admin_enumerate_users_full(PyObject *self, PyObject *args, PyObject *kwargs) { GPtrArray *results; const char *pattern = NULL; PyObject *ret; struct lu_error *error = NULL; char *keywords[] = { "pattern", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Expect a possible pattern. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|s", keywords, &pattern)) { DEBUG_EXIT; return NULL; } /* Read the list of all users. */ results = lu_users_enumerate_full(me->ctx, pattern, &error); if (error != NULL) lu_error_free(&error); /* Convert the list to a PyList. */ ret = convert_ent_array_pylist(results); if (results != NULL) g_ptr_array_free(results, TRUE); DEBUG_EXIT; return ret; } /* Get a list of all groups. */ static PyObject * libuser_admin_enumerate_groups_full(PyObject *self, PyObject *args, PyObject *kwargs) { GPtrArray *results; const char *pattern = NULL; PyObject *ret; struct lu_error *error = NULL; char *keywords[] = { "pattern", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Possibly expect a pattern. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|s", keywords, &pattern)) { DEBUG_EXIT; return NULL; } /* Get the list of groups. */ results = lu_groups_enumerate_full(me->ctx, pattern, &error); if (error != NULL) lu_error_free(&error); /* Convert the list to a PyList. */ ret = convert_ent_array_pylist(results); if (results != NULL) g_ptr_array_free(results, TRUE); DEBUG_EXIT; return ret; } /* Get the list of users who belong to a group. */ static PyObject * libuser_admin_enumerate_users_by_group_full(PyObject *self, PyObject *args, PyObject *kwargs) { GPtrArray *results; char *group = NULL; PyObject *ret; struct lu_error *error = NULL; char *keywords[] = { "group", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Expect the group's name. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s", keywords, &group)) { DEBUG_EXIT; return NULL; } /* Get a list of the users in this group. */ results = lu_users_enumerate_by_group_full(me->ctx, group, &error); if (error != NULL) lu_error_free(&error); ret = convert_ent_array_pylist(results); if (results != NULL) g_ptr_array_free(results, TRUE); DEBUG_EXIT; return ret; } /* Get a list of groups a user belongs to. */ static PyObject * libuser_admin_enumerate_groups_by_user_full(PyObject *self, PyObject *args, PyObject *kwargs) { GPtrArray *results; char *user = NULL; PyObject *ret; struct lu_error *error = NULL; char *keywords[] = { "user", NULL }; struct libuser_admin *me = (struct libuser_admin *) self; DEBUG_ENTRY; /* Expect the user's name. */ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s", keywords, &user)) { DEBUG_EXIT; return NULL; } /* Get the list. */ results = lu_groups_enumerate_by_user_full(me->ctx, user, &error); if (error != NULL) lu_error_free(&error); ret = convert_ent_array_pylist(results); if (results != NULL) g_ptr_array_free(results, TRUE); DEBUG_EXIT; return ret; } static PyObject * libuser_admin_get_first_unused_id_type(struct libuser_admin *me, PyObject * args, PyObject * kwargs, enum lu_entity_type enttype) { const char *key, *key_string, *val; char *keywords[] = { "start", NULL }; PY_LONG_LONG start = 500; g_return_val_if_fail(me != NULL, NULL); DEBUG_ENTRY; switch (enttype) { case lu_user: key = "userdefaults/" LU_UIDNUMBER; key_string = "userdefaults/" G_STRINGIFY_ARG(LU_UIDNUMBER); break; case lu_group: key = "groupdefaults/" LU_GIDNUMBER; key_string = "groupdefaults/" G_STRINGIFY_ARG(LU_GIDNUMBER); break; default: g_assert_not_reached(); } val = lu_cfg_read_single(me->ctx, key, NULL); if (val == NULL) val = lu_cfg_read_single(me->ctx, key_string, NULL); if (val != NULL) { intmax_t imax; char *end; errno = 0; imax = strtoimax(val, &end, 10); if (errno == 0 && *end == 0 && end != val && (id_t)imax == imax) start = imax; } if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|L", keywords, &start)) { DEBUG_EXIT; return NULL; } if ((id_t)start != start) { PyErr_SetString(PyExc_OverflowError, "ID out of range"); DEBUG_EXIT; return NULL; } return PyLong_FromLongLong(lu_get_first_unused_id(me->ctx, enttype, start)); } static PyObject * libuser_admin_get_first_unused_uid(PyObject *self, PyObject * args, PyObject *kwargs) { return libuser_admin_get_first_unused_id_type ((struct libuser_admin *)self, args, kwargs, lu_user); } static PyObject * libuser_admin_get_first_unused_gid(PyObject *self, PyObject * args, PyObject *kwargs) { return libuser_admin_get_first_unused_id_type ((struct libuser_admin *)self, args, kwargs, lu_group); } static struct PyMethodDef libuser_admin_methods[] = { {"lookupUserByName", (PyCFunction) libuser_admin_lookup_user_name, METH_VARARGS | METH_KEYWORDS, "search for a user with the given name"}, {"lookupUserById", (PyCFunction) libuser_admin_lookup_user_id, METH_VARARGS | METH_KEYWORDS, "search for a user with the given uid"}, {"lookupGroupByName", (PyCFunction) libuser_admin_lookup_group_name, METH_VARARGS | METH_KEYWORDS, "search for a group with the given name"}, {"lookupGroupById", (PyCFunction) libuser_admin_lookup_group_id, METH_VARARGS | METH_KEYWORDS, "search for a group with the given gid"}, {"initUser", (PyCFunction) libuser_admin_init_user, METH_VARARGS | METH_KEYWORDS, "create an object with defaults set for creating a new user"}, {"initGroup", (PyCFunction) libuser_admin_init_group, METH_VARARGS | METH_KEYWORDS, "create an object with defaults set for creating a new group"}, {"addUser", (PyCFunction) libuser_admin_add_user, METH_VARARGS | METH_KEYWORDS, "add the user object to the system user database"}, {"addGroup", (PyCFunction) libuser_admin_add_group, METH_VARARGS | METH_KEYWORDS, "add the group object to the system group database"}, {"modifyUser", (PyCFunction) libuser_admin_modify_user, METH_VARARGS | METH_KEYWORDS, "modify an entry in the system user database to match the object"}, {"modifyGroup", (PyCFunction) libuser_admin_modify_group, METH_VARARGS | METH_KEYWORDS, "modify an entry in the system group database to match the object"}, {"deleteUser", (PyCFunction) libuser_admin_delete_user, METH_VARARGS | METH_KEYWORDS, "remove the entry from the system user database which matches the object"}, {"deleteGroup", (PyCFunction) libuser_admin_delete_group, METH_VARARGS | METH_KEYWORDS, "remove the entry from the system group database which matches the object"}, {"lockUser", (PyCFunction) libuser_admin_lock_user, METH_VARARGS | METH_KEYWORDS, "lock the user account associated with the object"}, {"lockGroup", (PyCFunction) libuser_admin_lock_group, METH_VARARGS | METH_KEYWORDS, "lock the group account associated with the object"}, {"unlockUser", (PyCFunction) libuser_admin_unlock_user, METH_VARARGS | METH_KEYWORDS, "unlock the user account associated with the object"}, {"unlockGroup", (PyCFunction) libuser_admin_unlock_group, METH_VARARGS | METH_KEYWORDS, "unlock the group account associated with the object"}, {"userIsLocked", (PyCFunction) libuser_admin_user_islocked, METH_VARARGS | METH_KEYWORDS, "check if the user account associated with the object is locked"}, {"groupIsLocked", (PyCFunction) libuser_admin_group_islocked, METH_VARARGS | METH_KEYWORDS, "check if the group account associated with the object is locked"}, {"setpassUser", (PyCFunction) libuser_admin_setpass_user, METH_VARARGS | METH_KEYWORDS, "set the password for the user account associated with the object"}, {"setpassGroup", (PyCFunction) libuser_admin_setpass_group, METH_VARARGS | METH_KEYWORDS, "set the password for the group account associated with the object"}, {"removepassUser", (PyCFunction) libuser_admin_removepass_user, METH_VARARGS | METH_KEYWORDS, "remove the password for the user account associated with the object"}, {"removepassGroup", (PyCFunction) libuser_admin_removepass_group, METH_VARARGS | METH_KEYWORDS, "remove the password for the group account associated with the object"}, {"enumerateUsers", (PyCFunction) libuser_admin_enumerate_users, METH_VARARGS | METH_KEYWORDS, "get a list of users matching a pattern, in listed databases"}, {"enumerateGroups", (PyCFunction) libuser_admin_enumerate_groups, METH_VARARGS | METH_KEYWORDS, "get a list of groups matching a pattern, in listed databases"}, {"enumerateUsersByGroup", (PyCFunction) libuser_admin_enumerate_users_by_group, METH_VARARGS | METH_KEYWORDS, "get a list of users in a group"}, {"enumerateGroupsByUser", (PyCFunction) libuser_admin_enumerate_groups_by_user, METH_VARARGS | METH_KEYWORDS, "get a list of groups to which a user belongs"}, {"enumerateUsersFull", (PyCFunction) libuser_admin_enumerate_users_full, METH_VARARGS | METH_KEYWORDS, "get a list of users matching a pattern, in listed databases"}, {"enumerateGroupsFull", (PyCFunction) libuser_admin_enumerate_groups_full, METH_VARARGS | METH_KEYWORDS, "get a list of groups matching a pattern, in listed databases"}, {"enumerateUsersByGroupFull", (PyCFunction) libuser_admin_enumerate_users_by_group_full, METH_VARARGS | METH_KEYWORDS, "get a list of users in a group"}, {"enumerateGroupsByUserFull", (PyCFunction) libuser_admin_enumerate_groups_by_user_full, METH_VARARGS | METH_KEYWORDS, "get a list of groups to which a user belongs"}, {"promptConsole", (PyCFunction) libuser_admin_prompt_console, METH_VARARGS | METH_KEYWORDS, "prompt the user for information using the console, and confirming defaults"}, {"promptConsoleQuiet", (PyCFunction) libuser_admin_prompt_console_quiet, METH_VARARGS | METH_KEYWORDS, "prompt the user for information using the console, silently accepting defaults"}, {"createHome", (PyCFunction) libuser_admin_create_home, METH_VARARGS | METH_KEYWORDS, "create a home directory for a user"}, {"moveHome", (PyCFunction) libuser_admin_move_home, METH_VARARGS | METH_KEYWORDS, "move a user's home directory"}, {"removeHome", (PyCFunction) libuser_admin_remove_home, METH_VARARGS | METH_KEYWORDS, "remove a user's home directory"}, {"removeHomeIfOwned", (PyCFunction) libuser_admin_remove_home_if_owned, METH_VARARGS | METH_KEYWORDS, "remove a user's home directory if it is owned by them"}, {"createMail", (PyCFunction) libuser_admin_create_mail, METH_VARARGS | METH_KEYWORDS, "create a mail spool for a user"}, {"removeMail", (PyCFunction) libuser_admin_remove_mail, METH_VARARGS | METH_KEYWORDS, "remove a mail spool for a user"}, {"getUserShells", libuser_get_user_shells, METH_NOARGS, "return a list of valid shells"}, {"getFirstUnusedUid", (PyCFunction) libuser_admin_get_first_unused_uid, METH_VARARGS | METH_KEYWORDS, "return the first available uid"}, {"getFirstUnusedGid", (PyCFunction) libuser_admin_get_first_unused_gid, METH_VARARGS | METH_KEYWORDS, "return the first available gid"}, {NULL, NULL, 0, NULL}, }; static PyTypeObject AdminType = { PyObject_HEAD_INIT(&PyType_Type) 0, "Admin", /* tp_name */ sizeof(struct libuser_admin), /* tp_basicsize */ 0, /* tp_itemsize */ libuser_admin_destroy, /* tp_dealloc */ NULL, /* tp_print */ libuser_admin_getattr, /* tp_getattr */ libuser_admin_setattr, /* tp_setattr */ NULL, /* tp_compare */ NULL, /* tp_repr */ }; static PyObject * libuser_admin_new(PyObject *self, PyObject *args, PyObject *kwargs) { char *name = getlogin(), *modules = NULL, *create = NULL, *p, *q; PyObject *prompt = NULL, *prompt_data = NULL; char *keywords[] = { "name", "type", "modules", "create_modules", "prompt", "prompt_data", NULL, }; int type = lu_user; struct lu_context *context; struct lu_error *error = NULL; struct libuser_admin *ret; DEBUG_ENTRY; ret = PyObject_NEW(struct libuser_admin, &AdminType); if (ret == NULL) { return NULL; } self = (PyObject *) ret; p = ((char *) ret) + sizeof(PyObject); q = ((char *) ret) + sizeof(struct libuser_admin); memset(p, '\0', q - p); ret->ctx = NULL; if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|sissOO", keywords, &name, &type, &modules, &create, &prompt, &prompt_data)) { Py_DECREF(ret); return NULL; } if ((type != lu_user) && (type != lu_group)) { PyErr_SetString(PyExc_ValueError, "invalid type"); Py_DECREF(ret); return NULL; } if (PyCallable_Check(prompt)) { ret->prompt_data[0] = prompt; Py_INCREF(ret->prompt_data[0]); } else { ret->prompt_data[0] = Py_FindMethod(libuser_admin_methods, self, "promptConsole"); } if (prompt_data != NULL) ret->prompt_data[1] = prompt_data; else ret->prompt_data[1] = Py_None; Py_INCREF(ret->prompt_data[1]); #ifdef DEBUG_BINDING fprintf(stderr, "%sprompt at <%p>, self = <%p>, modules = <%p>, create = <%p>\n", getindent(), prompt, ret, modules, create); #endif context = lu_start(name, type, modules, create, libuser_admin_python_prompter, ret->prompt_data, &error); if (context == NULL) { PyErr_SetString(PyExc_SystemError, error ? error-> string : "error initializing " PACKAGE); if (error) { lu_error_free(&error); } Py_DECREF(ret); return NULL; } ret->ctx = context; DEBUG_EXIT; return self; } libuser-0.60~dfsg/python/ldap-script0000755000175000017500000000054312226342570017570 0ustar tzafrirtzafrir#!/usr/bin/python import libuser import os print "--------- Initializing." admin = libuser.Admin() print "--------- Lookup." user = admin.lookupUserByName("ldap") if(not user): os.exit(0) print "--------- Setting new name." user[libuser.LU_USERNAME] = 'bubba' print user[libuser.LU_USERNAME] print "--------- Modifying user." admin.modifyUser(user) libuser-0.60~dfsg/python/ent.c0000644000175000017500000004651612226342570016364 0ustar tzafrirtzafrir/* Copyright (C) 2001, 2002, 2004 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include "../lib/user.h" #include "../lib/user_private.h" #include "common.h" static PyMappingMethods libuser_entity_mapping_methods; static PyMethodDef libuser_entity_methods[]; static PyMethodDef libuser_methods[]; static PyTypeObject EntityType; #define Entity_Check(__x) ((__x)->ob_type == &EntityType) /* Convert a g_value_array into a Python list of values. */ static PyObject * convert_value_array_pylist(GValueArray *array) { PyObject *ret; size_t i; DEBUG_ENTRY; /* Create a new list. */ ret = PyList_New(0); /* Iterate over the array. */ for (i = 0; (array != NULL) && (i < array->n_values); i++) { GValue *value; value = g_value_array_get_nth(array, i); /* If the item is a G_TYPE_LONG, add it as a PyLong. */ if (G_VALUE_HOLDS_LONG(value)) { PyObject *val; long l; l = g_value_get_long(value); val = PyLong_FromLong(l); PyList_Append(ret, val); Py_DECREF(val); #ifdef DEBUG_BINDING fprintf(stderr, "adding %ld to list\n", l); #endif } else if (G_VALUE_HOLDS_INT64(value)) { PyObject *val; long long ll; ll = g_value_get_int64(value); val = PyLong_FromLongLong(ll); PyList_Append(ret, val); Py_DECREF(val); #ifdef DEBUG_BINDING fprintf(stderr, "adding %lld to list\n", ll); #endif } /* If the item is a G_TYPE_STRING, add it as a PyString. */ if (G_VALUE_HOLDS_STRING(value)) { PyObject *val; const char *s; s = g_value_get_string(value); val = PyString_FromString(s); PyList_Append(ret, val); Py_DECREF(val); #ifdef DEBUG_BINDING fprintf(stderr, "adding `%s' to list\n", s); #endif } } DEBUG_EXIT; return ret; } /* Convert a (potentially NULL) GPtrArray of entities into a Python list of values. */ static PyObject * convert_ent_array_pylist(GPtrArray *array) { PyObject *ret; size_t i; DEBUG_ENTRY; ret = PyList_New(0); for (i = 0; array != NULL && i < array->len; i++) { PyObject *ent; ent = libuser_wrap_ent(g_ptr_array_index(array, i)); PyList_Append(ret, ent); Py_DECREF(ent); } DEBUG_EXIT; return ret; } /* Wrap up an entity object in a pretty Python wrapper. */ static PyObject * libuser_wrap_ent(struct lu_ent *ent) { struct libuser_entity *ret; DEBUG_ENTRY; /* No fair messing with me. */ if (ent == NULL) { DEBUG_EXIT; g_return_val_if_fail(ent != NULL, NULL); } /* Create a new Python object suitable for holding a struct lu_ent. */ ret = PyObject_NEW(struct libuser_entity, &EntityType); if (ret == NULL) { lu_ent_free(ent); DEBUG_EXIT; return NULL; } /* Keep track of the entity. */ ret->ent = ent; DEBUG_EXIT; return (PyObject *) ret; } /* Destroy an entity Python object. */ static void libuser_entity_destroy(PyObject *self) { struct libuser_entity *me; DEBUG_ENTRY; me = (struct libuser_entity *)self; lu_ent_free(me->ent); me->ent = NULL; PyObject_DEL(me); DEBUG_EXIT; } /* The getattr function. Returns the right method given its name. */ static PyObject * libuser_entity_getattr(PyObject *self, char *name) { DEBUG_CALL; #ifdef DEBUG_BINDING fprintf(stderr, "Searching for attribute `%s'\n", name); #endif return Py_FindMethod(libuser_entity_methods, self, name); } /* A helper function to convert a PyObject to a GValue. */ static gboolean libuser_convert_to_value(PyObject *item, GValue *value) { DEBUG_ENTRY; /* If it's a PyLong, convert it. */ if (PyLong_Check(item)) { PY_LONG_LONG ll; ll = PyLong_AsLongLong(item); if (PyErr_Occurred()) { DEBUG_EXIT; return FALSE; } if ((long)ll == ll) { g_value_init(value, G_TYPE_LONG); g_value_set_long(value, ll); } else if ((id_t)ll == ll && (id_t)ll != LU_VALUE_INVALID_ID) lu_value_init_set_id(value, ll); else { PyErr_SetString(PyExc_OverflowError, "Value out of range"); DEBUG_EXIT; return FALSE; } #ifdef DEBUG_BINDING fprintf(stderr, "%sAdding (%lld) to list.\n", getindent(), (long long)ll); #endif } else /* If it's a PyString, convert it. */ if (PyString_Check(item)) { g_value_init(value, G_TYPE_STRING); g_value_set_string(value, PyString_AsString(item)); #ifdef DEBUG_BINDING fprintf(stderr, "%sAdding (`%s') to list.\n", getindent(), PyString_AsString(item)); #endif } else #ifdef Py_USING_UNICODE if (PyUnicode_Check(item)) { PyObject *tmp; g_value_init(value, G_TYPE_STRING); tmp = PyUnicode_AsUTF8String(item); g_value_set_string(value, PyString_AsString(tmp)); Py_DECREF(tmp); #ifdef DEBUG_BINDING fprintf(stderr, "%sAdding unicode (`%s') to list.\n", getindent(), PyUnicode_AsUTF8String(item)); #endif } else #endif if (PyNumber_Check(item)) { PyObject *tmp; PY_LONG_LONG ll; tmp = PyNumber_Long(item); ll = PyLong_AsLongLong(item); if (PyErr_Occurred()) { Py_DECREF(tmp); DEBUG_EXIT; return FALSE; } Py_DECREF(tmp); if ((long)ll == ll) { g_value_init(value, G_TYPE_LONG); g_value_set_long(value, ll); } else if ((id_t)ll == ll && (id_t)ll != LU_VALUE_INVALID_ID) lu_value_init_set_id(value, ll); else { PyErr_SetString(PyExc_OverflowError, "Value out of range"); DEBUG_EXIT; return FALSE; } #ifdef DEBUG_BINDING fprintf(stderr, "%sAdding (`%s') to list.\n", getindent(), PyString_AsString(item)); #endif } else { PyErr_SetString(PyExc_TypeError, "expected a string or a number"); DEBUG_EXIT; return FALSE; } DEBUG_EXIT; return TRUE; } /* The setattr function. Sets an attribute to have the value of the given * Python object. */ static int libuser_entity_setattr(PyObject *self, char *name, PyObject *args) { struct libuser_entity *me; PyObject *list; struct lu_ent *copy; int ret; DEBUG_ENTRY; me = (struct libuser_entity *)self; copy = lu_ent_new(); lu_ent_copy(me->ent, copy); /* Parse out the arguments. We expect a single object. */ if (PyArg_ParseTuple(args, "O", &list)) { PyObject *item; GValue value; Py_ssize_t size, i; lu_ent_clear(me->ent, name); /* If the item is a tuple, scan it. */ if (PyTuple_Check(list)) { /* We need the length of the tuple. */ size = PyTuple_Size(list); #ifdef DEBUG_BINDING fprintf(stderr, "%sTuple has %jd items.\n", getindent(), (intmax_t)size); #endif /* Add each item in turn. */ memset(&value, 0, sizeof(value)); for (i = 0; i < size; i++) { item = PyTuple_GetItem(list, i); if (libuser_convert_to_value(item, &value) == FALSE) goto err; #ifdef DEBUG_BINDING fprintf(stderr, "%sAdding tuple item %s.\n", getindent(), g_value_get_string(&value)); #endif lu_ent_add(me->ent, name, &value); g_value_unset(&value); } ret = 0; goto end; } else /* If the object is a list, add it as a set of values. */ if (PyList_Check(list)) { /* We need the length of the list. */ size = PyList_Size(list); #ifdef DEBUG_BINDING fprintf(stderr, "%sList has %jd items.\n", getindent(), (intmax_t)size); #endif /* Add each item in turn. */ memset(&value, 0, sizeof(value)); for (i = 0; i < size; i++) { item = PyList_GetItem(list, i); if (libuser_convert_to_value(item, &value) == FALSE) goto err; #ifdef DEBUG_BINDING fprintf(stderr, "%sAdding list item %s.\n", getindent(), g_value_get_string(&value)); #endif lu_ent_add(me->ent, name, &value); g_value_unset(&value); } ret = 0; goto end; } else if (PyString_Check(list) || PyLong_Check(list) || PyNumber_Check(list)) { /* It's a single item, so just add it. */ if (libuser_convert_to_value(list, &value) == FALSE) goto err; #ifdef DEBUG_BINDING fprintf(stderr, "%sAdding single item %s.\n", getindent(), g_value_get_string(&value)); #endif lu_ent_add(me->ent, name, &value); g_value_unset(&value); ret = 0; goto end; } } PyErr_SetString(PyExc_SystemError, "expected Number, Long, String, Tuple, or List"); err: lu_ent_copy(copy, me->ent); ret = -1; end: lu_ent_free(copy); DEBUG_EXIT; return ret; } /* Get the list of attributes, returning them as a PyList of PyStrings. */ static PyObject * libuser_entity_getattrlist(PyObject *self, PyObject *ignore) { struct libuser_entity *me; GList *list, *i; PyObject *ret; (void)ignore; DEBUG_ENTRY; me = (struct libuser_entity *)self; ret = PyList_New(0); list = lu_ent_get_attributes(me->ent); for (i = list; i != NULL; i = g_list_next(i)) { PyObject *str; str = PyString_FromString((char*)i->data); PyList_Append(ret, str); Py_DECREF(str); } g_list_free(list); DEBUG_EXIT; return ret; } /* Get the names of the modules which had something to do with this object. */ static PyObject * libuser_entity_modules(PyObject *self, PyObject *ignore) { struct libuser_entity *me; (void)ignore; DEBUG_CALL; me = (struct libuser_entity *)self; return convert_value_array_pylist(me->ent->modules); } /* Get the values for a particular attribute, or somesuch. */ static PyObject * libuser_entity_get(PyObject *self, PyObject *args) { char *arg; PyObject *default_value = NULL; struct libuser_entity *me; DEBUG_ENTRY; me = (struct libuser_entity *)self; /* The first argument should be the name of the attribute, and the * optional argument is the default value. */ if (!PyArg_ParseTuple(args, "s|O", &arg, &default_value)) { DEBUG_EXIT; return NULL; } /* If we have this attribute, convert it to a list and hand it back. */ if (lu_ent_has(me->ent, arg)) { DEBUG_EXIT; return convert_value_array_pylist(lu_ent_get(me->ent, arg)); } else { /* If not, return a new reference for the default. */ if (default_value != NULL) { Py_INCREF(default_value); DEBUG_EXIT; return default_value; } else { /* If we have no default, return an empty list. */ DEBUG_EXIT; return PyList_New(0); } } } /* Add a value to the entity. */ static PyObject * libuser_entity_add(PyObject *self, PyObject *args) { struct libuser_entity *me; char *attr = NULL; PyObject *val; GValue value; DEBUG_ENTRY; me = (struct libuser_entity *)self; /* We expect a string and some kind of object. */ if (!PyArg_ParseTuple(args, "sO", &attr, &val)) { DEBUG_EXIT; return NULL; } /* Convert the item to a value. */ memset(&value, 0, sizeof(value)); if (libuser_convert_to_value(val, &value) == FALSE) { DEBUG_EXIT; return NULL; } lu_ent_add(me->ent, attr, &value); g_value_unset(&value); DEBUG_EXIT; Py_RETURN_NONE; } /* Set the attribute to a given list of arguments. */ static PyObject * libuser_entity_set(PyObject *self, PyObject *args) { struct libuser_entity *me; char *attr = NULL; PyObject *list = NULL, *val = NULL, *ret; GValue value; struct lu_ent *copy; DEBUG_ENTRY; me = (struct libuser_entity *)self; copy = lu_ent_new(); lu_ent_copy(me->ent, copy); /* We expect a string and some kind of object. */ if (PyArg_ParseTuple(args, "sO!", &attr, &PyList_Type, &list)) { Py_ssize_t i, size; /* It's a list. */ size = PyList_Size(list); #ifdef DEBUG_BINDING fprintf(stderr, "%sList has %jd items.\n", getindent(), (intmax_t)size); #endif /* Remove all current values. */ lu_ent_clear(me->ent, attr); /* Add each of the list items in turn. */ memset(&value, 0, sizeof(value)); for (i = 0; i < size; i++) { PyObject *item; item = PyList_GetItem(list, i); if (libuser_convert_to_value(item, &value) == FALSE) goto err; lu_ent_add(me->ent, attr, &value); g_value_unset(&value); } Py_INCREF(Py_None); ret = Py_None; goto end; } PyErr_Clear (); /* PyArg_ParseTuple() above has raised an exception */ /* It's an object of some kind. */ if (PyArg_ParseTuple(args, "sO", &attr, &val)) { memset(&value, 0, sizeof(value)); if (libuser_convert_to_value(val, &value) == FALSE) goto err; /* Remove all current values. */ lu_ent_clear(me->ent, attr); /* Add this one value. */ lu_ent_add(me->ent, attr, &value); g_value_unset(&value); Py_INCREF(Py_None); ret = Py_None; goto end; } PyErr_SetString(PyExc_SystemError, "expected value or list of values"); err: lu_ent_copy(copy, me->ent); ret = NULL; end: lu_ent_free(copy); DEBUG_EXIT; return ret; } /* Clear out all values for an attribute. */ static PyObject * libuser_entity_clear(PyObject *self, PyObject *args) { struct libuser_entity *me; char *arg; DEBUG_ENTRY; me = (struct libuser_entity *)self; if (!PyArg_ParseTuple(args, "s", &arg)) { DEBUG_EXIT; return NULL; } lu_ent_clear(me->ent, arg); Py_RETURN_NONE; } /* Clear out all values for all attributes. */ static PyObject * libuser_entity_clear_all(PyObject *self, PyObject *ignore) { struct libuser_entity *me; (void)ignore; DEBUG_ENTRY; me = (struct libuser_entity *)self; lu_ent_clear_all(me->ent); Py_RETURN_NONE; } /* Roll-back any changes we've made to the object since it was last read from or * saved to the information store. */ static PyObject * libuser_entity_revert(PyObject *self, PyObject *ignore) { struct libuser_entity *me; (void)ignore; DEBUG_ENTRY; me = (struct libuser_entity *)self; lu_ent_revert(me->ent); DEBUG_EXIT; Py_RETURN_NONE; } /* Get the length of the list of attributes. */ static Py_ssize_t libuser_entity_length(PyObject *self) { struct libuser_entity *me; GList *list; Py_ssize_t ret; DEBUG_CALL; me = (struct libuser_entity *)self; list = lu_ent_get_attributes(me->ent); ret = g_list_length(list); g_list_free(list); return ret; } /* Get the value for a particular item, dictionary style. */ static PyObject * libuser_entity_get_item(PyObject *self, PyObject *item) { struct libuser_entity *me; char *attr; DEBUG_ENTRY; me = (struct libuser_entity *)self; /* Our lone argument should be a string. */ if (!PyString_Check(item)) { PyErr_SetString(PyExc_TypeError, "expected a string"); DEBUG_EXIT; return NULL; } attr = PyString_AsString(item); if (!lu_ent_has(me->ent, attr)) { PyErr_SetString(PyExc_KeyError, "no such attribute defined for this entity"); DEBUG_EXIT; return NULL; } DEBUG_EXIT; return convert_value_array_pylist(lu_ent_get(me->ent, attr)); } /* Check if an object has values for the given attribute. */ static PyObject * libuser_entity_has_key(PyObject *self, PyObject *item) { char *attr; struct libuser_entity *me; DEBUG_ENTRY; me = (struct libuser_entity *)self; if (!PyArg_ParseTuple(item, "s", &attr)) { PyErr_SetString(PyExc_TypeError, "expected a tuple or string"); DEBUG_EXIT; return NULL; } return PyInt_FromLong(lu_ent_has(me->ent, attr) ? 1 : 0); } /* Set a value, dictionary style. */ static int libuser_entity_set_item(PyObject *self, PyObject *item, PyObject *args) { struct libuser_entity *me; char *attr = NULL; Py_ssize_t i, size; int ret; GValue value; struct lu_ent *copy; DEBUG_ENTRY; me = (struct libuser_entity *)self; /* The item should be a string. */ if (!PyString_Check(item)) { PyErr_SetString(PyExc_TypeError, "expected a string"); DEBUG_EXIT; return -1; } attr = PyString_AsString(item); #ifdef DEBUG_BINDING fprintf(stderr, "%sSetting item (`%s')...\n", getindent(), attr); #endif copy = lu_ent_new(); lu_ent_copy(me->ent, copy); /* If the new value is a list, convert each and add in turn. */ if (PyList_Check(args)) { size = PyList_Size(args); #ifdef DEBUG_BINDING fprintf(stderr, "%sList has %jd items.\n", getindent(), (intmax_t)size); #endif lu_ent_clear(me->ent, attr); memset(&value, 0, sizeof(value)); for (i = 0; i < size; i++) { item = PyList_GetItem(args, i); if (libuser_convert_to_value(item, &value) == FALSE) goto err; #ifdef DEBUG_BINDING fprintf(stderr, "%sAdding (`%s') to `%s'.\n", getindent(), g_value_get_string(&value)); #endif lu_ent_add(me->ent, attr, &value); g_value_unset(&value); } ret = 0; goto end; } else /* If the new value is a tuple, convert each and add in turn. */ if (PyTuple_Check(args)) { size = PyTuple_Size(args); #ifdef DEBUG_BINDING fprintf(stderr, "%sTuple has %jd items.\n", getindent(), (intmax_t)size); #endif lu_ent_clear(me->ent, attr); memset(&value, 0, sizeof(value)); for (i = 0; i < size; i++) { item = PyTuple_GetItem(args, i); if (libuser_convert_to_value(item, &value) == FALSE) goto err; #ifdef DEBUG_BINDING fprintf(stderr, "%sAdding (`%s') to `%s'.\n", getindent(), g_value_get_string(&value)); #endif lu_ent_add(me->ent, attr, &value); g_value_unset(&value); } ret = 0; goto end; } else /* If the new value is a value, convert it and add it. */ if (PyString_Check(args) || PyNumber_Check(args) || PyLong_Check(args)) { lu_ent_clear(me->ent, attr); memset(&value, 0, sizeof(value)); if (libuser_convert_to_value(args, &value) == FALSE) goto err; #ifdef DEBUG_BINDING fprintf(stderr, "%sSetting (`%s') to `%s'.\n", getindent(), attr, g_value_get_string(value)); #endif lu_ent_add(me->ent, attr, &value); g_value_unset(&value); ret = 0; goto end; } PyErr_SetString(PyExc_TypeError, "expected values or list of values"); err: lu_ent_copy(copy, me->ent); ret = -1; end: lu_ent_free(copy); DEBUG_EXIT; return ret; } static PyMappingMethods libuser_entity_mapping_methods = { libuser_entity_length, /* mp_length */ libuser_entity_get_item, /* mp_subscript */ libuser_entity_set_item, /* mp_ass_subscript */ }; static PyMethodDef libuser_entity_methods[] = { {"getattrlist", libuser_entity_getattrlist, METH_NOARGS, "get a list of the attributes this entity has"}, {"has_key", libuser_entity_has_key, METH_VARARGS, "check if the entity has a given attribute"}, {"get", libuser_entity_get, METH_VARARGS, "get a list of the values for a given attribute"}, {"keys", libuser_entity_getattrlist, METH_NOARGS}, {"clear", libuser_entity_clear, METH_VARARGS, "clear the list of values for a given attribute"}, {"set", libuser_entity_set, METH_VARARGS, "set the list of values for a given attribute"}, {"add", libuser_entity_add, METH_VARARGS, "add a value to the current list of values for a given attribute"}, {"clear_all", libuser_entity_clear_all, METH_NOARGS, "clear all values for all attributes"}, {"revert", libuser_entity_revert, METH_NOARGS, "revert the list of values for a given attribute to the values which " "were set when the entity was looked up"}, {"modules", libuser_entity_modules, METH_NOARGS, "get a list of the modules which generated or looked up this object"}, {NULL, NULL, 0, NULL}, }; static PyTypeObject EntityType = { PyObject_HEAD_INIT(&PyType_Type) 0, "Entity", /* tp_name */ sizeof(struct libuser_entity), /* tp_basicsize */ 0, /* tp_itemsize */ libuser_entity_destroy, /* tp_dealloc */ NULL, /* tp_print */ libuser_entity_getattr, /* tp_getattr */ libuser_entity_setattr, /* tp_setattr */ NULL, /* tp_compare */ NULL, /* tp_repr */ NULL, /* tp_as_number */ NULL, /* tp_as_sequence */ &libuser_entity_mapping_methods, /* tp_as_mapping */ }; libuser-0.60~dfsg/python/modules.txt0000644000175000017500000002516712226342570017642 0ustar tzafrirtzafrirThis is an attempt to document the Python API. Anyone know a better way to format this stuff? libuser: Fields: - USERNAME - USERPASSWORD - UIDNUMBER - GIDNUMBER - GECOS - HOMEDIRECTORY - LOGINSHELL - GROUPNAME - GROUPPASSWORD - GIDNUMBER - ADMINISTRATORUID - MEMBERUID - SHADOWNAME - SHADOWPASSWORD - SHADOWEXPIRE - SHADOWFLAG - SHADOWINACTIVE - SHADOWLASTCHANGE - SHADOWMAX - SHADOWMIN - SHADOWWARNING - UT_NAMESIZE - VALUE_INVALID_ID Methods: - getUserShells: Returns a list of valid shells for users on the system. Arguments: None. Returns: a list of strings. - admin: Creates and returns a new libuser.Admin object. Keyword Arguments: name= type= info= auth= Returns: a libuser.Admin object. - PROMPT: Creates and returns a new libuser.Prompt object. Arguments: None. Returns: a libuser.Prompt object. - validateIdValue: Verifies an id_t value is in the valid range. Arguments: id_t integer value Returns: None. Raises an exception on error. Types: - Admin - An administrative context. Methods: - lookupUserByName: - lookupUserById: - lookupGroupByName: - lookupGroupById: Look up information about a user or group using the user or group's name or UID/GID. Arguments: A name as a string or a numeric ID. Returns: A libuser.Entity object containing information about the user or group, or None if there is no matching user or group. - initUser: - initGroup: Create a new libuser.Entity object, initialized with information suitable for creating a new user or group. Arguments: The new user or group's name as a string (required). A true/false value indicating whether this is a system account or not (optional, default no). Returns: A libuser.Entity object containing information for the user or group to be created. - addUser: Add a new user to the system: Arguments: A libuser.Entity object with the new user or group's information (required). A true/false object indicating whether or not the home directory for the user should be created (optional, defaults yes). A true/false object indicating whether or not the mail spool for the user should be created (optional, defaults yes). Keyword Arguments: skeleton= - addGroup: Add a new group to the system: Arguments: A libuser.Entity object with the new group's information (required). - modifyUser: Modify information about a user on the system. Arguments: A libuser.Entity object with the user or group's information (required). A true/false object indicating whether or not the home directory for the user should be moved from its original location to the location stored in the entity's libuser.HOMEDIRECTORY attribute (optional, default no). - modifyGroup: Modify information about a group on the system. Arguments: A libuser.Entity object with the group's information (required). - deleteUser: Remove a user account. Arguments: A libuser.Entity object with the user's information (required). A true/false value indicating whether or not this user's home directory should be removed (optional, default no). A true/false value indicating whether or not this user's mail spool should be removed (optional, default no). - deleteGroup: Remove a group from the system. Arguments: A libuser.Entity object with the group's information (required). - lockUser: - lockGroup: Lock a user or group account. Arguments: A libuser.Entity object with the user or group's information (required). A true/false object indicating whether unlocking - unlockUser: - unlockGroup: Unlock a user or group account. Arguments: A libuser.Entity object with the user or group's information (required). A true/false object indicating whether unlocking that would empty the password field should fail (optional, default no). - setpassUser: - setpassGroup: Arguments: A libuser.Entity object with the user or group's information (required). A string containing the new password (required). This is preferably in plaintext. An object indicating whether or not the string is a value returned by crypt.crypt(): a false value indicates that the string is plaintext. - removepassUser: - removepassGroup: Arguments: A libuser.Entity object with the user or group's information (required). - enumerateUsers: - enumerateGroups: Get a list of users or groups known to the library and its modules. Arguments: A pattern (wildcard-style) which returned user or group names should match (optional, default is all ("*")). Returns: a list of user or group names. - enumerateUsersByGroup: Get a list of users who belong to a particular group. Arguments: A group's name (required). Returns: a list of user names. - enumerateGroupsByUser: Get a list of groups to which a user belongs. Arguments: A user's name (required). Returns: a list of group names. - enumerateUsersFull: - enumerateGroupsFull: Get a list of users or groups known to the library and its modules, along with any data which can be looked up about them. - enumerateUsersByGroupFull: Get a list of users who belong to a particular group, along with any data which can be looked up about them. Arguments: A group's name (required). Returns: a list of libuser.Entity objects. - enumerateGroupsByUserFull: Get a list of groups to which a user belongs, along with any data which can be looked up about them. Arguments: A user's name (required). Returns: a list of libuser.Entity objects. - promptConsole: Prompt the user for information, including for information for which there is a supplied default. Arguments: A list of libuser.Prompt objects. Returns: a true/false value indicating success or failure. - promptConsoleQuiet: Prompt the user for information, except for information for which there is a supplied default. Arguments: A list of libuser.Prompt objects. Returns: a true/false value indicating success or failure. - createHome: Create user's home directory. Arguments: A libuser.Entity object for the user. Path to the skeleton home directory (optional, default is to use the system default) Returns: a true value, or raises an exception. - moveHome: Move user's home directory. Arguments: A libuser.Entity object for the user. Path for the new directory (optional, default is to use the "pending" value of the LU_HOMEDIRECTORY attribute) Returns: a true value, or raises an exception. - removeHome: Remove user's home directory. Arguments: A libuser.Entity object for the user. Returns: a true value, or raises an exception. - removeHomeIfOwned: Remove user's home directory if it is owned by them. Arguments: A libuser.Entity object for the user. Returns: a true value, or raises an exception. - createMail: Create user's mail spool. Arguments: A libuser.Entity object for the user. Returns: a true value, or raises an exception. - removeMail: Remove user's mail spool. Arguments: A libuser.Entity object for the user. Returns: a true value, or raises an exception. - getFirstUnusedUid: Search the system for an unused UID. Arguments: An initial guess (numeric). Returns: an unused UID. - getFirstUnusedGid: Search the system for an unused GID. Arguments: An initial guess (numeric). Returns: an unused GID. Fields: - prompt(function): A method which can be used to process lists of libuser.Prompt objects. Can be set to the object's promptConsole or promptConsoleQuiet methods, or a user-supplied function. - prompt_args: Additional arguments which should be passed to prompt(). - Entity - An entity. Methods: - getattrlist: Return a list of attributes this entity possesses. Arguments: None. Returns: a list of attribute names. - modules: Return a list of the modules which assisted in the creation or lookup of this libuser.Entity object. Arguments: None. Returns: a list of module names. - has_key: Check if this entity possesses a given attribute. Arguments: An attribute name (required). Returns: a true/false value. - get: Return a list of the values for one attribute this entity possesses. Arguments: An attribute name (required). Returns: a list of values. - set: Set a list of the values for one attribute this entity possesses. Arguments: An attribute name (required). A value or a list of values for that attribute (required). Returns: nothing. - add: Add a single value to the list of the values for one attribute this entity possesses. Arguments: An attribute name (required). A value for that attribute (required). Returns: nothing. - clear: Remove all values for one attribute this entity possesses. Arguments: An attribute name (required). Returns: nothing. - revert: Reset all values for one attribute this entity possesses to the values which it had when it was created. Arguments: None. Returns: nothing. Fields: All get()table and set()table attributes are also implemented using mapping conventions. - Prompt - A prompt record. Methods: None. Fields: - prompt(string): The text of the request which is given to the user. - domain(string): A gettext domain which may be able to provide translations of the prompt. - visible(true/false): Whether or not the user should be able to see a response while typing it. - default_value(string): A default answer. - value(string): The user's answer. libuser-0.60~dfsg/python/misc.c0000644000175000017500000002564412226342570016530 0ustar tzafrirtzafrir/* Copyright (C) 2001,2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include "../lib/user.h" #include "../lib/user_private.h" #include "common.h" static PyTypeObject PromptType; #define Prompt_Check(__x) ((__x)->ob_type == &PromptType) static gboolean libuser_admin_python_prompter(struct lu_prompt *prompts, int count, gpointer callback_data, struct lu_error **error) { PyObject **prompt_data = (PyObject **) callback_data; DEBUG_ENTRY; if (count > 0) { PyObject *list, *tuple, *ret; int i; if (!PyCallable_Check(prompt_data[0])) { lu_error_new(error, lu_error_generic, NULL); PyErr_SetString(PyExc_RuntimeError, "prompter is not callable"); DEBUG_EXIT; return FALSE; } list = PyList_New(0); for (i = 0; i < count; i++) { struct libuser_prompt *prompt; prompt = (struct libuser_prompt *) libuser_prompt_new(NULL, NULL); if (prompt == NULL) { Py_DECREF(list); DEBUG_EXIT; return FALSE; } prompt->prompt.key = g_strdup(prompts[i].key); prompt->prompt.prompt = g_strdup(prompts[i].prompt); prompt->prompt.domain = g_strdup(prompts[i].domain); prompt->prompt.visible = prompts[i].visible; prompt->prompt.default_value = g_strdup(prompts[i].default_value); prompt->prompt.value = g_strdup(prompts[i].value); prompt->prompt.free_value = g_free; PyList_Append(list, (PyObject *) prompt); Py_DECREF(prompt); } tuple = PyTuple_New(PyTuple_Check(prompt_data[1]) ? PyTuple_Size(prompt_data[1]) + 1 : 1); PyTuple_SetItem(tuple, 0, list); if (PyTuple_Check(prompt_data[1])) { Py_ssize_t j; for (j = 0; j < PyTuple_Size(prompt_data[1]); j++) { PyObject *obj; obj = PyTuple_GetItem(prompt_data[1], j); Py_INCREF(obj); PyTuple_SetItem(tuple, j + 1, obj); } } ret = PyObject_CallObject(prompt_data[0], tuple); if (PyErr_Occurred()) { PyErr_Print(); Py_DECREF(tuple); DEBUG_EXIT; lu_error_new(error, lu_error_generic, _ ("error while prompting for necessary information")); return FALSE; } for (i = 0; i < count; i++) { struct libuser_prompt *prompt; /* i doesn't have to be Py_ssize_t because count is int as well. */ prompt = (struct libuser_prompt *)PyList_GetItem(list, i); prompts[i].value = g_strdup(prompt->prompt.value); prompts[i].free_value = g_free; } Py_DECREF(tuple); Py_DECREF(ret); } DEBUG_EXIT; return TRUE; } static PyObject * libuser_admin_prompt(struct libuser_admin *self, PyObject * args, PyObject * kwargs, lu_prompt_fn * prompter) { Py_ssize_t count; int i; PyObject *list = NULL, *moreargs = NULL; struct lu_prompt *prompts; struct lu_error *error = NULL; char *keywords[] = { "prompt_list", "more_args", NULL }; g_return_val_if_fail(self != NULL, NULL); DEBUG_ENTRY; if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!|O", keywords, &PyList_Type, &list, &moreargs)) { DEBUG_EXIT; return NULL; } count = PyList_Size(list); if (count > INT_MAX) { PyErr_SetString(PyExc_ValueError, "too many prompts"); DEBUG_EXIT; return NULL; } /* i now may be int because count fits in int */ for (i = 0; i < count; i++) { PyObject *item; item = PyList_GetItem(list, i); DEBUG_CALL; if (!Prompt_Check(item)) { PyErr_SetString(PyExc_TypeError, "expected list of Prompt objects"); DEBUG_EXIT; return NULL; } DEBUG_CALL; } DEBUG_CALL; prompts = g_malloc0_n(count, sizeof(struct lu_prompt)); DEBUG_CALL; for (i = 0; i < count; i++) { struct libuser_prompt *obj; obj = (struct libuser_prompt *) PyList_GetItem(list, i); Py_INCREF(obj); prompts[i].key = g_strdup(obj->prompt.key ? : ""); prompts[i].domain = g_strdup(obj->prompt.domain ? : ""); prompts[i].prompt = g_strdup(obj->prompt.prompt ? : ""); prompts[i].default_value = obj->prompt.default_value ? g_strdup(obj->prompt.default_value) : NULL; prompts[i].visible = obj->prompt.visible; /* FIXME: free the values sometime? */ } #ifdef DEBUG_BINDING fprintf(stderr, "Prompter function promptConsole is at <%p>.\n", lu_prompt_console); fprintf(stderr, "Prompter function promptConsoleQuiet is at <%p>.\n", lu_prompt_console_quiet); fprintf(stderr, "Calling prompter function at <%p>.\n", prompter); #endif if (prompter(prompts, count, self->prompt_data, &error) != FALSE) { for (i = 0; i < count; i++) { struct libuser_prompt *obj; obj = (struct libuser_prompt *)PyList_GetItem(list, i); obj->prompt.value = g_strdup(prompts[i].value ? : ""); obj->prompt.free_value = g_free; if (prompts[i].value && prompts[i].free_value) { prompts[i].free_value(prompts[i].value); prompts[i].value = NULL; prompts[i].free_value = NULL; } Py_DECREF(obj); } DEBUG_EXIT; Py_RETURN_NONE; } else { if (error != NULL) lu_error_free(&error); for (i = 0; i < count; i++) { PyObject *obj; obj = PyList_GetItem(list, i); Py_DECREF(obj); } PyErr_SetString(PyExc_RuntimeError, "error prompting the user for information"); DEBUG_EXIT; return NULL; } } static PyObject * libuser_admin_prompt_console(PyObject * self, PyObject * args, PyObject * kwargs) { DEBUG_CALL; return libuser_admin_prompt((struct libuser_admin *) self, args, kwargs, lu_prompt_console); } static PyObject * libuser_admin_prompt_console_quiet(PyObject * self, PyObject * args, PyObject * kwargs) { DEBUG_CALL; return libuser_admin_prompt((struct libuser_admin *) self, args, kwargs, lu_prompt_console_quiet); } static void libuser_prompt_destroy(PyObject *self) { struct libuser_prompt *me; DEBUG_ENTRY; me = (struct libuser_prompt *)self; if (me->prompt.value && me->prompt.free_value) me->prompt.free_value(me->prompt.value); g_free((void *)me->prompt.key); g_free((void *)me->prompt.prompt); g_free((void *)me->prompt.domain); g_free((void *)me->prompt.default_value); memset(&me->prompt, 0, sizeof(me->prompt)); PyObject_DEL(me); DEBUG_EXIT; } static PyObject * libuser_prompt_getattr(PyObject *self, char *attr) { struct libuser_prompt *me; DEBUG_ENTRY; me = (struct libuser_prompt *)self; if (strcmp(attr, "key") == 0) { DEBUG_EXIT; return PyString_FromString(me->prompt.key); } if (strcmp(attr, "prompt") == 0) { DEBUG_EXIT; return PyString_FromString(me->prompt.prompt); } if (strcmp(attr, "domain") == 0) { DEBUG_EXIT; return PyString_FromString(me->prompt.domain ?: ""); } if (strcmp(attr, "visible") == 0) { DEBUG_EXIT; return PyInt_FromLong(me->prompt.visible); } if ((strcmp(attr, "default_value") == 0) || (strcmp(attr, "defaultValue") == 0)) { DEBUG_EXIT; if (me->prompt.default_value != NULL) return PyString_FromString(me->prompt.default_value); else Py_RETURN_NONE; } if (strcmp(attr, "value") == 0) { DEBUG_EXIT; if (me->prompt.value != NULL) return PyString_FromString(me->prompt.value); else Py_RETURN_NONE; } DEBUG_EXIT; return Py_FindMethod(NULL, self, attr); } static int libuser_prompt_setattr(PyObject *self, char *attr, PyObject * args) { struct libuser_prompt *me; DEBUG_ENTRY; me = (struct libuser_prompt *)self; if (strcmp(attr, "prompt") == 0) { if (!PyString_Check(args)) { PyErr_SetString(PyExc_TypeError, "prompt must be a string"); DEBUG_EXIT; return -1; } g_free((char *)me->prompt.prompt); me->prompt.prompt = g_strdup(PyString_AsString(args)); DEBUG_EXIT; return 0; } if (strcmp(attr, "domain") == 0) { if (!PyString_Check(args)) { PyErr_SetString(PyExc_TypeError, "domain must be a string"); DEBUG_EXIT; return -1; } g_free((char *)me->prompt.domain); me->prompt.domain = g_strdup(PyString_AsString(args)); DEBUG_EXIT; return 0; } if (strcmp(attr, "key") == 0) { if (!PyString_Check(args)) { PyErr_SetString(PyExc_TypeError, "key must be a string"); DEBUG_EXIT; return -1; } g_free((char *)me->prompt.key); me->prompt.key = g_strdup(PyString_AsString(args)); DEBUG_EXIT; return 0; } if (strcmp(attr, "visible") == 0) { me->prompt.visible = PyObject_IsTrue(args); DEBUG_EXIT; return 0; } if ((strcmp(attr, "default_value") == 0) || (strcmp(attr, "defaultValue") == 0)) { if (!PyString_Check(args)) { PyErr_SetString(PyExc_TypeError, "default value must be a string"); DEBUG_EXIT; return -1; } g_free((char *)me->prompt.default_value); me->prompt.default_value = (args == Py_None) ? NULL : g_strdup(PyString_AsString(args)); DEBUG_EXIT; return 0; } if (strcmp(attr, "value") == 0) { if (!PyString_Check(args)) { PyErr_SetString(PyExc_TypeError, "value must be a string"); DEBUG_EXIT; return -1; } if (me->prompt.value && me->prompt.free_value) me->prompt.free_value(me->prompt.value); me->prompt.value = g_strdup(PyString_AsString(args)); me->prompt.free_value = g_free; DEBUG_EXIT; return 0; } DEBUG_EXIT; PyErr_SetString(PyExc_AttributeError, "invalid attribute"); return -1; } static int libuser_prompt_print(PyObject *self, FILE *fp, int flags) { struct libuser_prompt *me; (void)flags; me = (struct libuser_prompt *)self; fprintf(fp, "(key = \"%s\", prompt = \"%s\", domain = \"%s\", " "visible = %s, default_value = \"%s\", value = \"%s\")", me->prompt.key ? me->prompt.key : "", me->prompt.prompt ? me->prompt.prompt : "", me->prompt.domain ? me->prompt.domain : "", me->prompt.visible ? "true" : "false", me->prompt.default_value ? me->prompt.default_value : "", me->prompt.value ? me->prompt.value : ""); return 0; } static PyObject * libuser_prompt_new(PyObject *ignored_self, PyObject *ignore) { struct libuser_prompt *ret; (void)ignored_self; (void)ignore; DEBUG_ENTRY; ret = PyObject_NEW(struct libuser_prompt, &PromptType); if (ret != NULL) { memset(&ret->prompt, 0, sizeof(ret->prompt)); } DEBUG_EXIT; return (PyObject *)ret; } static PyTypeObject PromptType = { PyObject_HEAD_INIT(&PyType_Type) 0, "Prompt", /* tp_name */ sizeof(struct libuser_prompt), /* tp_basicsize */ 0, /* tp_itemsize */ libuser_prompt_destroy, /* tp_dealloc */ libuser_prompt_print, /* tp_print */ libuser_prompt_getattr, /* tp_getattr */ libuser_prompt_setattr, /* tp_setattr */ NULL, /* tp_compare */ NULL, /* tp_repr */ }; libuser-0.60~dfsg/python/test-script0000755000175000017500000000435112226342570017630 0ustar tzafrirtzafrir#!/usr/bin/python import libuser import os import time print "--------- Initializing." admin = libuser.admin() print "--------- Listing." list = admin.enumerateUsers("l*") list.sort() for item in list: print "Found a user named \"" + item + "\"." print "--------- Lookup." ldap = admin.lookupUserByName("ldap") print "--------- Reading attribute (get)." print ldap.get(libuser.LOGINSHELL) print "--------- Reading attribute (map)." print ldap[libuser.LOGINSHELL] print "--------- Reading keys." print ldap.keys() print "--------- Setting attribute." ldap.set(libuser.LOGINSHELL, ["/bin/true"]) ldap[libuser.LOGINSHELL] = "/bin/true" ldap[libuser.LOGINSHELL] = ["/bin/true"] print "--------- Reading attribute (get)." print ldap.get(libuser.LOGINSHELL) print "--------- Reading attribute (map)." print ldap[libuser.LOGINSHELL] print "--------- Getting directory list." dir(ldap) print "--------- Modifying user." admin.modifyUser(ldap) print "--------- Enumerating members of the wheel group." print admin.enumerateUsersByGroup("wheel") print "--------- Looking up the wheel group." wheel = admin.lookupGroupByName("wheel") print "--------- Reading attribute (memberUid)." print wheel[libuser.MEMBERUID] print "--------- Creating a new user (jimbo)." jimbo = admin.initUser("jimbo") for attr in jimbo.keys(): print " " + attr + ":", jimbo.get(attr) print "--------- Adding the user." jimbo[libuser.HOMEDIRECTORY] = '/var/jimbo-home' print "Set home directory to " + jimbo[libuser.HOMEDIRECTORY][0] admin.addUser(jimbo) print "--------- Grepping for the user." os.system("grep jimbo /etc/passwd /etc/group /etc/shadow /etc/gshadow") try: dir = jimbo.get(libuser.HOMEDIRECTORY) print "--------- Looking at user's directory." os.system("ls " + dir[0]) print "--------- Looking at mail spool directory." os.system("ls -l /var/mail/*") except: pass print "--------- Removing the user." admin.deleteUser(jimbo) admin.removeHome(jimbo) admin.removeMail(jimbo) print "--------- Grepping for the user." os.system("grep jimbo /etc/passwd /etc/group /etc/shadow /etc/gshadow") print "--------- Getting a list of all users." users = admin.enumerateUsersFull() for user in users: print " User `" + user[libuser.USERNAME][0] + "' has uid ", user[libuser.UIDNUMBER][0] libuser-0.60~dfsg/python/libusermodule.c0000644000175000017500000001227712226342570020446 0ustar tzafrirtzafrir/* Copyright (C) 2001,2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include "../lib/user.h" #include "../lib/user_private.h" #include "common.h" #include "admin.c" #include "ent.c" #include "misc.c" /* Return a list of the valid shells in the system, picked up from * getusershells(). */ static PyObject * libuser_get_user_shells(PyObject *self, PyObject *ignored) { PyObject *ret; const char *shell; (void)self; (void)ignored; DEBUG_ENTRY; ret = PyList_New(0); setusershell(); while ((shell = getusershell()) != NULL) { PyObject *str; str = PyString_FromString(shell); PyList_Append(ret, str); Py_DECREF(str); } endusershell(); DEBUG_EXIT; return ret; } static PyObject * libuser_validate_id_value(PyObject *self, PyObject *value) { PY_LONG_LONG ll; DEBUG_ENTRY; ll = PyLong_AsLongLong(value); if (PyErr_Occurred()) goto error; if ((id_t)ll != ll) { PyErr_SetString(PyExc_OverflowError, _("Value out of range")); goto error; } if (ll < 0) { PyErr_SetString(PyExc_ValueError, _("ID must not be negative")); goto error; } if (ll == LU_VALUE_INVALID_ID) { PyErr_SetString(PyExc_ValueError, _("Invalid ID value")); goto error; } DEBUG_EXIT; Py_RETURN_NONE; error: DEBUG_EXIT; return NULL; } static PyMethodDef libuser_methods[] = { {"admin", (PyCFunction) libuser_admin_new, METH_VARARGS | METH_KEYWORDS, "create a new administration context"}, {"prompt", libuser_prompt_new, METH_NOARGS, "create and return a new prompt record"}, {"get_user_shells", libuser_get_user_shells, METH_NOARGS, "return a list of valid shells"}, {"ADMIN", (PyCFunction) libuser_admin_new, METH_VARARGS | METH_KEYWORDS, "create a new administration context"}, {"PROMPT", libuser_prompt_new, METH_NOARGS, "create and return a new prompt record"}, {"getUserShells", libuser_get_user_shells, METH_NOARGS, "return a list of valid shells"}, {"validateIdValue", libuser_validate_id_value, METH_O, "validate an id_t value"}, {NULL, NULL, 0, NULL}, }; /* Add KEY=VALUE to DICT, stealing the refrence to VALUE. */ static void dict_add_stolen_object(PyObject *dict, const char *key, PyObject *value) { PyDict_SetItemString(dict, key, value); Py_DECREF(value); } /* Add KEY=VALUE to DICT */ static void dict_add_string(PyObject *dict, const char *key, const char *value) { dict_add_stolen_object(dict, key, PyString_FromString(value)); } void initlibuser(void) { PyObject *module, *dict; DEBUG_ENTRY; module = Py_InitModule("libuser", libuser_methods); dict = PyModule_GetDict(module); dict_add_stolen_object(dict, "USER", PyInt_FromLong(lu_user)); dict_add_stolen_object(dict, "GROUP", PyInt_FromLong(lu_group)); /* User attributes. */ dict_add_string(dict, "USERNAME", LU_USERNAME); dict_add_string(dict, "USERPASSWORD", LU_USERPASSWORD); dict_add_string(dict, "UIDNUMBER", LU_UIDNUMBER); dict_add_string(dict, "GIDNUMBER", LU_GIDNUMBER); dict_add_string(dict, "GECOS", LU_GECOS); dict_add_string(dict, "HOMEDIRECTORY", LU_HOMEDIRECTORY); dict_add_string(dict, "LOGINSHELL", LU_LOGINSHELL); /* Group attributes. */ dict_add_string(dict, "GROUPNAME", LU_GROUPNAME); dict_add_string(dict, "GROUPPASSWORD", LU_GROUPPASSWORD); dict_add_string(dict, "ADMINISTRATORNAME", LU_ADMINISTRATORNAME); dict_add_string(dict, "MEMBERNAME", LU_MEMBERNAME); /* Shadow attributes. */ dict_add_string(dict, "SHADOWNAME", LU_SHADOWNAME); dict_add_string(dict, "SHADOWPASSWORD", LU_SHADOWPASSWORD); dict_add_string(dict, "SHADOWLASTCHANGE", LU_SHADOWLASTCHANGE); dict_add_string(dict, "SHADOWMIN", LU_SHADOWMIN); dict_add_string(dict, "SHADOWMAX", LU_SHADOWMAX); dict_add_string(dict, "SHADOWWARNING", LU_SHADOWWARNING); dict_add_string(dict, "SHADOWINACTIVE", LU_SHADOWINACTIVE); dict_add_string(dict, "SHADOWEXPIRE", LU_SHADOWEXPIRE); dict_add_string(dict, "SHADOWFLAG", LU_SHADOWFLAG); /* Additional fields. */ dict_add_string(dict, "COMMONNAME", LU_COMMONNAME); dict_add_string(dict, "GIVENNAME", LU_GIVENNAME); dict_add_string(dict, "SN", LU_SN); dict_add_string(dict, "ROOMNUMBER", LU_ROOMNUMBER); dict_add_string(dict, "TELEPHONENUMBER", LU_TELEPHONENUMBER); dict_add_string(dict, "HOMEPHONE", LU_HOMEPHONE); dict_add_string(dict, "EMAIL", LU_EMAIL); /* Miscellaneous. */ dict_add_stolen_object(dict, "UT_NAMESIZE", PyInt_FromLong(UT_NAMESIZE)); dict_add_stolen_object(dict, "VALUE_INVALID_ID", PyLong_FromLongLong(LU_VALUE_INVALID_ID)); DEBUG_EXIT; } libuser-0.60~dfsg/COPYING0000644000175000017500000006144712226342567015152 0ustar tzafrirtzafrir GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1991 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the library GPL. It is numbered 2 because it goes with version 2 of the ordinary GPL.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Library General Public License, applies to some specially designated Free Software Foundation software, and to any other libraries whose authors decide to use it. You can use it for your libraries, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library, or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link a program with the library, you must provide complete object files to the recipients so that they can relink them with the library, after making changes to the library and recompiling it. And you must show them these terms so they know their rights. Our method of protecting your rights has two steps: (1) copyright the library, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the library. Also, for each distributor's protection, we want to make certain that everyone understands that there is no warranty for this free library. If the library is modified by someone else and passed on, we want its recipients to know that what they have is not the original version, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that companies distributing free software will individually obtain patent licenses, thus in effect transforming the program into proprietary software. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License, which was designed for utility programs. This license, the GNU Library General Public License, applies to certain designated libraries. This license is quite different from the ordinary one; be sure to read it in full, and don't assume that anything in it is the same as in the ordinary license. The reason we have a separate public license for some libraries is that they blur the distinction we usually make between modifying or adding to a program and simply using it. Linking a program with a library, without changing the library, is in some sense simply using the library, and is analogous to running a utility program or application program. However, in a textual and legal sense, the linked executable is a combined work, a derivative of the original library, and the ordinary General Public License treats it as such. Because of this blurred distinction, using the ordinary General Public License for libraries did not effectively promote software sharing, because most developers did not use the libraries. We concluded that weaker conditions might promote sharing better. However, unrestricted linking of non-free programs would deprive the users of those programs of all benefit from the free status of the libraries themselves. This Library General Public License is intended to permit developers of non-free programs to use free libraries, while preserving your freedom as a user of such programs to change the free libraries that are incorporated in them. (We have not seen how to achieve this as regards changes in header files, but we have achieved it as regards changes in the actual functions of the Library.) The hope is that this will lead to faster development of free libraries. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, while the latter only works together with the library. Note that it is possible for a library to be covered by the ordinary General Public License rather than by this special one. GNU LIBRARY GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Library General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also compile or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. c) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. d) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Library General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! libuser-0.60~dfsg/config.h.in0000644000175000017500000001051412226342574016125 0ustar tzafrirtzafrir/* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* Shut up warnings about deprecated GValueArray */ #undef GLIB_VERSION_MIN_REQUIRED /* Stay away from deprecated glib functionality. */ #undef G_DISABLE_DEPRECATED /* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework. */ #undef HAVE_CFLOCALECOPYCURRENT /* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework. */ #undef HAVE_CFPREFERENCESCOPYAPPVALUE /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define if you have the iconv() function and it works. */ #undef HAVE_ICONV /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `sasl_user_exists' function. */ #undef HAVE_SASL_USER_EXISTS /* Define to 1 if you have the `secure_getenv' function. */ #undef HAVE_SECURE_GETENV /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if you have the `__secure_getenv' function. */ #undef HAVE___SECURE_GETENV /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif /* Version number of package */ #undef VERSION /* Define to 1 to use SELinux extensions */ #undef WITH_SELINUX /* Enable large inode numbers on Mac OS X 10.5. */ #ifndef _DARWIN_USE_64_BIT_INODE # define _DARWIN_USE_64_BIT_INODE 1 #endif /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS /* Define for large files, on AIX-style hosts. */ #undef _LARGE_FILES /* Define to 1 if on MINIX. */ #undef _MINIX /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to `int' if doesn't define. */ #undef gid_t /* Define to `int' if does not define. */ #undef mode_t /* Define to `long int' if does not define. */ #undef off_t /* Define to `unsigned int' if does not define. */ #undef size_t /* Define to `int' if doesn't define. */ #undef uid_t libuser-0.60~dfsg/docs/0000755000175000017500000000000012330643523015023 5ustar tzafrirtzafrirlibuser-0.60~dfsg/docs/reference/0000755000175000017500000000000012226342606016763 5ustar tzafrirtzafrirlibuser-0.60~dfsg/docs/reference/libuser.types0000644000175000017500000000000012226342606021504 0ustar tzafrirtzafrirlibuser-0.60~dfsg/docs/reference/libuser-docs.sgml0000644000175000017500000000210012226342567022241 0ustar tzafrirtzafrir ]> libuser Reference Manual libuser API Index Index of deprecated API libuser-0.60~dfsg/docs/reference/gtk-doc.make0000644000175000017500000002277312150401016021150 0ustar tzafrirtzafrir# -*- mode: makefile -*- #################################### # Everything below here is generic # #################################### if GTK_DOC_USE_LIBTOOL GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) GTKDOC_RUN = $(LIBTOOL) --mode=execute else GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) GTKDOC_RUN = endif # We set GPATH here; this gives us semantics for GNU make # which are more like other make's VPATH, when it comes to # whether a source that is a target of one rule is then # searched for in VPATH/GPATH. # GPATH = $(srcdir) TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE) SETUP_FILES = \ $(content_files) \ $(DOC_MAIN_SGML_FILE) \ $(DOC_MODULE)-sections.txt \ $(DOC_MODULE)-overrides.txt EXTRA_DIST = \ $(HTML_IMAGES) \ $(SETUP_FILES) DOC_STAMPS=setup-build.stamp scan-build.stamp tmpl-build.stamp sgml-build.stamp \ html-build.stamp pdf-build.stamp \ tmpl.stamp sgml.stamp html.stamp pdf.stamp SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ $(DOC_MODULE).interfaces \ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals REPORT_FILES = \ $(DOC_MODULE)-undocumented.txt \ $(DOC_MODULE)-undeclared.txt \ $(DOC_MODULE)-unused.txt CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) if ENABLE_GTK_DOC if GTK_DOC_BUILD_HTML HTML_BUILD_STAMP=html-build.stamp else HTML_BUILD_STAMP= endif if GTK_DOC_BUILD_PDF PDF_BUILD_STAMP=pdf-build.stamp else PDF_BUILD_STAMP= endif all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) else all-local: endif docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) $(REPORT_FILES): sgml-build.stamp #### setup #### GTK_DOC_V_SETUP=$(GTK_DOC_V_SETUP_$(V)) GTK_DOC_V_SETUP_=$(GTK_DOC_V_SETUP_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_SETUP_0=@echo " DOC Preparing build"; setup-build.stamp: -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \ if test "x$$files" != "x" ; then \ for file in $$files ; do \ test -f $(abs_srcdir)/$$file && \ cp -pu $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \ done; \ fi; \ test -d $(abs_srcdir)/tmpl && \ { cp -rp $(abs_srcdir)/tmpl $(abs_builddir)/; \ chmod -R u+w $(abs_builddir)/tmpl; } \ fi $(AM_V_at)touch setup-build.stamp #### scan #### GTK_DOC_V_SCAN=$(GTK_DOC_V_SCAN_$(V)) GTK_DOC_V_SCAN_=$(GTK_DOC_V_SCAN_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_SCAN_0=@echo " DOC Scanning header files"; GTK_DOC_V_INTROSPECT=$(GTK_DOC_V_INTROSPECT_$(V)) GTK_DOC_V_INTROSPECT_=$(GTK_DOC_V_INTROSPECT_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_INTROSPECT_0=@echo " DOC Introspecting gobjects"; scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) $(GTK_DOC_V_SCAN)_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ scanobj_options=""; \ gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ scanobj_options="--verbose"; \ fi; \ fi; \ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ else \ for i in $(SCANOBJ_FILES) ; do \ test -f $$i || touch $$i ; \ done \ fi $(AM_V_at)touch scan-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp @true #### templates #### GTK_DOC_V_TMPL=$(GTK_DOC_V_TMPL_$(V)) GTK_DOC_V_TMPL_=$(GTK_DOC_V_TMPL_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_TMPL_0=@echo " DOC Rebuilding template files"; tmpl-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(GTK_DOC_V_TMPL)gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) $(AM_V_at)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ if test -w $(abs_srcdir) ; then \ cp -rp $(abs_builddir)/tmpl $(abs_srcdir)/; \ fi \ fi $(AM_V_at)touch tmpl-build.stamp tmpl.stamp: tmpl-build.stamp @true $(srcdir)/tmpl/*.sgml: @true #### xml #### GTK_DOC_V_XML=$(GTK_DOC_V_XML_$(V)) GTK_DOC_V_XML_=$(GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_XML_0=@echo " DOC Building XML"; sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) $(GTK_DOC_V_XML)-chmod -R u+w $(srcdir) && _source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) $(AM_V_at)touch sgml-build.stamp sgml.stamp: sgml-build.stamp @true #### html #### GTK_DOC_V_HTML=$(GTK_DOC_V_HTML_$(V)) GTK_DOC_V_HTML_=$(GTK_DOC_V_HTML_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_HTML_0=@echo " DOC Building HTML"; GTK_DOC_V_XREF=$(GTK_DOC_V_XREF_$(V)) GTK_DOC_V_XREF_=$(GTK_DOC_V_XREF_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_XREF_0=@echo " DOC Fixing cross-references"; html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \ mkhtml_options=""; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ mkhtml_options="$$mkhtml_options --verbose"; \ fi; \ fi; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \ if test "$(?)" = "0"; then \ mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \ fi; \ cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) -@test "x$(HTML_IMAGES)" = "x" || \ for file in $(HTML_IMAGES) ; do \ if test -f $(abs_srcdir)/$$file ; then \ cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ fi; \ if test -f $(abs_builddir)/$$file ; then \ cp $(abs_builddir)/$$file $(abs_builddir)/html; \ fi; \ done; $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) $(AM_V_at)touch html-build.stamp #### pdf #### GTK_DOC_V_PDF=$(GTK_DOC_V_PDF_$(V)) GTK_DOC_V_PDF_=$(GTK_DOC_V_PDF_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_PDF_0=@echo " DOC Building PDF"; pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \ mkpdf_options=""; \ gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ mkpdf_options="$$mkpdf_options --verbose"; \ fi; \ fi; \ if test "x$(HTML_IMAGES)" != "x"; then \ for img in $(HTML_IMAGES); do \ part=`dirname $$img`; \ echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \ if test $$? != 0; then \ mkpdf_options="$$mkpdf_options --imgdir=$$part"; \ fi; \ done; \ fi; \ gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS) $(AM_V_at)touch pdf-build.stamp ############## clean-local: @rm -f *~ *.bak @rm -rf .libs distclean-local: @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \ $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \ rm -rf tmpl; \ fi maintainer-clean-local: @rm -rf xml html install-data-local: @installfiles=`echo $(builddir)/html/*`; \ if test "$$installfiles" = '$(builddir)/html/*'; \ then echo 1>&2 'Nothing to install' ; \ else \ if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ fi; \ $(mkinstalldirs) $${installdir} ; \ for i in $$installfiles; do \ echo ' $(INSTALL_DATA) '$$i ; \ $(INSTALL_DATA) $$i $${installdir}; \ done; \ if test -n "$(DOC_MODULE_VERSION)"; then \ mv -f $${installdir}/$(DOC_MODULE).devhelp2 \ $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \ fi; \ $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \ fi uninstall-local: @if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ fi; \ rm -rf $${installdir} # # Require gtk-doc when making dist # if ENABLE_GTK_DOC dist-check-gtkdoc: docs else dist-check-gtkdoc: @echo "*** gtk-doc must be installed and enabled in order to make dist" @false endif dist-hook: dist-check-gtkdoc dist-hook-local @mkdir $(distdir)/tmpl @mkdir $(distdir)/html @-cp ./tmpl/*.sgml $(distdir)/tmpl @cp ./html/* $(distdir)/html @-cp ./$(DOC_MODULE).pdf $(distdir)/ @-cp ./$(DOC_MODULE).types $(distdir)/ @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/ @cd $(distdir) && rm -f $(DISTCLEANFILES) @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html .PHONY : dist-hook-local docs libuser-0.60~dfsg/docs/reference/Makefile.in0000644000175000017500000007440412226342575021046 0ustar tzafrirtzafrir# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # -*- mode: makefile -*- #################################### # Everything below here is generic # #################################### VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ DIST_COMMON = $(srcdir)/gtk-doc.make $(srcdir)/Makefile.in \ $(srcdir)/Makefile.am subdir = docs/reference ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CRYPT_LIBS = @CRYPT_LIBS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GOBJECT_CFLAGS = @GOBJECT_CFLAGS@ GOBJECT_LIBS = @GOBJECT_LIBS@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ GTKDOC_MKPDF = @GTKDOC_MKPDF@ GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ NSCD = @NSCD@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SELINUX_LIBS = @SELINUX_LIBS@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ YACC = @YACC@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # We require automake 1.6 at least. # The 'serial-tests' is a workaround for buggy test handling in # automake-1.13.4, which tries to save output in /usr/bin/gktdoc-check.{trs,log} AUTOMAKE_OPTIONS = 1.6 serial-tests # This is a blank Makefile.am for using gtk-doc. # Copy this to your project's API docs directory and modify the variables to # suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples # of using the various options. # The name of the module, e.g. 'glib'. DOC_MODULE = libuser # Uncomment for versioned docs and specify the version of the module, e.g. '2'. #DOC_MODULE_VERSION=2 # The top-level SGML file. You can change this if you want to. DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml # Directories containing the source code, relative to $(srcdir). # gtk-doc will search all .c and .h files beneath these paths # for inline comments documenting functions and macros. # e.g. DOC_SOURCE_DIR=../../../gtk ../../../gdk DOC_SOURCE_DIR = $(abs_top_srcdir)/lib # Extra options to pass to gtkdoc-scangobj. Not normally needed. SCANGOBJ_OPTIONS = # Extra options to supply to gtkdoc-scan. # e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" SCAN_OPTIONS = --deprecated-guards=LU_DISABLE_DEPRECATED # Extra options to supply to gtkdoc-mkdb. # e.g. MKDB_OPTIONS=--xml-mode --output-format=xml MKDB_OPTIONS = --xml-mode --output-format=xml # Extra options to supply to gtkdoc-mktmpl # e.g. MKTMPL_OPTIONS=--only-section-tmpl MKTMPL_OPTIONS = # Extra options to supply to gtkdoc-mkhtml MKHTML_OPTIONS = # Extra options to supply to gtkdoc-fixref. Not normally needed. # e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html FIXXREF_OPTIONS = # Used for dependencies. The docs will be rebuilt if any of these change. # e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h # e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c HFILE_GLOB = $(top_srcdir)/lib/*.h CFILE_GLOB = $(top_srcdir)/lib/*.c # Extra header to include when scanning, which are not under DOC_SOURCE_DIR # e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h EXTRA_HFILES = # Header files or dirs to ignore when scanning. Use base file/dir names # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h private_code IGNORE_HFILES = internal.h user_private.h # Images to copy into HTML directory. # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png HTML_IMAGES = # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). # e.g. content_files=running.sgml building.sgml changes-2.0.sgml content_files = # SGML files where gtk-doc abbrevations (#GtkWidget) are expanded # These files must be listed here *and* in content_files # e.g. expand_content_files=running.sgml expand_content_files = # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library. # Only needed if you are using gtkdoc-scangobj to dynamically query widget # signals and properties. # e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) GTKDOC_CFLAGS = GTKDOC_LIBS = @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_RUN = @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_RUN = $(LIBTOOL) --mode=execute # We set GPATH here; this gives us semantics for GNU make # which are more like other make's VPATH, when it comes to # whether a source that is a target of one rule is then # searched for in VPATH/GPATH. # GPATH = $(srcdir) TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) SETUP_FILES = \ $(content_files) \ $(DOC_MAIN_SGML_FILE) \ $(DOC_MODULE)-sections.txt \ $(DOC_MODULE)-overrides.txt # This includes the standard gtk-doc make rules, copied by gtkdocize. # Other files to distribute # e.g. EXTRA_DIST += version.xml.in EXTRA_DIST = $(HTML_IMAGES) $(SETUP_FILES) DOC_STAMPS = setup-build.stamp scan-build.stamp tmpl-build.stamp sgml-build.stamp \ html-build.stamp pdf-build.stamp \ tmpl.stamp sgml.stamp html.stamp pdf.stamp SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ $(DOC_MODULE).interfaces \ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals REPORT_FILES = \ $(DOC_MODULE)-undocumented.txt \ $(DOC_MODULE)-undeclared.txt \ $(DOC_MODULE)-unused.txt CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP = @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP = @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp #### setup #### GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_$(V)) GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_SETUP_0 = @echo " DOC Preparing build"; #### scan #### GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_$(V)) GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_SCAN_0 = @echo " DOC Scanning header files"; GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_$(V)) GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_INTROSPECT_0 = @echo " DOC Introspecting gobjects"; #### templates #### GTK_DOC_V_TMPL = $(GTK_DOC_V_TMPL_$(V)) GTK_DOC_V_TMPL_ = $(GTK_DOC_V_TMPL_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_TMPL_0 = @echo " DOC Rebuilding template files"; #### xml #### GTK_DOC_V_XML = $(GTK_DOC_V_XML_$(V)) GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_XML_0 = @echo " DOC Building XML"; #### html #### GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_$(V)) GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_HTML_0 = @echo " DOC Building HTML"; GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_$(V)) GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_XREF_0 = @echo " DOC Fixing cross-references"; #### pdf #### GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_$(V)) GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_$(AM_DEFAULT_VERBOSITY)) GTK_DOC_V_PDF_0 = @echo " DOC Building PDF"; # Files not to distribute # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt #DISTCLEANFILES += # Comment this out if you want 'make check' to test you doc status # and run some sanity checks @ENABLE_GTK_DOC_TRUE@TESTS_ENVIRONMENT = cd $(srcdir) && \ @ENABLE_GTK_DOC_TRUE@ DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \ @ENABLE_GTK_DOC_TRUE@ SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir) @ENABLE_GTK_DOC_TRUE@TESTS = $(GTKDOC_CHECK) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/gtk-doc.make $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/reference/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(srcdir)/gtk-doc.make: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ list=' $(TESTS) '; \ $(am__tty_colors); \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ elif test -f $$tst; then dir=; \ else dir="$(srcdir)/"; fi; \ if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ col=$$red; res=XPASS; \ ;; \ *) \ col=$$grn; res=PASS; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xfail=`expr $$xfail + 1`; \ col=$$lgn; res=XFAIL; \ ;; \ *) \ failed=`expr $$failed + 1`; \ col=$$red; res=FAIL; \ ;; \ esac; \ else \ skip=`expr $$skip + 1`; \ col=$$blu; res=SKIP; \ fi; \ echo "$${col}$$res$${std}: $$tst"; \ done; \ if test "$$all" -eq 1; then \ tests="test"; \ All=""; \ else \ tests="tests"; \ All="All "; \ fi; \ if test "$$failed" -eq 0; then \ if test "$$xfail" -eq 0; then \ banner="$$All$$all $$tests passed"; \ else \ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ fi; \ else \ if test "$$xpass" -eq 0; then \ banner="$$failed of $$all $$tests failed"; \ else \ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ fi; \ fi; \ dashes="$$banner"; \ skipped=""; \ if test "$$skip" -ne 0; then \ if test "$$skip" -eq 1; then \ skipped="($$skip test was not run)"; \ else \ skipped="($$skip tests were not run)"; \ fi; \ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ if test "$$failed" -eq 0; then \ col="$$grn"; \ else \ col="$$red"; \ fi; \ echo "$${col}$$dashes$${std}"; \ echo "$${col}$$banner$${std}"; \ test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \ test -z "$$report" || echo "$${col}$$report$${std}"; \ echo "$${col}$$dashes$${std}"; \ test "$$failed" -eq 0; \ else :; fi distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook check-am: all-am $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile all-local installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-local dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-data-local install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic \ maintainer-clean-local mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-local .MAKE: check-am install-am install-strip .PHONY: all all-am all-local check check-TESTS check-am clean \ clean-generic clean-libtool clean-local cscopelist-am ctags-am \ dist-hook distclean distclean-generic distclean-libtool \ distclean-local distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-data-local install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic maintainer-clean-local mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am uninstall-local @ENABLE_GTK_DOC_TRUE@all-local: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) @ENABLE_GTK_DOC_FALSE@all-local: docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP) $(REPORT_FILES): sgml-build.stamp setup-build.stamp: -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \ if test "x$$files" != "x" ; then \ for file in $$files ; do \ test -f $(abs_srcdir)/$$file && \ cp -pu $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \ done; \ fi; \ test -d $(abs_srcdir)/tmpl && \ { cp -rp $(abs_srcdir)/tmpl $(abs_builddir)/; \ chmod -R u+w $(abs_builddir)/tmpl; } \ fi $(AM_V_at)touch setup-build.stamp scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) $(GTK_DOC_V_SCAN)_source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES) $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \ scanobj_options=""; \ gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ scanobj_options="--verbose"; \ fi; \ fi; \ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \ gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \ else \ for i in $(SCANOBJ_FILES) ; do \ test -f $$i || touch $$i ; \ done \ fi $(AM_V_at)touch scan-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp @true tmpl-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(GTK_DOC_V_TMPL)gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) $(AM_V_at)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ if test -w $(abs_srcdir) ; then \ cp -rp $(abs_builddir)/tmpl $(abs_srcdir)/; \ fi \ fi $(AM_V_at)touch tmpl-build.stamp tmpl.stamp: tmpl-build.stamp @true $(srcdir)/tmpl/*.sgml: @true sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) $(GTK_DOC_V_XML)-chmod -R u+w $(srcdir) && _source_dir='' ; \ for i in $(DOC_SOURCE_DIR) ; do \ _source_dir="$${_source_dir} --source-dir=$$i" ; \ done ; \ gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS) $(AM_V_at)touch sgml-build.stamp sgml.stamp: sgml-build.stamp @true html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \ mkhtml_options=""; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ mkhtml_options="$$mkhtml_options --verbose"; \ fi; \ fi; \ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \ if test "$(?)" = "0"; then \ mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \ fi; \ cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) -@test "x$(HTML_IMAGES)" = "x" || \ for file in $(HTML_IMAGES) ; do \ if test -f $(abs_srcdir)/$$file ; then \ cp $(abs_srcdir)/$$file $(abs_builddir)/html; \ fi; \ if test -f $(abs_builddir)/$$file ; then \ cp $(abs_builddir)/$$file $(abs_builddir)/html; \ fi; \ done; $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) $(AM_V_at)touch html-build.stamp pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \ mkpdf_options=""; \ gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \ if test "$(?)" = "0"; then \ if test "x$(V)" = "x1"; then \ mkpdf_options="$$mkpdf_options --verbose"; \ fi; \ fi; \ if test "x$(HTML_IMAGES)" != "x"; then \ for img in $(HTML_IMAGES); do \ part=`dirname $$img`; \ echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \ if test $$? != 0; then \ mkpdf_options="$$mkpdf_options --imgdir=$$part"; \ fi; \ done; \ fi; \ gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS) $(AM_V_at)touch pdf-build.stamp ############## clean-local: @rm -f *~ *.bak @rm -rf .libs distclean-local: @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \ $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \ rm -f $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types; \ rm -rf tmpl; \ fi maintainer-clean-local: @rm -rf xml html install-data-local: @installfiles=`echo $(builddir)/html/*`; \ if test "$$installfiles" = '$(builddir)/html/*'; \ then echo 1>&2 'Nothing to install' ; \ else \ if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ fi; \ $(mkinstalldirs) $${installdir} ; \ for i in $$installfiles; do \ echo ' $(INSTALL_DATA) '$$i ; \ $(INSTALL_DATA) $$i $${installdir}; \ done; \ if test -n "$(DOC_MODULE_VERSION)"; then \ mv -f $${installdir}/$(DOC_MODULE).devhelp2 \ $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \ fi; \ $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \ fi uninstall-local: @if test -n "$(DOC_MODULE_VERSION)"; then \ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \ else \ installdir="$(DESTDIR)$(TARGET_DIR)"; \ fi; \ rm -rf $${installdir} # # Require gtk-doc when making dist # @ENABLE_GTK_DOC_TRUE@dist-check-gtkdoc: docs @ENABLE_GTK_DOC_FALSE@dist-check-gtkdoc: @ENABLE_GTK_DOC_FALSE@ @echo "*** gtk-doc must be installed and enabled in order to make dist" @ENABLE_GTK_DOC_FALSE@ @false dist-hook: dist-check-gtkdoc dist-hook-local @mkdir $(distdir)/tmpl @mkdir $(distdir)/html @-cp ./tmpl/*.sgml $(distdir)/tmpl @cp ./html/* $(distdir)/html @-cp ./$(DOC_MODULE).pdf $(distdir)/ @-cp ./$(DOC_MODULE).types $(distdir)/ @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/ @cd $(distdir) && rm -f $(DISTCLEANFILES) @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html .PHONY : dist-hook-local docs -include $(top_srcdir)/git.mk # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: libuser-0.60~dfsg/docs/reference/Makefile.am0000644000175000017500000000727612226342567021041 0ustar tzafrirtzafrir## Process this file with automake to produce Makefile.in # We require automake 1.6 at least. # The 'serial-tests' is a workaround for buggy test handling in # automake-1.13.4, which tries to save output in /usr/bin/gktdoc-check.{trs,log} AUTOMAKE_OPTIONS = 1.6 serial-tests # This is a blank Makefile.am for using gtk-doc. # Copy this to your project's API docs directory and modify the variables to # suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples # of using the various options. # The name of the module, e.g. 'glib'. DOC_MODULE=libuser # Uncomment for versioned docs and specify the version of the module, e.g. '2'. #DOC_MODULE_VERSION=2 # The top-level SGML file. You can change this if you want to. DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml # Directories containing the source code, relative to $(srcdir). # gtk-doc will search all .c and .h files beneath these paths # for inline comments documenting functions and macros. # e.g. DOC_SOURCE_DIR=../../../gtk ../../../gdk DOC_SOURCE_DIR=$(abs_top_srcdir)/lib # Extra options to pass to gtkdoc-scangobj. Not normally needed. SCANGOBJ_OPTIONS= # Extra options to supply to gtkdoc-scan. # e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" SCAN_OPTIONS=--deprecated-guards=LU_DISABLE_DEPRECATED # Extra options to supply to gtkdoc-mkdb. # e.g. MKDB_OPTIONS=--xml-mode --output-format=xml MKDB_OPTIONS=--xml-mode --output-format=xml # Extra options to supply to gtkdoc-mktmpl # e.g. MKTMPL_OPTIONS=--only-section-tmpl MKTMPL_OPTIONS= # Extra options to supply to gtkdoc-mkhtml MKHTML_OPTIONS= # Extra options to supply to gtkdoc-fixref. Not normally needed. # e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html FIXXREF_OPTIONS= # Used for dependencies. The docs will be rebuilt if any of these change. # e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h # e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c HFILE_GLOB=$(top_srcdir)/lib/*.h CFILE_GLOB=$(top_srcdir)/lib/*.c # Extra header to include when scanning, which are not under DOC_SOURCE_DIR # e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h EXTRA_HFILES= # Header files or dirs to ignore when scanning. Use base file/dir names # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h private_code IGNORE_HFILES=internal.h user_private.h # Images to copy into HTML directory. # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png HTML_IMAGES= # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). # e.g. content_files=running.sgml building.sgml changes-2.0.sgml content_files= # SGML files where gtk-doc abbrevations (#GtkWidget) are expanded # These files must be listed here *and* in content_files # e.g. expand_content_files=running.sgml expand_content_files= # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library. # Only needed if you are using gtkdoc-scangobj to dynamically query widget # signals and properties. # e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) GTKDOC_CFLAGS= GTKDOC_LIBS= # This includes the standard gtk-doc make rules, copied by gtkdocize. include $(srcdir)/gtk-doc.make # Other files to distribute # e.g. EXTRA_DIST += version.xml.in EXTRA_DIST += # Files not to distribute # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt #DISTCLEANFILES += # Comment this out if you want 'make check' to test you doc status # and run some sanity checks if ENABLE_GTK_DOC TESTS_ENVIRONMENT = cd $(srcdir) && \ DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \ SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir) TESTS = $(GTKDOC_CHECK) endif -include $(top_srcdir)/git.mk libuser-0.60~dfsg/docs/reference/html/0000755000175000017500000000000012226342606017727 5ustar tzafrirtzafrirlibuser-0.60~dfsg/docs/reference/html/libuser-value.html0000644000175000017500000004262112226342606023401 0ustar tzafrirtzafrir value

value

value — Simplified interface to GValue types used in libuser entities.

Synopsis

#include <libuser/user.h>

#define             LU_VALUE_INVALID_ID
char *              lu_value_strdup                     (const GValue *value);
gboolean            lu_value_init_set_attr_from_string  (GValue *value,
                                                         const char *attr,
                                                         const char *string,
                                                         struct lu_error **error);
void                lu_value_init_set_id                (GValue *value,
                                                         id_t id);
id_t                lu_value_get_id                     (const GValue *value);
int                 lu_values_equal                     (const GValue *a,
                                                         const GValue *b);

Description

Libuser entities store attribute values as GValue, which allows representing any possible data type. Only a few types are needed in practice; the only types applications should hard-code are G_TYPE_LONG and G_TYPE_STRING (G_TYPE_STRING can usually be used as a fallback for other number types).

The only currently used data types that are not conveniently supported using the above types are uid_t and gid_t (which can be together represented in id_t), because they can support values outside of the range of glong. Helper functions are provided to convert values between id_t and GValue, even if the value is stored using G_TYPE_STRING. The GValue types used for storing id_t values are an internal implementation detail of libuser and applications should not rely on them.

Values of each attribute are expected to have a specific type, documented in the documentation of the specific attribute name. Using other types (e.g. using G_TYPE_STRING for LU_UIDNUMBER) is not allowed and results in undefined behavior. You can use lu_value_strdup() and lu_value_init_set_attr_from_string() for conversion between strings and values appropriate for a specific attribute.

Details

LU_VALUE_INVALID_ID

#define LU_VALUE_INVALID_ID ((id_t)-1)

An id_t value that matches no valid user or group ID.


lu_value_strdup ()

char *              lu_value_strdup                     (const GValue *value);

Converts value, of any type used by libuser, to a string. Preferable to hard-coding checks for expected value types.

value :

GValue

Returns :

string, should be freed by g_free()

lu_value_init_set_attr_from_string ()

gboolean            lu_value_init_set_attr_from_string  (GValue *value,
                                                         const char *attr,
                                                         const char *string,
                                                         struct lu_error **error);

Initializes a zero-filled (uninitialized) value for storing a value of attribute attr and sets it to the contents of string. To see whether a specific type is used for an attribute, see the documentation of that attribute.

The error messages returned from this function don't contain the input string, to allow the caller to output at least partially usable error message without disclosing the invalid string in e.g. /etc/shadow, which might be somebody's misplaced password.

value :

GValue

attr :

Attribute name

string :

The string to convert

error :

Filled with a lu_error if an error occurs, or NULL if attr is unknown

Returns :

TRUE on success, FALSE on error or if attr is unknown

lu_value_init_set_id ()

void                lu_value_init_set_id                (GValue *value,
                                                         id_t id);

Initializes a zero-filled (uninitialized) value with an unspecified type and sets it to id.

value :

GValue

id :

User or group ID.

lu_value_get_id ()

id_t                lu_value_get_id                     (const GValue *value);

Get the contents of value. value should be initialized by lu_value_init_set_id() or use G_TYPE_LONG or G_TYPE_STRING.

If value does not contain a valid id_t value, LU_VALUE_INVALID_ID is returned.

value :

GValue

Returns :

ID value or LU_VALUE_INVALID_ID

lu_values_equal ()

int                 lu_values_equal                     (const GValue *a,
                                                         const GValue *b);

Check whether a and b have the same type and value.

a :

GValue

b :

GValue

Returns :

TRUE if a and b have the same type and value
libuser-0.60~dfsg/docs/reference/html/deprecated-api-index.html0000644000175000017500000000424012226342606024571 0ustar tzafrirtzafrir Index of deprecated API

Index of deprecated API

C

lu_context_t, typedef in user

E

lu_ent_t, typedef in entity
lu_error_t, typedef in error
libuser-0.60~dfsg/docs/reference/html/libuser-fs.html0000644000175000017500000005477112226342606022706 0ustar tzafrirtzafrir fs

fs

fs — Utilities for modifying the file system and other aspects of user/group management.

Synopsis

#include <libuser/fs.h>

gboolean            lu_homedir_move                     (const char *oldhome,
                                                         const char *newhome,
                                                         struct lu_error **error);
gboolean            lu_homedir_populate                 (struct lu_context *ctx,
                                                         const char *skeleton,
                                                         const char *directory,
                                                         uid_t owner,
                                                         gid_t group,
                                                         mode_t mode,
                                                         struct lu_error **error);
gboolean            lu_homedir_remove                   (const char *directory,
                                                         struct lu_error **error);
gboolean            lu_homedir_remove_for_user          (struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_homedir_remove_for_user_if_owned (struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_mail_spool_create                (struct lu_context *ctx,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_mail_spool_remove                (struct lu_context *ctx,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
#define             LU_NSCD_CACHE_GROUP
#define             LU_NSCD_CACHE_PASSWD
void                lu_nscd_flush_cache                 (const char *table);

Description

These routines allow an application to work with home directories, mail spools and nscd caches.

Details

lu_homedir_move ()

gboolean            lu_homedir_move                     (const char *oldhome,
                                                         const char *newhome,
                                                         struct lu_error **error);

Moves user's home directory to newhome.

Currently implemented by first creating a copy, then deleting the original, expect this to take a long time.

If you want to use this in a hostile environment, ensure that no untrusted user has write permission to any parent of oldhome or newhome. Usually /home is only writable by root, which is safe; user's write permission to oldhome itself is OK.

oldhome :

Path to the old home directory

newhome :

Path to the new home directory

error :

Filled with lu_error if an error occurs

Returns :

TRUE on success

lu_homedir_populate ()

gboolean            lu_homedir_populate                 (struct lu_context *ctx,
                                                         const char *skeleton,
                                                         const char *directory,
                                                         uid_t owner,
                                                         gid_t group,
                                                         mode_t mode,
                                                         struct lu_error **error);

Creates a new home directory for an user.

If you want to use this in a hostile environment, ensure that no untrusted user has write permission to any parent of skeleton or directory. Usually /home is only writable by root, which is safe.

ctx :

A context

skeleton :

Path to a "skeleton" directory, or NULL for the system default

directory :

The home directory to populate

owner :

UID to use for contents of the new home directory

group :

GID to use for contents of the new home directory that have GID set to 0 in the skeleton director

mode :

Mode to use for the top-level directory, also affected by umask

error :

Filled with lu_error if an error occurs

Returns :

TRUE on success

lu_homedir_remove ()

gboolean            lu_homedir_remove                   (const char *directory,
                                                         struct lu_error **error);

Recursively removes a user's home (or really, any) directory.

If you want to use this in a hostile environment, ensure that no untrusted user has write permission to any parent of directory.

directory :

Path to the root of the directory tree

error :

Filled with lu_error if an error occurs

Returns :

TRUE on success

lu_homedir_remove_for_user ()

gboolean            lu_homedir_remove_for_user          (struct lu_ent *ent,
                                                         struct lu_error **error);

Recursively removes the home directory of user ent.

If you want to use this in a hostile environment, ensure that no untrusted user has write permission to any parent of ent's home directory.

ent :

An entity describing the user

error :

Filled with lu_error if an error occurs

Returns :

TRUE on success

lu_homedir_remove_for_user_if_owned ()

gboolean            lu_homedir_remove_for_user_if_owned (struct lu_ent *ent,
                                                         struct lu_error **error);

Recursively removes the home directory of user ent, only if the directory is owned by ent. Otherwise fails with lu_error_homedir_not_owned.

If you want to use this in a hostile environment, ensure that no untrusted user has write permission to any parent of ent's home directory.

ent :

An entity describing the user

error :

Filled with lu_error if an error occurs

Returns :

TRUE on success

lu_mail_spool_create ()

gboolean            lu_mail_spool_create                (struct lu_context *ctx,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Creates a mail spool for the specified user.

ctx :

A context

ent :

An entity representing the relevant user

error :

Filled with lu_error if an error occurs

Returns :

TRUE on success

lu_mail_spool_remove ()

gboolean            lu_mail_spool_remove                (struct lu_context *ctx,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Creates a mail spool for the specified user.

ctx :

A context

ent :

An entity representing the relevant user

error :

Filled with lu_error if an error occurs

Returns :

TRUE on success

LU_NSCD_CACHE_GROUP

#define LU_NSCD_CACHE_GROUP "group"

Name of the NSCD cache containing group data.


LU_NSCD_CACHE_PASSWD

#define LU_NSCD_CACHE_PASSWD "passwd"

Name of the NSCD cache containing user data.


lu_nscd_flush_cache ()

void                lu_nscd_flush_cache                 (const char *table);

Flushes the specified nscd cache to make the changes performed by other libuser functions immediately visible.

table :

Name of the relevant nscd table
libuser-0.60~dfsg/docs/reference/html/api-index-full.html0000644000175000017500000007533012226342606023443 0ustar tzafrirtzafrir API Index

API Index

A

LU_ADMINISTRATORNAME, macro in entity

C

lu_cfg_read, function in config
lu_cfg_read_keys, function in config
lu_cfg_read_single, function in config
LU_COMMONNAME, macro in entity
lu_context, struct in user
lu_context_t, typedef in user

E

LU_EMAIL, macro in entity
lu_end, function in user
lu_ent, struct in entity
lu_ent_add, function in entity
lu_ent_add_current, function in entity
lu_ent_clear, function in entity
lu_ent_clear_all, function in entity
lu_ent_clear_all_current, function in entity
lu_ent_clear_current, function in entity
lu_ent_commit, function in entity
lu_ent_copy, function in entity
lu_ent_del, function in entity
lu_ent_del_current, function in entity
lu_ent_dump, function in entity
lu_ent_free, function in entity
lu_ent_get, function in entity
lu_ent_get_attributes, function in entity
lu_ent_get_attributes_current, function in entity
lu_ent_get_current, function in entity
lu_ent_get_first_id, function in entity
lu_ent_get_first_id_current, function in entity
lu_ent_get_first_string, function in entity
lu_ent_get_first_string_current, function in entity
lu_ent_get_first_value_strdup, function in entity
lu_ent_get_first_value_strdup_current, function in entity
lu_ent_has, function in entity
lu_ent_has_current, function in entity
lu_ent_new, function in entity
lu_ent_revert, function in entity
lu_ent_set, function in entity
lu_ent_set_current, function in entity
lu_ent_set_id, function in entity
lu_ent_set_id_current, function in entity
lu_ent_set_long, function in entity
lu_ent_set_long_current, function in entity
lu_ent_set_string, function in entity
lu_ent_set_string_current, function in entity
lu_ent_t, typedef in entity
lu_error, struct in error
LU_ERROR_CHECK, macro in error
lu_error_free, function in error
lu_error_is_error, function in error
lu_error_is_success, function in error
lu_error_is_warning, function in error
lu_error_new, function in error
lu_error_t, typedef in error

G

LU_GECOS, macro in entity
lu_get_modules, function in user
lu_get_prompter, function in user
LU_GIDNUMBER, macro in entity
LU_GIVENNAME, macro in entity
LU_GROUPNAME, macro in entity
LU_GROUPPASSWORD, macro in entity
lu_groups_enumerate, function in user
lu_groups_enumerate_by_user, function in user
lu_groups_enumerate_by_user_full, function in user
lu_groups_enumerate_full, function in user
lu_group_add, function in user
lu_group_default, function in user
lu_group_delete, function in user
lu_group_islocked, function in user
lu_group_lock, function in user
lu_group_lookup_id, function in user
lu_group_lookup_name, function in user
lu_group_modify, function in user
lu_group_removepass, function in user
lu_group_setpass, function in user
lu_group_unlock, function in user
lu_group_unlock_nonempty, function in user

H

LU_HOMEDIRECTORY, macro in entity
lu_homedir_move, function in fs
lu_homedir_populate, function in fs
lu_homedir_remove, function in fs
lu_homedir_remove_for_user, function in fs
lu_homedir_remove_for_user_if_owned, function in fs
LU_HOMEPHONE, macro in entity

L

LU_LOGINSHELL, macro in entity

M

lu_mail_spool_create, function in fs
lu_mail_spool_remove, function in fs
LU_MEMBERNAME, macro in entity

N

LU_NSCD_CACHE_GROUP, macro in fs
LU_NSCD_CACHE_PASSWD, macro in fs
lu_nscd_flush_cache, function in fs

P

lu_prompt_console, function in prompt
lu_prompt_console_quiet, function in prompt

R

LU_ROOMNUMBER, macro in entity

S

lu_set_modules, function in user
lu_set_prompter, function in user
LU_SHADOWEXPIRE, macro in entity
LU_SHADOWFLAG, macro in entity
LU_SHADOWINACTIVE, macro in entity
LU_SHADOWLASTCHANGE, macro in entity
LU_SHADOWMAX, macro in entity
LU_SHADOWMIN, macro in entity
LU_SHADOWNAME, macro in entity
LU_SHADOWPASSWORD, macro in entity
LU_SHADOWWARNING, macro in entity
LU_SN, macro in entity
lu_start, function in user
lu_strerror, function in error

T

LU_TELEPHONENUMBER, macro in entity

U

LU_UIDNUMBER, macro in entity
LU_USERNAME, macro in entity
LU_USERPASSWORD, macro in entity
lu_users_enumerate, function in user
lu_users_enumerate_by_group, function in user
lu_users_enumerate_by_group_full, function in user
lu_users_enumerate_full, function in user
lu_user_add, function in user
lu_user_default, function in user
lu_user_delete, function in user
lu_user_islocked, function in user
lu_user_lock, function in user
lu_user_lookup_id, function in user
lu_user_lookup_name, function in user
lu_user_modify, function in user
lu_user_removepass, function in user
lu_user_setpass, function in user
lu_user_unlock, function in user
lu_user_unlock_nonempty, function in user
lu_uses_elevated_privileges, function in user

V

lu_values_equal, function in value
lu_value_get_id, function in value
lu_value_init_set_attr_from_string, function in value
lu_value_init_set_id, function in value
LU_VALUE_INVALID_ID, macro in value
lu_value_strdup, function in value
libuser-0.60~dfsg/docs/reference/html/index.html0000644000175000017500000000507612226342606021734 0ustar tzafrirtzafrir libuser Reference Manual

libuser
config — Routines for reading configuration information for the libuser library.
value — Simplified interface to GValue types used in libuser entities.
entityFunctions for manipulating lu_ent structures.
errorFunctions for allocating and manipulating lu_error structures.
prompt — Sample prompter functions for use with the libuser library.
user — Functions for initializing the library, looking up information, and making changes to the system information store.
fs — Utilities for modifying the file system and other aspects of user/group management.
API Index
Index of deprecated API
libuser-0.60~dfsg/docs/reference/html/libuser-config.html0000644000175000017500000002344312226342606023533 0ustar tzafrirtzafrir config

config

config — Routines for reading configuration information for the libuser library.

Synopsis

#include <libuser/config.h>

GList *             lu_cfg_read                         (struct lu_context *context,
                                                         const char *key,
                                                         const char *default_value);
const char *        lu_cfg_read_single                  (struct lu_context *context,
                                                         const char *key,
                                                         const char *default_value);
GList *             lu_cfg_read_keys                    (struct lu_context *context,
                                                         const char *parent_key);

Description

These routines allow an application or module to read configuration data from the libuser configuration.

Details

lu_cfg_read ()

GList *             lu_cfg_read                         (struct lu_context *context,
                                                         const char *key,
                                                         const char *default_value);

Reads the list of values for a given key from the configuration space.

context :

A valid libuser library context.

key :

The value to be read from the configuration. The key should be of the form "section/key" for most purposes. For example, the files module uses keys of the form "files/foo" for all of its configuration data.

default_value :

A default value to be returned in case none are found. Can be NULL.

Returns :

A GList of values, formatted as strings. The list must be freed by calling g_list_free().

lu_cfg_read_single ()

const char *        lu_cfg_read_single                  (struct lu_context *context,
                                                         const char *key,
                                                         const char *default_value);

Read a single value set for a given key in the configuration space. This is a convenience function. Additional values, if any, will be ignored.

context :

A valid libuser library context.

key :

The value to be read from the configuration. The key should be of the form "section/key" for most purposes. For example, the files module uses keys of the form "files/foo" for all of its configuration data.

default_value :

A default value to be returned in case none are found. Can be NULL.

Returns :

A string representation of one of the values set for the key. This string must not be freed.

lu_cfg_read_keys ()

GList *             lu_cfg_read_keys                    (struct lu_context *context,
                                                         const char *parent_key);

Read the names of all of the keys in a specified section of the configuration space. This function is typically used for walking the configuration space.

context :

A valid libuser library context.

parent_key :

The parent key under which the caller wishes to know which subkeys are present.

Returns :

A GList of string representations of key names. The list must be freed using g_list_free().
libuser-0.60~dfsg/docs/reference/html/libuser-error.html0000644000175000017500000003535712226342606023426 0ustar tzafrirtzafrir error

error

error — Functions for allocating and manipulating lu_error structures.

Synopsis

#include <libuser/error.h>

struct              lu_error;
typedef             lu_error_t;
#define             LU_ERROR_CHECK                      (err_p_p)
void                lu_error_new                        (struct lu_error **error,
                                                         enum lu_status code,
                                                         const char *fmt,
                                                         ...);
void                lu_error_free                       (struct lu_error **error);
gboolean            lu_error_is_success                 (enum lu_status status);
gboolean            lu_error_is_warning                 (enum lu_status status);
gboolean            lu_error_is_error                   (enum lu_status status);
const char *        lu_strerror                         (struct lu_error *error);

Description

error.h includes declarations for allocating and manipulating lu_error structures. These structures hold error and status information passed between libuser, its modules, and applications.

A struct lu_error contains an error code and a human-readable, possibly translated error string. The error string uses the encoding specified by the LC_CTYPE locale category.

Details

struct lu_error

struct lu_error;

Error and status information.


lu_error_t

typedef struct lu_error lu_error_t;

Warning

lu_error_t has been deprecated since version 0.57.3 and should not be used in newly-written code. Use struct lu_error directly.

An alias for struct lu_error.


LU_ERROR_CHECK()

#define             LU_ERROR_CHECK(err_p_p)

Checks that the given pointer to a pointer to a struct does not already point to a valid lu_error structure, and calls abort() on failure. This macro is used by many internal functions to check that an error has not already occurred when they are invoked.

err_p_p :

A pointer to a struct lu_error * which will be checked.

lu_error_new ()

void                lu_error_new                        (struct lu_error **error,
                                                         enum lu_status code,
                                                         const char *fmt,
                                                         ...);

Creates a new lu_error structure.

error :

A pointer to a struct lu_error * which will hold the newly-created error structure. It must point to NULL before calling this function.

code :

An error code

fmt :

Format string describing the error. If NULL, a default string is used.

... :

Arguments for fmt, if necessary

lu_error_free ()

void                lu_error_free                       (struct lu_error **error);

Frees an lu_error structure.

error :

A pointer to a pointer to the structure to be freed. The pointer is set to NULL after the error is freed.

lu_error_is_success ()

gboolean            lu_error_is_success                 (enum lu_status status);

Check if the error code held by an error structure is a success code.

status :

An error code

Returns :

a gboolean indicating whether or not the error is a success code.

lu_error_is_warning ()

gboolean            lu_error_is_warning                 (enum lu_status status);

Check if the error code held by an error structure is a warning code.

status :

An error code

Returns :

a gboolean indicating whether or not the error is a warning code.

lu_error_is_error ()

gboolean            lu_error_is_error                   (enum lu_status status);

Check if the error code held by an error structure is an error code.

status :

An error code

Returns :

a gboolean indicating whether or not the error is an error code.

lu_strerror ()

const char *        lu_strerror                         (struct lu_error *error);

Converts an lu_error structure to a string describing the error. If the error->string is NULL, returns a text representation of error->code.

error :

An error

Returns :

An error string valid at least until error is freed.
libuser-0.60~dfsg/docs/reference/html/style.css0000644000175000017500000001210012226342606021573 0ustar tzafrirtzafrir.synopsis, .classsynopsis { /* tango:aluminium 1/2 */ background: #eeeeec; border: solid 1px #d3d7cf; padding: 0.5em; } .programlisting { /* tango:sky blue 0/1 */ background: #e6f3ff; border: solid 1px #729fcf; padding: 0.5em; } .variablelist { padding: 4px; margin-left: 3em; } .variablelist td:first-child { vertical-align: top; } @media screen { sup a.footnote { position: relative; top: 0em ! important; } /* this is needed so that the local anchors are displayed below the naviagtion */ div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name] { display: inline-block; position: relative; top:-5em; } /* this seems to be a bug in the xsl style sheets when generating indexes */ div.index div.index { top: 0em; } /* make space for the fixed navigation bar and add space at the bottom so that * link targets appear somewhat close to top */ body { padding-top: 3.2em; padding-bottom: 20em; } /* style and size the navigation bar */ table.navigation#top { position: fixed; /* tango:scarlet red 0/1 */ background: #ffe6e6; border: solid 1px #ef2929; margin-top: 0; margin-bottom: 0; top: 0; left: 0; height: 3em; z-index: 10; } .navigation a, .navigation a:visited { /* tango:scarlet red 3 */ color: #a40000; } .navigation a:hover { /* tango:scarlet red 1 */ color: #ef2929; } td.shortcuts { /* tango:scarlet red 1 */ color: #ef2929; font-size: 80%; white-space: nowrap; } } @media print { table.navigation { visibility: collapse; display: none; } div.titlepage table.navigation { visibility: visible; display: table; /* tango:scarlet red 0/1 */ background: #ffe6e6; border: solid 1px #ef2929; margin-top: 0; margin-bottom: 0; top: 0; left: 0; height: 3em; } } .navigation .title { font-size: 200%; } div.gallery-float { float: left; padding: 10px; } div.gallery-float img { border-style: none; } div.gallery-spacer { clear: both; } a, a:visited { text-decoration: none; /* tango:sky blue 2 */ color: #3465a4; } a:hover { text-decoration: underline; /* tango:sky blue 1 */ color: #729fcf; } div.table table { border-collapse: collapse; border-spacing: 0px; /* tango:aluminium 3 */ border: solid 1px #babdb6; } div.table table td, div.table table th { /* tango:aluminium 3 */ border: solid 1px #babdb6; padding: 3px; vertical-align: top; } div.table table th { /* tango:aluminium 2 */ background-color: #d3d7cf; } hr { /* tango:aluminium 3 */ color: #babdb6; background: #babdb6; border: none 0px; height: 1px; clear: both; } .footer { padding-top: 3.5em; /* tango:aluminium 3 */ color: #babdb6; text-align: center; font-size: 80%; } .warning { /* tango:orange 0/1 */ background: #ffeed9; border-color: #ffb04f; } .note { /* tango:chameleon 0/0.5 */ background: #d8ffb2; border-color: #abf562; } .note, .warning { padding: 0.5em; border-width: 1px; border-style: solid; } .note h3, .warning h3 { margin-top: 0.0em } .note p, .warning p { margin-bottom: 0.0em } /* blob links */ h2 .extralinks, h3 .extralinks { float: right; /* tango:aluminium 3 */ color: #babdb6; font-size: 80%; font-weight: normal; } .annotation { /* tango:aluminium 5 */ color: #555753; font-size: 80%; font-weight: normal; } /* code listings */ .listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */ .listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */ .listing_code .programlisting .function { color: #000000; font-weight: bold; } .listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */ .listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */ .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */ .listing_code .programlisting .normal { color: #000000; } .listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */ .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */ .listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */ .listing_code .programlisting .type { color: #000000; } .listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */ .listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */ .listing_frame { /* tango:sky blue 1 */ border: solid 1px #729fcf; padding: 0px; } .listing_lines, .listing_code { margin-top: 0px; margin-bottom: 0px; padding: 0.5em; } .listing_lines { /* tango:sky blue 0.5 */ background: #a6c5e3; /* tango:aluminium 6 */ color: #2e3436; } .listing_code { /* tango:sky blue 0 */ background: #e6f3ff; } .listing_code .programlisting { /* override from previous */ border: none 0px; padding: 0px; } .listing_lines pre, .listing_code pre { margin: 0px; } libuser-0.60~dfsg/docs/reference/html/home.png0000644000175000017500000000121612226342606021365 0ustar tzafrirtzafrirPNG  IHDRw=bKGD pHYs  ~tIME1KvIDATxՕkq?rCp ~CnpCAAJ .B-\'G]:ܠC -(8 Ԁ!fDғklbRoyxwpðIJ<of_-@RHf֟t^ښ$Q|pgv;X^^&s(bwwZF9&3඙ ^IRZUE.0Z]]U PYM8HGIekqqҀ! $۬3n e{-/seeeÌXOͷ$8==USQRR'9-s+B^ Cەs+%<7W :2IENDB`libuser-0.60~dfsg/docs/reference/html/index.sgml0000644000175000017500000003311612226342606021726 0ustar tzafrirtzafrir libuser-0.60~dfsg/docs/reference/html/left.png0000644000175000017500000000071312226342606021370 0ustar tzafrirtzafrirPNG  IHDRw=bKGD pHYs  ~tIME1&[(XIDATx!OPE*ID%~ꊯ"p'ŏ`sܖrKf hmiIz}ܯI.p\`x l?l[,Hk<#c%\AUx[S7n6rzEs1j@NL$ݤi0 5/}\EKIo͓$a0jdFbkIAh>WlC'?tk;|/t*INZ^`y4Nr]׮ J<ڐt`X1@p䀸dZ')hK $V?%]+LsgUK"w53OIENDB`libuser-0.60~dfsg/docs/reference/html/ch01.html0000644000175000017500000000556212226342606021360 0ustar tzafrirtzafrir libuser

libuser

config — Routines for reading configuration information for the libuser library.
value — Simplified interface to GValue types used in libuser entities.
entityFunctions for manipulating lu_ent structures.
errorFunctions for allocating and manipulating lu_error structures.
prompt — Sample prompter functions for use with the libuser library.
user — Functions for initializing the library, looking up information, and making changes to the system information store.
fs — Utilities for modifying the file system and other aspects of user/group management.
libuser-0.60~dfsg/docs/reference/html/libuser-prompt.html0000644000175000017500000002127012226342606023603 0ustar tzafrirtzafrir prompt

prompt

prompt — Sample prompter functions for use with the libuser library.

Synopsis

#include <libuser/prompt.h>

gboolean            lu_prompt_console                   (struct lu_prompt *prompts,
                                                         int count,
                                                         gpointer callback_data,
                                                         struct lu_error **error);
gboolean            lu_prompt_console_quiet             (struct lu_prompt *prompts,
                                                         int count,
                                                         gpointer callback_data,
                                                         struct lu_error **error);

Description

prompt.h declares two predefined prompter functions which applications can use instead of providing their own. These should suffice for most command-line applications. Authors of graphical applications are encouraged to supply graphical implementations.

Details

lu_prompt_console ()

gboolean            lu_prompt_console                   (struct lu_prompt *prompts,
                                                         int count,
                                                         gpointer callback_data,
                                                         struct lu_error **error);

Prompts the user using a text console.

prompts :

An array of lu_prompt structures.

count :

The number of elements in the prompts array.

callback_data :

Ignored.

error :

The location to store error information in the event of an error.

Returns :

A gboolean indicating success or failure.

lu_prompt_console_quiet ()

gboolean            lu_prompt_console_quiet             (struct lu_prompt *prompts,
                                                         int count,
                                                         gpointer callback_data,
                                                         struct lu_error **error);

Prompts the user using a text console. Unlike lu_prompt_console(), this function will not prompt users for a question for which the calling application or module supplies a default, and will simply return the default.

prompts :

An array of lu_prompt structures.

count :

The number of elements in the prompts array.

callback_data :

Ignored.

error :

The location to store error information in the event of an error.

Returns :

A gboolean indicating success or failure.
libuser-0.60~dfsg/docs/reference/html/up.png0000644000175000017500000000062612226342606021065 0ustar tzafrirtzafrirPNG  IHDRw=bKGD pHYs  ~tIME2.E#IDATx=J@Fo] !+2[Z<@/9|t$D9nnBjBRIsI:H8UPN1fcsN95M㧖ɵ 束1~pEe$I 7nrDf!;`'ykI䲤sI_]y^^I>O>?YBIENDB`libuser-0.60~dfsg/docs/reference/html/libuser-entity.html0000644000175000017500000023367212226342606023611 0ustar tzafrirtzafrir entity

entity

entity — Functions for manipulating lu_ent structures.

Synopsis

#include <libuser/error.h>

struct              lu_ent;
typedef             lu_ent_t;
#define             LU_USERNAME
#define             LU_USERPASSWORD
#define             LU_UIDNUMBER
#define             LU_GIDNUMBER
#define             LU_GECOS
#define             LU_HOMEDIRECTORY
#define             LU_LOGINSHELL
#define             LU_GROUPNAME
#define             LU_GROUPPASSWORD
#define             LU_MEMBERNAME
#define             LU_ADMINISTRATORNAME
#define             LU_SHADOWNAME
#define             LU_SHADOWPASSWORD
#define             LU_SHADOWLASTCHANGE
#define             LU_SHADOWMIN
#define             LU_SHADOWMAX
#define             LU_SHADOWWARNING
#define             LU_SHADOWINACTIVE
#define             LU_SHADOWEXPIRE
#define             LU_SHADOWFLAG
#define             LU_COMMONNAME
#define             LU_GIVENNAME
#define             LU_SN
#define             LU_ROOMNUMBER
#define             LU_TELEPHONENUMBER
#define             LU_HOMEPHONE
#define             LU_EMAIL
struct lu_ent *     lu_ent_new                          (void);
void                lu_ent_free                         (struct lu_ent *ent);
void                lu_ent_copy                         (struct lu_ent *source,
                                                         struct lu_ent *dest);
void                lu_ent_commit                       (struct lu_ent *ent);
void                lu_ent_revert                       (struct lu_ent *ent);
void                lu_ent_add                          (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValue *value);
void                lu_ent_add_current                  (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValue *value);
void                lu_ent_clear                        (struct lu_ent *ent,
                                                         const char *attr);
void                lu_ent_clear_all                    (struct lu_ent *ent);
void                lu_ent_clear_all_current            (struct lu_ent *ent);
void                lu_ent_clear_current                (struct lu_ent *ent,
                                                         const char *attr);
void                lu_ent_del                          (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValue *value);
void                lu_ent_del_current                  (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValue *value);
void                lu_ent_dump                         (struct lu_ent *ent,
                                                         FILE *fp);
GValueArray *       lu_ent_get                          (struct lu_ent *ent,
                                                         const char *attribute);
const char *        lu_ent_get_first_string             (struct lu_ent *ent,
                                                         const char *attribute);
const char *        lu_ent_get_first_string_current     (struct lu_ent *ent,
                                                         const char *attribute);
char *              lu_ent_get_first_value_strdup       (struct lu_ent *ent,
                                                         const char *attribute);
char *              lu_ent_get_first_value_strdup_current
                                                        (struct lu_ent *ent,
                                                         const char *attribute);
id_t                lu_ent_get_first_id                 (struct lu_ent *ent,
                                                         const char *attribute);
id_t                lu_ent_get_first_id_current         (struct lu_ent *ent,
                                                         const char *attribute);
GList *             lu_ent_get_attributes               (struct lu_ent *ent);
GList *             lu_ent_get_attributes_current       (struct lu_ent *ent);
GValueArray *       lu_ent_get_current                  (struct lu_ent *ent,
                                                         const char *attribute);
gboolean            lu_ent_has                          (struct lu_ent *ent,
                                                         const char *attribute);
gboolean            lu_ent_has_current                  (struct lu_ent *ent,
                                                         const char *attribute);
void                lu_ent_set                          (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValueArray *values);
void                lu_ent_set_current                  (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValueArray *values);
void                lu_ent_set_string                   (struct lu_ent *ent,
                                                         const char *attr,
                                                         const char *value);
void                lu_ent_set_string_current           (struct lu_ent *ent,
                                                         const char *attr,
                                                         const char *value);
void                lu_ent_set_id                       (struct lu_ent *ent,
                                                         const char *attr,
                                                         id_t value);
void                lu_ent_set_id_current               (struct lu_ent *ent,
                                                         const char *attr,
                                                         id_t value);
void                lu_ent_set_long                     (struct lu_ent *ent,
                                                         const char *attr,
                                                         long int value);
void                lu_ent_set_long_current             (struct lu_ent *ent,
                                                         const char *attr,
                                                         long int value);

Description

entity.h declares functions for manipulating lu_ent structures, which are used by libuser, its modules, and applications to hold data about a particular user or group account.

Details

struct lu_ent

struct lu_ent;

An opaque structure used to hold data about a particular user or group account.

Each struct lu_ent contains two sets of attributes: pending and current. The pending attributes are modified by default, the current attributes are modified by functions ending with _current.

Each attribute contains a list of values. The list is never empty; removing the last entry from the list removes the list completely.


lu_ent_t

typedef struct lu_ent lu_ent_t;

Warning

lu_ent_t has been deprecated since version 0.57.3 and should not be used in newly-written code. Use struct lu_ent directly.

An alias for struct lu_ent.


LU_USERNAME

#define LU_USERNAME		"pw_name"

User name, a G_TYPE_STRING.


LU_USERPASSWORD

#define LU_USERPASSWORD		"pw_passwd"

User password, a G_TYPE_STRING. If shadow passwords are used, this is the placeholder password.

Don't modify passwords by changing this attribute directly, use one of the specialized functions.


LU_UIDNUMBER

#define LU_UIDNUMBER		"pw_uid"

User ID, an id_t.


LU_GIDNUMBER

#define LU_GIDNUMBER		"pw_gid"

Group ID, an id_t.


LU_GECOS

#define LU_GECOS		"pw_gecos"

Usually user's real name, a G_TYPE_STRING. Often contains user's real name, office name, office phone, home phone, separated by commas.


LU_HOMEDIRECTORY

#define LU_HOMEDIRECTORY "pw_dir"

User's home directory, a G_TYPE_STRING.


LU_LOGINSHELL

#define LU_LOGINSHELL		"pw_shell"

User's login shell, a G_TYPE_STRING.


LU_GROUPNAME

#define LU_GROUPNAME		"gr_name"

Group name, a G_TYPE_STRING.


LU_GROUPPASSWORD

#define LU_GROUPPASSWORD "gr_passwd"

Group password, a G_TYPE_STRING.

Don't modify passwords by changing this attribute directly, use one of the specialized functions.


LU_MEMBERNAME

#define LU_MEMBERNAME		"gr_mem"

Group member names; each member is represented by a separate G_TYPE_STRING value.


LU_ADMINISTRATORNAME

#define LU_ADMINISTRATORNAME "gr_adm"

Group administrator names; each administrator is represented by a separate G_TYPE_STRING value.


LU_SHADOWNAME

#define LU_SHADOWNAME		LU_USERNAME

User name, a G_TYPE_STRING. Note that LU_SHADOWNAME is not distinct from LU_USERNAME.


LU_SHADOWPASSWORD

#define LU_SHADOWPASSWORD "sp_pwdp"

User password in the shadow file, a G_TYPE_STRING.

Don't modify passwords by changing this attribute directly, use one of the specialized functions.


LU_SHADOWLASTCHANGE

#define LU_SHADOWLASTCHANGE "sp_lstchg"

The number of days since the epoch to the day when the password was last changed, a G_TYPE_LONG.

May be -1 to indicate that the field exists without a value. This should be handled the same as if the attribute was missing altogether, and consistently with shadow(5).


LU_SHADOWMIN

#define LU_SHADOWMIN		"sp_min"

Minimum password lifetime in days before it can be changed, a G_TYPE_LONG.

May be -1 to indicate that the field exists without a value. This should be handled the same as if the attribute was missing altogether, and consistently with shadow(5).


LU_SHADOWMAX

#define LU_SHADOWMAX		"sp_max"

Maximum password lifetime in days before it must be changed, a G_TYPE_LONG.

May be -1 to indicate that the field exists without a value. This should be handled the same as if the attribute was missing altogether, and consistently with shadow(5).


LU_SHADOWWARNING

#define LU_SHADOWWARNING "sp_warn"

Days before the password lifetime expires when the user should start to be warned, a G_TYPE_LONG.

May be -1 to indicate that the field exists without a value. This should be handled the same as if the attribute was missing altogether, and consistently with shadow(5).


LU_SHADOWINACTIVE

#define LU_SHADOWINACTIVE "sp_inact"

Days after the password lifetime expires when the user account is disabled (because it is considered inactive), a G_TYPE_LONG. -1 to disable inactive account disabling.


LU_SHADOWEXPIRE

#define LU_SHADOWEXPIRE		"sp_expire"

The number of days since the epoch to the day when the account expires and is disabled, a G_TYPE_LONG. -1 to disable account expiration.


LU_SHADOWFLAG

#define LU_SHADOWFLAG		"sp_flag"

A reserved value "for future use", a G_TYPE_LONG. In most cases the value is -1.


LU_COMMONNAME

#define LU_COMMONNAME		"cn"

User's real name, a G_TYPE_STRING.


LU_GIVENNAME

#define LU_GIVENNAME		"givenName"

User's given name, a G_TYPE_STRING.


LU_SN

#define LU_SN			"sn"

User's surname, a G_TYPE_STRING.


LU_ROOMNUMBER

#define LU_ROOMNUMBER		"roomNumber"

User's room number, a G_TYPE_STRING.


LU_TELEPHONENUMBER

#define LU_TELEPHONENUMBER "telephoneNumber"

User's telephone number, a G_TYPE_STRING.


LU_HOMEPHONE

#define LU_HOMEPHONE		"homePhone"

User's home telephone number, a G_TYPE_STRING.


LU_EMAIL

#define LU_EMAIL		"mail"

User's email address, a G_TYPE_STRING.


lu_ent_new ()

struct lu_ent *     lu_ent_new                          (void);

Creates a new, empty struct lu_ent.

Returns :

The created entity, which should be deallocated by lu_ent_free()

lu_ent_free ()

void                lu_ent_free                         (struct lu_ent *ent);

Frees an struct lu_ent, including all strings it owns.

ent :

The entity to free

lu_ent_copy ()

void                lu_ent_copy                         (struct lu_ent *source,
                                                         struct lu_ent *dest);

Copies one struct lu_ent over another.

source :

The entity to copy

dest :

The destination space, must be already allocated by lu_ent_new()

lu_ent_commit ()

void                lu_ent_commit                       (struct lu_ent *ent);

Sets pending attribute changes as current values of the entity.

ent :

An entity

lu_ent_revert ()

void                lu_ent_revert                       (struct lu_ent *ent);

Replaces all attributes with changes pending by their current values, forgetting the pending changes.

ent :

an entity

lu_ent_add ()

void                lu_ent_add                          (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValue *value);

Appends value to pending attribute attr in a struct lu_ent if value is not yet in the list of attr values.

ent :

An entity

attr :

Attribute name

value :

New attribute value

lu_ent_add_current ()

void                lu_ent_add_current                  (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValue *value);

Appends value to current attribute attr in a struct lu_ent if value is not yet in the list of attr values.

ent :

An entity

attr :

Attribute name

value :

New attribute value

lu_ent_clear ()

void                lu_ent_clear                        (struct lu_ent *ent,
                                                         const char *attr);

Removes all values of pending attribute attribute from a struct lu_ent.

ent :

An entity

attr :

Attribute name

lu_ent_clear_all ()

void                lu_ent_clear_all                    (struct lu_ent *ent);

Removes all pending attributes from a struct lu_ent.

ent :

an entity

lu_ent_clear_all_current ()

void                lu_ent_clear_all_current            (struct lu_ent *ent);

Removes all current attributes from a struct lu_ent.

ent :

an entity

lu_ent_clear_current ()

void                lu_ent_clear_current                (struct lu_ent *ent,
                                                         const char *attr);

Removes all values of current attribute attribute from a struct lu_ent.

ent :

An entity

attr :

Attribute name

lu_ent_del ()

void                lu_ent_del                          (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValue *value);

Removes a pending attribute attr value value from a struct lu_ent, if present.

ent :

An entity

attr :

Attribute name

value :

Attribute value

lu_ent_del_current ()

void                lu_ent_del_current                  (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValue *value);

Removes a current attribute attr value value from a struct lu_ent, if present.

ent :

An entity

attr :

Attribute name

value :

Attribute value

lu_ent_dump ()

void                lu_ent_dump                         (struct lu_ent *ent,
                                                         FILE *fp);

Dumps a struct lu_ent to a file in text form, for debugging.

ent :

The entity to dump

fp :

Destination file

lu_ent_get ()

GValueArray *       lu_ent_get                          (struct lu_ent *ent,
                                                         const char *attribute);

Returns values associated with a pending attribute in a struct lu_ent.

ent :

An entity

attribute :

Attribute name

Returns :

a GValueArray of values, valid at least until they are modified or deleted. The array is never empty and it should not be freed by the caller. Returns NULL if the attribute is not present at all or on error.

lu_ent_get_first_string ()

const char *        lu_ent_get_first_string             (struct lu_ent *ent,
                                                         const char *attribute);

Returns the first string associated with a pending attribute in a struct lu_ent.

ent :

An entity

attribute :

Attribute name

Returns :

a string pointer valid at least the value is modified or deleted if the attribute is present and the first value is a string. Returns NULL if the attribute is not present, the first value is not a string, or on error.

lu_ent_get_first_string_current ()

const char *        lu_ent_get_first_string_current     (struct lu_ent *ent,
                                                         const char *attribute);

Returns the first string associated with a current attribute in a struct lu_ent.

ent :

An entity

attribute :

Attribute name

Returns :

a string pointer valid at least the value is modified or deleted if the attribute is present and the first value is a string. Returns NULL if the attribute is not present, the first value is not a string, or on error.

lu_ent_get_first_value_strdup ()

char *              lu_ent_get_first_value_strdup       (struct lu_ent *ent,
                                                         const char *attribute);

Returns a string representation (as if by lu_value_strdup()) of the first value associated with a pending attribute in a struct lu_ent.

ent :

An entity

attribute :

Attribute name

Returns :

a string, should be freed by g_free() if the attribute is present. Returns NULL if the attribute is not present or on error.

lu_ent_get_first_value_strdup_current ()

char *              lu_ent_get_first_value_strdup_current
                                                        (struct lu_ent *ent,
                                                         const char *attribute);

Returns a string representation (as if by lu_value_strdup()) of the first value associated with a current attribute in a struct lu_ent.

ent :

An entity

attribute :

Attribute name

Returns :

a string, should be freed by g_free() if the attribute is present. Returns NULL if the attribute is not present or on error.

lu_ent_get_first_id ()

id_t                lu_ent_get_first_id                 (struct lu_ent *ent,
                                                         const char *attribute);

Returns the first id_t value associated with a pending attribute in a struct lu_ent.

ent :

An entity

attribute :

Attribute name

Returns :

ID value the attribute is present and can be converted into id_t. Returns LU_VALUE_INVALID_ID if the attribute is not present, the first value cannot be converted, or on error.

lu_ent_get_first_id_current ()

id_t                lu_ent_get_first_id_current         (struct lu_ent *ent,
                                                         const char *attribute);

Returns the first id_t value associated with a current attribute in a struct lu_ent.

ent :

An entity

attribute :

Attribute name

Returns :

ID value the attribute is present and can be converted into id_t. Returns LU_VALUE_INVALID_ID if the attribute is not present, the first value cannot be converted, or on error.

lu_ent_get_attributes ()

GList *             lu_ent_get_attributes               (struct lu_ent *ent);

Returns a list of all pending attributes in a struct lu_ent.

ent :

An entity

Returns :

a GList of attribute names. The list (but not the strings in the list) should be freed by the caller.

lu_ent_get_attributes_current ()

GList *             lu_ent_get_attributes_current       (struct lu_ent *ent);

Returns a list of all current attributes in a struct lu_ent.

ent :

An entity

Returns :

a GList of attribute names. The list (but not the strings in the list) should be freed by the caller.

lu_ent_get_current ()

GValueArray *       lu_ent_get_current                  (struct lu_ent *ent,
                                                         const char *attribute);

Returns values associated with a current attribute in a struct lu_ent.

ent :

An entity

attribute :

Attribute name

Returns :

a GValueArray of values, valid at least until they are modified or deleted. The array is never empty and it should not be freed by the caller. Returns NULL if the attribute is not present at all or on error.

lu_ent_has ()

gboolean            lu_ent_has                          (struct lu_ent *ent,
                                                         const char *attribute);

Checks if a struct lu_ent has at least one pending attribute attribute.

ent :

An entity

attribute :

Attribute name

Returns :

TRUE if attribute has a value in ent.

lu_ent_has_current ()

gboolean            lu_ent_has_current                  (struct lu_ent *ent,
                                                         const char *attribute);

Checks if a struct lu_ent has at least one current attribute attribute.

ent :

An entity

attribute :

Attribute name

Returns :

TRUE if attribute has a value in ent.

lu_ent_set ()

void                lu_ent_set                          (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValueArray *values);

Replaces all pending attributes attr in a struct lu_ent by a copy of values. If values is empty, it removes the pending attribute completely.

ent :

An entity

attr :

Attribute name

values :

An array of values

lu_ent_set_current ()

void                lu_ent_set_current                  (struct lu_ent *ent,
                                                         const char *attr,
                                                         const GValueArray *values);

Replaces all current attributes attr in a struct lu_ent by a copy of values. If values is empty, it removes the pending attribute completely.

ent :

An entity

attr :

Attribute name

values :

An array of values

lu_ent_set_string ()

void                lu_ent_set_string                   (struct lu_ent *ent,
                                                         const char *attr,
                                                         const char *value);

Replaces all pending attributes attr in a struct lu_ent by a copy of string value.

ent :

An entity

attr :

Attribute name

value :

A string

lu_ent_set_string_current ()

void                lu_ent_set_string_current           (struct lu_ent *ent,
                                                         const char *attr,
                                                         const char *value);

Replaces all current attributes attr in a struct lu_ent by a copy of string value.

ent :

An entity

attr :

Attribute name

value :

A string

lu_ent_set_id ()

void                lu_ent_set_id                       (struct lu_ent *ent,
                                                         const char *attr,
                                                         id_t value);

Replaces all pending attributes attr in a struct lu_ent by an id_t value.

ent :

An entity

attr :

Attribute name

value :

An id_t value

lu_ent_set_id_current ()

void                lu_ent_set_id_current               (struct lu_ent *ent,
                                                         const char *attr,
                                                         id_t value);

Replaces all current attributes attr in a struct lu_ent by an id_t value.

ent :

An entity

attr :

Attribute name

value :

An id_t value

lu_ent_set_long ()

void                lu_ent_set_long                     (struct lu_ent *ent,
                                                         const char *attr,
                                                         long int value);

Replaces all pending attributes attr in a struct lu_ent by a long value.

ent :

An entity

attr :

Attribute name

value :

A value

lu_ent_set_long_current ()

void                lu_ent_set_long_current             (struct lu_ent *ent,
                                                         const char *attr,
                                                         long int value);

Replaces all current attributes attr in a struct lu_ent by a long value.

ent :

An entity

attr :

Attribute name

value :

A value
libuser-0.60~dfsg/docs/reference/html/libuser-user.html0000644000175000017500000030662612226342606023253 0ustar tzafrirtzafrir user

user

user — Functions for initializing the library, looking up information, and making changes to the system information store.

Synopsis

#include <libuser/user.h>

struct              lu_context;
typedef             lu_context_t;
struct lu_context * lu_start                            (const char *authname,
                                                         enum lu_entity_type auth_type,
                                                         const char *modules,
                                                         const char *create_modules,
                                                         lu_prompt_fn *prompter,
                                                         gpointer callback_data,
                                                         struct lu_error **error);
void                lu_end                              (struct lu_context *context);
void                lu_set_prompter                     (struct lu_context *context,
                                                         lu_prompt_fn *prompter,
                                                         gpointer callback_data);
void                lu_get_prompter                     (struct lu_context *context,
                                                         lu_prompt_fn **prompter,
                                                         gpointer *callback_data);
gboolean            lu_set_modules                      (struct lu_context *context,
                                                         const char *list,
                                                         struct lu_error **error);
const char *        lu_get_modules                      (struct lu_context *context);
gboolean            lu_uses_elevated_privileges         (struct lu_context *context);
gboolean            lu_user_lookup_name                 (struct lu_context *context,
                                                         const char *name,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_user_lookup_id                   (struct lu_context *context,
                                                         uid_t uid,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_user_default                     (struct lu_context *ctx,
                                                         const char *name,
                                                         gboolean system_account,
                                                         struct lu_ent *ent);
gboolean            lu_user_add                         (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_user_modify                      (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_user_delete                      (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_user_setpass                     (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         const char *newpass,
                                                         gboolean crypted,
                                                         struct lu_error **error);
gboolean            lu_user_removepass                  (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_user_lock                        (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_user_unlock                      (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_user_unlock_nonempty             (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_user_islocked                    (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
GValueArray *       lu_users_enumerate                  (struct lu_context *context,
                                                         const char *pattern,
                                                         struct lu_error **error);
GValueArray *       lu_users_enumerate_by_group         (struct lu_context *context,
                                                         const char *group,
                                                         struct lu_error **error);
GPtrArray *         lu_users_enumerate_full             (struct lu_context *context,
                                                         const char *pattern,
                                                         struct lu_error **error);
GPtrArray *         lu_users_enumerate_by_group_full    (struct lu_context *context,
                                                         const char *group,
                                                         struct lu_error **error);
gboolean            lu_group_lookup_name                (struct lu_context *context,
                                                         const char *name,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_group_lookup_id                  (struct lu_context *context,
                                                         gid_t gid,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_group_default                    (struct lu_context *ctx,
                                                         const char *name,
                                                         gboolean system_account,
                                                         struct lu_ent *ent);
gboolean            lu_group_add                        (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_group_modify                     (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_group_delete                     (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_group_setpass                    (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         const char *newpass,
                                                         gboolean crypted,
                                                         struct lu_error **error);
gboolean            lu_group_removepass                 (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_group_lock                       (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_group_unlock                     (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_group_unlock_nonempty            (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
gboolean            lu_group_islocked                   (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);
GValueArray *       lu_groups_enumerate                 (struct lu_context *context,
                                                         const char *pattern,
                                                         struct lu_error **error);
GValueArray *       lu_groups_enumerate_by_user         (struct lu_context *context,
                                                         const char *user,
                                                         struct lu_error **error);
GPtrArray *         lu_groups_enumerate_full            (struct lu_context *context,
                                                         const char *pattern,
                                                         struct lu_error **error);
GPtrArray *         lu_groups_enumerate_by_user_full    (struct lu_context *context,
                                                         const char *user,
                                                         struct lu_error **error);

Description

user.h contains declarations for functions which start up and shut down the libuser library, and for functions which perform lookup queries and modifications of the system information store.

Details

struct lu_context

struct lu_context;

An opaque structure manipulated by the library, containing caller-related state (to allow several independent callers in a single process).


lu_context_t

typedef struct lu_context lu_context_t;

Warning

lu_context_t has been deprecated since version 0.57.3 and should not be used in newly-written code. Use struct lu_context directly.

An alias for struct lu_context.


lu_start ()

struct lu_context * lu_start                            (const char *authname,
                                                         enum lu_entity_type auth_type,
                                                         const char *modules,
                                                         const char *create_modules,
                                                         lu_prompt_fn *prompter,
                                                         gpointer callback_data,
                                                         struct lu_error **error);

Initializes the libuser library.

authname :

Suggested client name to use when connecting to servers, or NULL

auth_type :

Whether auth_name is a user or a group

modules :

A list of modules to use for queries (separated by whitespace or commas), or NULL to use modules specified in the config file

create_modules :

A list of modules to use for entity creation (separated by whitespace or commas), or NULL to use modules specified in the config file

prompter :

A function to use for getting information from the user

callback_data :

Data for prompter

error :

Filled with a lu_error if an error occurs

Returns :

a context which should be freed by lu_end() on success, NULL on failure

lu_end ()

void                lu_end                              (struct lu_context *context);

Destroys a libuser library context

context :

a context

lu_set_prompter ()

void                lu_set_prompter                     (struct lu_context *context,
                                                         lu_prompt_fn *prompter,
                                                         gpointer callback_data);

Changes the prompter function in a context

context :

A context

prompter :

A new function to user for getting information from the user

callback_data :

Data for prompter

lu_get_prompter ()

void                lu_get_prompter                     (struct lu_context *context,
                                                         lu_prompt_fn **prompter,
                                                         gpointer *callback_data);

Gets current prompter function from a context.

context :

A context

prompter :

If not NULL, points to a place where the current prompter function will be stored

callback_data :

If not NULL, points to a place where the current prompter function data will be stored

lu_set_modules ()

gboolean            lu_set_modules                      (struct lu_context *context,
                                                         const char *list,
                                                         struct lu_error **error);

Replaces the current set of modules for queries in context to list.

context :

A context

list :

A list of modules (separated by whitespace or commas)

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success, FALSE on failure

lu_get_modules ()

const char *        lu_get_modules                      (struct lu_context *context);

Returns a list of modules for queries in context.

context :

A context

Returns :

A list of modules separated by spaces, or NULL if the list of modules is empty. The list should not be freed by the caller.

lu_uses_elevated_privileges ()

gboolean            lu_uses_elevated_privileges         (struct lu_context *context);

Checks if any module uses elevated privileges (e.g. modifies files that normal users can't modify).

context :

A context

Returns :

TRUE if at least one module uses elevated privileges

lu_user_lookup_name ()

gboolean            lu_user_lookup_name                 (struct lu_context *context,
                                                         const char *name,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Looks up an user by name.

context :

A context

name :

User name

ent :

An entity filled with received information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success. If the user doesn't exist, returns FALSE without setting error.

lu_user_lookup_id ()

gboolean            lu_user_lookup_id                   (struct lu_context *context,
                                                         uid_t uid,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Looks up an user by UID.

context :

A context

uid :

User ID

ent :

An entity filled with received information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success. If the user doesn't exist, returns FALSE without setting error.

lu_user_default ()

gboolean            lu_user_default                     (struct lu_context *ctx,
                                                         const char *name,
                                                         gboolean system_account,
                                                         struct lu_ent *ent);

Fills out an user entity as specified by the config file and modules to prepare for creation of the user.

ctx :

A context

name :

New user name

system_account :

Non-zero if the user is a system user

ent :

An entity

Returns :

TRUE on success

lu_user_add ()

gboolean            lu_user_add                         (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Creates an user in all modules specified for entity creation.

context :

A context

ent :

An entity describing the user, on success updated with resulting account

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_user_modify ()

gboolean            lu_user_modify                      (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Modifies an user entity.

context :

A context

ent :

An entity with pending modifications, on success updated with current information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_user_delete ()

gboolean            lu_user_delete                      (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Deletes an user.

context :

A context

ent :

An entity describing the user

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_user_setpass ()

gboolean            lu_user_setpass                     (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         const char *newpass,
                                                         gboolean crypted,
                                                         struct lu_error **error);

Changes an user's password.

context :

A context

ent :

An entity describing the user, on success updated with current information and LU_SHADOWLASTCHANGE

newpass :

New password

crypted :

Non-zero if newpass is already encrypted

error :

Filled with an lu_error if an error occurs

Returns :

TRUE on success

lu_user_removepass ()

gboolean            lu_user_removepass                  (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Changes an user's password to an empty string.

context :

A context

ent :

An entity describing the user, on success updated with current information and LU_SHADOWLASTCHANGE

error :

Filled with an lu_error if an error occurs

Returns :

TRUE on success

lu_user_lock ()

gboolean            lu_user_lock                        (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Locks an user account.

context :

A context

ent :

An entity describing the user, on success updated with current information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_user_unlock ()

gboolean            lu_user_unlock                      (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Unlocks an user account.

context :

A context

ent :

An entity describing the user, on success updated with current information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_user_unlock_nonempty ()

gboolean            lu_user_unlock_nonempty             (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Unlocks an user account. If unlocking the account would result in an empty password field, it fails with lu_error_unlock_empty. Note that the password can still be empty.

context :

A context

ent :

An entity describing the user, on success updated with current information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_user_islocked ()

gboolean            lu_user_islocked                    (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Checks if an user account is locked.

context :

A context

ent :

An entity describing the user

error :

Filled with a lu_error if an error occurs

Returns :

TRUE if the account is locked in at least one module

lu_users_enumerate ()

GValueArray *       lu_users_enumerate                  (struct lu_context *context,
                                                         const char *pattern,
                                                         struct lu_error **error);

Returns a list of all users matching a pattern.

context :

A context

pattern :

A glob-like pattern for user name

error :

Filled with a lu_error if an error occurs

Returns :

An array of strings, each representing one user name. The array should be freed by the caller.

lu_users_enumerate_by_group ()

GValueArray *       lu_users_enumerate_by_group         (struct lu_context *context,
                                                         const char *group,
                                                         struct lu_error **error);

Returns a list of all members of a group group.

context :

A context

group :

Group name

error :

Filled with a lu_error if an error occurs

Returns :

An array of strings, each representing one user name. The array should be freed by the caller.

lu_users_enumerate_full ()

GPtrArray *         lu_users_enumerate_full             (struct lu_context *context,
                                                         const char *pattern,
                                                         struct lu_error **error);

Returns a list of entities, one for each user matching a pattern.

context :

A context

pattern :

A glob-like pattern for user name

error :

Filled with a lu_error if an error occurs

Returns :

A list of pointers to user entities. The entities and the list should be freed by the caller.

lu_users_enumerate_by_group_full ()

GPtrArray *         lu_users_enumerate_by_group_full    (struct lu_context *context,
                                                         const char *group,
                                                         struct lu_error **error);

Returns a list of entities, one for each member of a group group.

context :

A context

group :

Group name

error :

Filled with a lu_error if an error occurs

Returns :

A list of pointers to user entities. The entities and the list should be freed by the caller.

lu_group_lookup_name ()

gboolean            lu_group_lookup_name                (struct lu_context *context,
                                                         const char *name,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Looks up a group by name.

context :

A context

name :

Group name

ent :

An entity filled with received information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success. If the group doesn't exist, returns FALSE without setting error.

lu_group_lookup_id ()

gboolean            lu_group_lookup_id                  (struct lu_context *context,
                                                         gid_t gid,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Looks up a group by GID.

context :

A context

gid :

Group ID

ent :

An entity filled with received information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success. If the group doesn't exist, returns FALSE without setting error.

lu_group_default ()

gboolean            lu_group_default                    (struct lu_context *ctx,
                                                         const char *name,
                                                         gboolean system_account,
                                                         struct lu_ent *ent);

Fills out a group entity as specified by the config file and modules to prepare for creation of the group.

ctx :

A context

name :

New group name

system_account :

Non-zero if the group is a system group

ent :

An entity

Returns :

TRUE on success

lu_group_add ()

gboolean            lu_group_add                        (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Creates a group in all modules specified for entity creation.

context :

A context

ent :

An entity describing the group, on success updated with resulting account

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_group_modify ()

gboolean            lu_group_modify                     (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Modifies a group entity.

context :

A context

ent :

An entity with pending modifications, on success updated with current information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_group_delete ()

gboolean            lu_group_delete                     (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Deletes a group.

context :

A context

ent :

An entity describing the group

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_group_setpass ()

gboolean            lu_group_setpass                    (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         const char *newpass,
                                                         gboolean crypted,
                                                         struct lu_error **error);

Changes a group password.

context :

A context

ent :

An entity describing the group, on success updated with current information and LU_SHADOWLASTCHANGE

newpass :

New password

crypted :

Non-zero if newpass is already encrypted

error :

Filled with an lu_error if an error occurs

Returns :

TRUE on success

lu_group_removepass ()

gboolean            lu_group_removepass                 (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Changes a group password to an empty string.

context :

A context

ent :

An entity describing the group, on success udpated with current information and LU_SHADOWLASTCHANGE

error :

Filled with in lu_error if an error occurs

Returns :

TRUE on success

lu_group_lock ()

gboolean            lu_group_lock                       (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Locks a group account

context :

A context

ent :

An entity describing the group, on success updated with current information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_group_unlock ()

gboolean            lu_group_unlock                     (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Unlocks a group account.

context :

A context

ent :

An entity describing the group, on success updated with current information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_group_unlock_nonempty ()

gboolean            lu_group_unlock_nonempty            (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Unlocks a group account. If unlocking the account would result in an empty password field, it fails with lu_error_unlock_empty. Note that the password can still be empty.

context :

A context

ent :

An entity describing the group, on success updated with current information

error :

Filled with a lu_error if an error occurs

Returns :

TRUE on success

lu_group_islocked ()

gboolean            lu_group_islocked                   (struct lu_context *context,
                                                         struct lu_ent *ent,
                                                         struct lu_error **error);

Checks if a group account is locked.

context :

A context

ent :

An entity describing the group

error :

Filled with a lu_error if an error occurs

Returns :

TRUE if the account is locked in at least one module

lu_groups_enumerate ()

GValueArray *       lu_groups_enumerate                 (struct lu_context *context,
                                                         const char *pattern,
                                                         struct lu_error **error);

Returns a list of all groups matching a pattern.

context :

A context

pattern :

A glob-like pattern for group name

error :

Filled with a lu_error if an error occurs

Returns :

An array of strings, each representing one group name. The array should be freed by the caller.

lu_groups_enumerate_by_user ()

GValueArray *       lu_groups_enumerate_by_user         (struct lu_context *context,
                                                         const char *user,
                                                         struct lu_error **error);

Returns a list of all groups containing an user user.

context :

A context

user :

User name

error :

Filled with a lu_error if an error occurs

Returns :

An array of strings, each representing one group name. The array should be freed by the caller.

lu_groups_enumerate_full ()

GPtrArray *         lu_groups_enumerate_full            (struct lu_context *context,
                                                         const char *pattern,
                                                         struct lu_error **error);

Returns a list of entities, one for each group matching a pattern.

context :

A context

pattern :

A glob-like pattern for group name

error :

Filled with a lu_error if an error occurs

Returns :

a list of pointers to group entities. The entities and the list should be freed by the caller.

lu_groups_enumerate_by_user_full ()

GPtrArray *         lu_groups_enumerate_by_user_full    (struct lu_context *context,
                                                         const char *user,
                                                         struct lu_error **error);

Returns a list of entities, one for each group containing an user user.

context :

A context

user :

User name

error :

Filled with a lu_error if an error occurs

Returns :

a list of pointers to group entities. The entities and the list should be freed by the caller.
libuser-0.60~dfsg/docs/reference/html/right.png0000644000175000017500000000073012226342606021552 0ustar tzafrirtzafrirPNG  IHDRw=bKGD pHYs  ~tIME2 I%=eIDATx!o@.'**M0$$?1~vIeEuLl&4䝠Bݛ|>$ݶoc libuser-0.60~dfsg/docs/reference/libuser-sections.txt0000644000175000017500000000514712226342606023025 0ustar tzafrirtzafrir
config lu_cfg_read lu_cfg_read_single lu_cfg_read_keys
value LU_VALUE_INVALID_ID lu_value_strdup lu_value_init_set_attr_from_string lu_value_init_set_id lu_value_get_id lu_values_equal
entity lu_ent lu_ent_t LU_USERNAME LU_USERPASSWORD LU_UIDNUMBER LU_GIDNUMBER LU_GECOS LU_HOMEDIRECTORY LU_LOGINSHELL LU_GROUPNAME LU_GROUPPASSWORD LU_MEMBERNAME LU_ADMINISTRATORNAME LU_SHADOWNAME LU_SHADOWPASSWORD LU_SHADOWLASTCHANGE LU_SHADOWMIN LU_SHADOWMAX LU_SHADOWWARNING LU_SHADOWINACTIVE LU_SHADOWEXPIRE LU_SHADOWFLAG LU_COMMONNAME LU_GIVENNAME LU_SN LU_ROOMNUMBER LU_TELEPHONENUMBER LU_HOMEPHONE LU_EMAIL lu_ent_new lu_ent_free lu_ent_copy lu_ent_commit lu_ent_revert lu_ent_add lu_ent_add_current lu_ent_clear lu_ent_clear_all lu_ent_clear_all_current lu_ent_clear_current lu_ent_del lu_ent_del_current lu_ent_dump lu_ent_get lu_ent_get_first_string lu_ent_get_first_string_current lu_ent_get_first_value_strdup lu_ent_get_first_value_strdup_current lu_ent_get_first_id lu_ent_get_first_id_current lu_ent_get_attributes lu_ent_get_attributes_current lu_ent_get_current lu_ent_has lu_ent_has_current lu_ent_set lu_ent_set_current lu_ent_set_string lu_ent_set_string_current lu_ent_set_id lu_ent_set_id_current lu_ent_set_long lu_ent_set_long_current
error lu_error lu_error_t LU_ERROR_CHECK lu_error_new lu_error_free lu_error_is_success lu_error_is_warning lu_error_is_error lu_strerror
fs lu_homedir_move lu_homedir_populate lu_homedir_remove lu_homedir_remove_for_user lu_homedir_remove_for_user_if_owned lu_mail_spool_create lu_mail_spool_remove LU_NSCD_CACHE_GROUP LU_NSCD_CACHE_PASSWD lu_nscd_flush_cache
prompt lu_prompt_console lu_prompt_console_quiet
user lu_context lu_context_t lu_start lu_end lu_set_prompter lu_get_prompter lu_set_modules lu_get_modules lu_uses_elevated_privileges lu_user_lookup_name lu_user_lookup_id lu_user_default lu_user_add lu_user_modify lu_user_delete lu_user_setpass lu_user_removepass lu_user_lock lu_user_unlock lu_user_unlock_nonempty lu_user_islocked lu_users_enumerate lu_users_enumerate_by_group lu_users_enumerate_full lu_users_enumerate_by_group_full lu_group_lookup_name lu_group_lookup_id lu_group_default lu_group_add lu_group_modify lu_group_delete lu_group_setpass lu_group_removepass lu_group_lock lu_group_unlock lu_group_unlock_nonempty lu_group_islocked lu_groups_enumerate lu_groups_enumerate_by_user lu_groups_enumerate_full lu_groups_enumerate_by_user_full
libuser-0.60~dfsg/docs/reference/tmpl/0000755000175000017500000000000012226342606017737 5ustar tzafrirtzafrirlibuser-0.60~dfsg/docs/reference/tmpl/libuser-unused.sgml0000644000175000017500000000000012226342606023557 0ustar tzafrirtzafrirlibuser-0.60~dfsg/docs/reference/tmpl/entity.sgml0000644000175000017500000001175312226342606022146 0ustar tzafrirtzafrir entity @void: @Returns: @ent: @source: @dest: @ent: @ent: @ent: @attr: @value: @ent: @attr: @value: @ent: @attr: @ent: @ent: @ent: @attr: @ent: @attr: @value: @ent: @attr: @value: @ent: @fp: @ent: @attribute: @Returns: @ent: @attribute: @Returns: @ent: @attribute: @Returns: @ent: @attribute: @Returns: @ent: @attribute: @Returns: @ent: @attribute: @Returns: @ent: @attribute: @Returns: @ent: @Returns: @ent: @Returns: @ent: @attribute: @Returns: @ent: @attribute: @Returns: @ent: @attribute: @Returns: @ent: @attr: @values: @ent: @attr: @values: @ent: @attr: @value: @ent: @attr: @value: @ent: @attr: @value: @ent: @attr: @value: @ent: @attr: @value: @ent: @attr: @value: libuser-0.60~dfsg/docs/reference/tmpl/user.sgml0000644000175000017500000001107112226342606021601 0ustar tzafrirtzafrir user @authname: @auth_type: @modules: @create_modules: @prompter: @callback_data: @error: @Returns: @context: @context: @prompter: @callback_data: @context: @prompter: @callback_data: @context: @list: @error: @Returns: @context: @Returns: @context: @Returns: @context: @name: @ent: @error: @Returns: @context: @uid: @ent: @error: @Returns: @ctx: @name: @system_account: @ent: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @newpass: @crypted: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @pattern: @error: @Returns: @context: @group: @error: @Returns: @context: @pattern: @error: @Returns: @context: @group: @error: @Returns: @context: @name: @ent: @error: @Returns: @context: @gid: @ent: @error: @Returns: @ctx: @name: @system_account: @ent: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @newpass: @crypted: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @ent: @error: @Returns: @context: @pattern: @error: @Returns: @context: @user: @error: @Returns: @context: @pattern: @error: @Returns: @context: @user: @error: @Returns: libuser-0.60~dfsg/docs/reference/tmpl/value.sgml0000644000175000017500000000150112226342606021734 0ustar tzafrirtzafrir value @value: @Returns: @value: @attr: @string: @error: @Returns: @value: @id: @value: @Returns: @a: @b: @Returns: libuser-0.60~dfsg/docs/reference/tmpl/config.sgml0000644000175000017500000000115312226342606022070 0ustar tzafrirtzafrir config @context: @key: @default_value: @Returns: @context: @key: @default_value: @Returns: @context: @parent_key: @Returns: libuser-0.60~dfsg/docs/reference/tmpl/error.sgml0000644000175000017500000000174212226342606021760 0ustar tzafrirtzafrir error @err_p_p: @error: @code: @fmt: @...: @error: @status: @Returns: @status: @Returns: @status: @Returns: @error: @Returns: libuser-0.60~dfsg/docs/reference/tmpl/prompt.sgml0000644000175000017500000000104612226342606022145 0ustar tzafrirtzafrir prompt @prompts: @count: @callback_data: @error: @Returns: @prompts: @count: @callback_data: @error: @Returns: libuser-0.60~dfsg/docs/reference/tmpl/fs.sgml0000644000175000017500000000240012226342606021227 0ustar tzafrirtzafrir fs @oldhome: @newhome: @error: @Returns: @ctx: @skeleton: @directory: @owner: @group: @mode: @error: @Returns: @directory: @error: @Returns: @ent: @error: @Returns: @ent: @error: @Returns: @ctx: @ent: @error: @Returns: @ctx: @ent: @error: @Returns: @table: libuser-0.60~dfsg/docs/reference/libuser-overrides.txt0000644000175000017500000000000012226342567023165 0ustar tzafrirtzafrirlibuser-0.60~dfsg/docs/Makefile.in0000644000175000017500000005555412226342575017115 0ustar tzafrirtzafrir# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = docs DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/lib-ld.m4 \ $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man5dir = $(mandir)/man5 am__installdirs = "$(DESTDIR)$(man5dir)" NROFF = nroff MANS = $(man_MANS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CRYPT_LIBS = @CRYPT_LIBS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_LIBS = @GLIB_LIBS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GOBJECT_CFLAGS = @GOBJECT_CFLAGS@ GOBJECT_LIBS = @GOBJECT_LIBS@ GREP = @GREP@ GTKDOC_CHECK = @GTKDOC_CHECK@ GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ GTKDOC_MKPDF = @GTKDOC_MKPDF@ GTKDOC_REBASE = @GTKDOC_REBASE@ HTML_DIR = @HTML_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ NSCD = @NSCD@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SELINUX_LIBS = @SELINUX_LIBS@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ YACC = @YACC@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = reference man_MANS = libuser.conf.5 CLEANFILES = $(man_MANS) sgml/libuser.html sgml/libuser-1.html \ sgml/libuser-2.html sgml/libuser.txt EXTRA_DIST = attributes.txt libuser.conf.5.in rfc2307.txt sgml/libuser.sgml all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-man5: $(man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(man_MANS)'; \ test -n "$(man5dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man5dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man5dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.5[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \ done; } uninstall-man5: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man5dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.5[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(MANS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(man5dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-man install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-man5 install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-man uninstall-man: uninstall-man5 .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-man5 install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-man uninstall-man5 all: sgml/libuser.txt sgml/libuser.html libuser.conf.5: $(srcdir)/libuser.conf.5.in Makefile sed 's,@sysconfdir\@,$(sysconfdir),g' \ < $(srcdir)/libuser.conf.5.in > $@ sgml/libuser.txt: $(srcdir)/sgml/libuser.sgml [ -d sgml ] || mkdir sgml cd sgml; sgml2txt ../$(srcdir)/sgml/libuser.sgml sgml/libuser.html: $(srcdir)/sgml/libuser.sgml [ -d sgml ] || mkdir sgml cd sgml; sgml2html ../$(srcdir)/sgml/libuser.sgml # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: libuser-0.60~dfsg/docs/libuser.conf.5.in0000644000175000017500000002462612226342567020131 0ustar tzafrirtzafrir'\" t .\" A man page for libuser.conf -*- nroff -*- .\" Copyright (C) 2005, 2008, 2010 Red Hat, Inc. .\" .\" This is free software; you can redistribute it and/or modify it under .\" the terms of the GNU Library General Public License as published by .\" the Free Software Foundation; either version 2 of the License, or .\" (at your option) any later version. .\" .\" This program is distributed in the hope that it will be useful, but .\" WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this program; if not, write to the Free Software .\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. .\" .\" Author: Miloslav Trmac .TH libuser.conf 5 2010-02-08 libuser .SH NAME libuser.conf \- configuration for libuser and libuser utilities .SH FILE FORMAT .B libuser.conf is a text file. Leading and trailing white space on each line is ignored. Lines starting with .B # are ignored. The file defines variables grouped into sections. Each section starts with a section header: .RS \fB[\fIsection name\fB]\fR .RE A single section header can appear more than once in the file. The lines following a section header define variables from that section: .RS .I variable .B = .I value .RE The .I value can be empty. A .I variable can have more than one value, specified by using more than one line defining that \fIvariable\fR. All currently defined variables accept only the first value and ignore the others, if any. .SH \fB[defaults]\fR .TP .B create_modules A list of module names to use when creating user or group entries, unless the application specifies a different list. The module names in the list can be separated using space, tab or comma. Default value is \fBfiles shadow\fR. .TP .B crypt_style The algorithm to use for password encryption when creating new passwords. The current algorithm may be retained when changing a password of an existing user, depending on the application. Possible values are \fBdes\fR, \fBmd5\fR, \fBblowfish\fR, .B sha256 and \fBsha512\fR, all case-insensitive. Unrecognized values are treated as \fBdes\fR. Default value is \fBdes\fR. .TP \fBhash_rounds_min\fR, \fBhash_rounds_max\fR These variables specify an inclusive range of hash rounds used when .B crypt_style is .B sha256 or \fBsha512\fR. A number of hash rounds is chosen from this interval randomly. A larger number of rounds makes password checking, and brute-force attempts to guess the password by reversing the hash, more CPU-intensive. The number of rounds is restricted to the interval [1000, 999999999]. If only one of the above variables is specified, the number of rounds used is specified by the other variable. If neither variable is specified, the number of rounds is chosen by \fBlibc\fR. .TP .B mailspooldir The directory containing user's mail spool files. Default value is \fB/var/mail\fR. .TP .B moduledir The directory containing .B libuser modules. Default value uses the modules installed with \fBlibuser\fR, corresponding to the architecture of the .B libuser library, e.g. \fB/usr/lib/libuser\fR or \fB/usr/lib64/libuser\fR (assuming .B libuser was configured with \fB--prefix=/usr\fR). .TP .B modules A list of module names to use when not creating user or group entries, unless the application specifies a different list. The module names in the list can be separated using space, tab or comma. Default value is \fBfiles shadow\fR. .TP .B skeleton The directory containing files to copy to newly created home directories. Default value is \fB/etc/skel\fR. .SH \fB[import]\fR .TP .B login_defs A path to the .I login.defs file from \fBshadow\fR. If this variable is defined, the variables from the named file are used in place of some .B libuser variables. Variables explicitly defined in .I libuser.conf are not affected by contents of \fIlogin.defs\fR. The following variables are imported: .TS tab(,); l|l -|- lb|lb. Variable,Imported as ENCRYPT_METHOD,defaults/crypt_style GID_MIN,groupdefaults/LU_GIDNUMBER MAIL_DIR,defaults/mailspooldir MD5_CRYPT_ENAB,defaults/crypt_style PASS_MAX_DAYS,userdefaults/LU_SHADOWMAX PASS_MIN_DAYS,userdefaults/LU_SHADOWMIN PASS_WARN_AGE,userdefaults/LU_SHADOWWARNING SHA_CRYPT_MIN_ROUNDS,defaults/hash_rounds_min SHA_CRYPT_MAX_ROUNDS,defaults/hash_rounds_max UID_MIN,userdefaults/LU_UIDNUMBER .TE The following variables are .I not imported: \fBCREATE_HOME\fR, \fBGID_MAX\fR, \fBMAIL_FILE\fR, \fBSYSLOG_SG_ENAB\fR, \fBUID_MAX\fR, \fBUMASK\fR, \fBUSERDEL_CMD\fR, \fBUSERGROUPS_ENAB\fR .TP .B default_useradd A path to the .I default/useradd file from .B useradd in \fBshadow\fR. If this variable is defined, the variables from the named file are used in place of some .B libuser variables. Variables explicitly defined in .I libuser.conf are not affected by contents of \fIdefault/useradd\fR. The following variables are imported: .TS tab(,); l|l -|- lb|lb. Variable,Imported as EXPIRE,userdefaults/LU_SHADOWEXPIRE GROUP,userdefaults/LU_GIDNUMBER HOME,userdefaults/LU_HOMEDIRECTORY INACTIVE,userdefaults/LU_SHADOWINACTIVE SHELL,userdefaults/LU_LOGINSHELL SKEL,defaults/skeleton .TE The .B HOME variable value has .B /%n appended to it before importing. .SH \fB[userdefaults]\fR This section defines attribute values of newly created user entities. There is one special variable: .TP .B LU_UIDNUMBER A decimal number, the first allowed UID value for regular users (not system users). Default value is \fB500\fR. .P All other variables have the same names as the attribute names from \fB\fR and define attribute values. Either the macro name (e.g. \fBLU_GECOS\fR) or the macro content (e.g. \fBpw_gecos\fR) can be used; if both are used, the one appearing later in the configuration file is used. The .B % character in the value of the variable introduces an escape sequence: .B %n is replaced by the user name, .B %d is replaced by current date in days since the epoch, .B %u is replaced by the user's UID. There is no way to escape the .B % character and avoid this substitution. After the .B userdefaults section is processed, modules may define additional attributes or even override the attributes defined in this section. .SH \fB[groupdefaults]\fR The .B groupdefaults section is similar to \fBuserdefaults\fR. There is one special variable: .TP .B LU_GIDNUMBER A decimal number, the first allowed GID value for regular groups (not system groups). Default value is \fB500\fR. .P The other variables follow the same rules as in the .B userdefaults section, except that .B %n and .B %u are replaced by the group name and group's GID, respectively. After the .B groupdefaults section is processed, modules may define additional attributes or even override the attributes defined in this section. .SH \fB[files]\fR Configures the .B files module, which manages .I /etc/group and \fI/etc/passwd\fR. The configuration variables are probably useful only for .B libuser development. .TP .B directory The directory containing the .I group and .I passwd files. Default value is \fB/etc\fR. .TP .B nonroot Allow module initialization when not invoked as the .B root user if the value is \fByes\fR. .SH \fB[shadow]\fR Configures the .B files module, which manages .I /etc/gshadow and \fI/etc/shadow\fR. The configuration variables are probably useful only for .B libuser development. .TP .B directory The directory containing the .I gshadow and .I shadow files. Default value is \fB/etc\fR. .TP .B nonroot Allow module initialization when not invoked as the .B root user if the value is \fByes\fR. .SH \fB[ldap]\fR Configures the .B ldap module, which manages an user database accessible using LDAP. .TP .B userBranch The LDAP suffix for user entities. Default value is \fBou=People\fR. .TP .B groupBranch The LDAP suffix for group entities. Default value is \fBou=Group\fR. .TP .B server A domain name or an URI of the LDAP server. The URI can use the \fBldap\fR, .B ldapi or the .B ldaps protocol. When a simple domain name is used, the connection fails if TLS can not be used; an URI using the .B ldap protocol allows connection without TLS. TLS is never used with the .B ldapi protocol. Default value is \fBldap\fR. .TP .B basedn The base DN of the server. Default value is \fBdc=example,dc=com\fR. .TP .B binddn A DN for binding to the server. If the value is empty or binding using this DN fails, a DN of \fBuid=\fIuser\fR,\fIuserBranch\fR,\fIbasedn\fR is used, where .I userBranch and .I basedn are variables from this section and .I user is the user name of the invoking user, unless overridden by the .B user variable from this section. Default value is \fBcn=manager,dc=example,dc=com\fR. .TP .B user The SASLv2 identity for authenticating to the LDAP server, also overrides the user name for generating a bind DN. Default value is the name of the invoking user. .TP .B password The password used for a simple bind by default. If not specified, there is no default and the user must supply the password each time. .B IT IS STRONGLY RECOMMENDED NOT TO STORE A PASSWORD IN THE SYSTEM-WIDE .I @sysconfdir@/libuser.conf .B FILE. The configuration file is world-readable by default, and setuid programs that prompt for a server name could be used to send the password to an attacker-controlled server. .TP .B authuser The SASLv2 authorization user, if non-empty. Default value is empty. .TP .B bindtype The list of bind types to use, separated by commas. Allowed bind types are \fBsimple\fR, \fBsasl\fR, and \fBsasl/\fImechanism\fR, where .I mechanism is a SASL mechanism. The bind types (but not necessarily \fImechanism\fR) are case-insensitive. If more than one bind type is specified, their relative order is ignored. Default value is \fBsimple,sasl\fR. .\" [krb5] is not currently implemented .\" realm: default is krb5's default realm .\" principal: default is $user/admin@$default_realm .SH \fB[sasl]\fR Configures the .B sasl module, which manages a SASLv2 user database. .TP .B appname Name of the SASLv2 application. Default value is empty. .TP .B domain Domain used by libuser for the SASLv2 authentication object. Default value is empty. .SH BUGS Invalid lines in the configuration file (or the imported .B shadow configuration files) are silently ignored. .SH FILES .TP .I @sysconfdir@/libuser.conf The default location of the configuration file. Can be overridden by the .I LIBUSER_CONF environment variable, except in set-uid or set-gid programs. libuser-0.60~dfsg/docs/attributes.txt0000644000175000017500000000063412226342567017765 0ustar tzafrirtzafrirUsers: objectclass = posixAccount (files) uid userPassword uidNumber gidNumber gecos homeDirectory loginShell objectclass = shadowAccount (shadow) uid shadowLastChange shadowMin shadowMax shadowWarning shadowInactive shadowExpire shadowFlag Groups: objectclass = posixGroup (files) cn gidNumber memberUid objectclass = shadowGroup (shadow) cn userPassword administratorUid memberUid libuser-0.60~dfsg/docs/Makefile.am0000644000175000017500000000121212226342567017063 0ustar tzafrirtzafrirSUBDIRS = reference man_MANS = libuser.conf.5 CLEANFILES = $(man_MANS) sgml/libuser.html sgml/libuser-1.html \ sgml/libuser-2.html sgml/libuser.txt EXTRA_DIST = attributes.txt libuser.conf.5.in rfc2307.txt sgml/libuser.sgml all: sgml/libuser.txt sgml/libuser.html libuser.conf.5: $(srcdir)/libuser.conf.5.in Makefile sed 's,@sysconfdir\@,$(sysconfdir),g' \ < $(srcdir)/libuser.conf.5.in > $@ sgml/libuser.txt: $(srcdir)/sgml/libuser.sgml [ -d sgml ] || mkdir sgml cd sgml; sgml2txt ../$(srcdir)/sgml/libuser.sgml sgml/libuser.html: $(srcdir)/sgml/libuser.sgml [ -d sgml ] || mkdir sgml cd sgml; sgml2html ../$(srcdir)/sgml/libuser.sgml libuser-0.60~dfsg/docs/sgml/0000755000175000017500000000000012226342606015767 5ustar tzafrirtzafrirlibuser-0.60~dfsg/docs/sgml/libuser.sgml0000644000175000017500000002066312226342567020335 0ustar tzafrirtzafrir
libuser 0.52.2 Nalin Dahyabhai 28 September 2004 This is the libuser administrator and programmer's guide. It first describes the motivation for the existence of this library, and then delves into the library interface used by both libuser modules and applications. Introduction

This section describes libuser: why it was written, and how it works. How the library is to be used will be described later. Motivation

When proper nsswitch functionality was introduced into glibc 2.0, it became possible to supply third-party facilities which would allow the standard C library (and by extension, all of a system's binaries) to pull information about users, protocols, and services from a variety of sources the glibc authors might not have anticipated.

The most common use for a new nsswitch module is supplementing the user and group databases, extending the data sources accessed over a network to a centrally-managed information store. This, along with the ability to authenticate users using networked servers (functionality provided by the increasingly-ubiquitous Linux-PAM library) and an enterprise-class networked filesystem, allows a properly-configured Linux workstation to participate as a full-fledged client in a large-scale network.

The facilities provided by PAM allow a user to log in and change her authentication tokens. The nsswitch interface allows any user (even unprivileged users like nobody) to look up information needed to run applications.

However, there are certain functions supplied by traditional isolated systems which such a networked workstation can't provide. Users have no method for modifying their non-essential information (chfn is broken), and the system administrator who previously had total power over the user and group databases must now perform all administration at the server using tools which are designed for general modification of the information store (hand-editing zone files for hesiod databases, ldapmodify, kadmin) instead of the traditionally-used tools. Alternative Solutions

The software which comes closest to meeting these needs is pwdb. However, the pwdb library has a few design limitations which make it unsuitable for this purpose. Like the standard files-based mechanisms, pwdb assumes that the superuser wields full power over the databases it interfaces with. The current version of pwdb provides no facilities for managing groups(?). The current version of pwdb can not be extended easily by third parties due to its reliance on static linking. The libuser Library

The libuser library implements a fully-modular system for reading, modifying, creating, and removing user and group accounts and account information. Modules which provide access to information stores can request information from the accessing user in order to authenticate to the information store. System Administration

This section describes libuser's configuration file and bundled applications which may be of use to system administrators. Configuration

The libuser configuration file is named libuser.conf and usually lives in /etc. Its format is the common format used by numerous other programs. Sections are marked by the section name enclosed in square brackets ([section]), and configuration directives within these sections are of the form key = value.

The defaults, userdefaults, and groupdefaults sections are used by the library itself. The defaults section specifies the directory where modules can be found (moduledir) and lists the modules to be consulted when looking up user information.

There are two lists of modules because libuser separates an account's authentication information from other information. This is done to allow different information stores to be used for these functions, and because some information stores can only hold authentication data (for example, shadow and krb5).

For the info_modules and auth_modules lists, order is only important for account creation -- the library will attempt to create a data entry for the user in each of the modules until one of them succeeds (so if you prefer new accounts to be created in your LDAP directory, then you'd make sure "ldap" was listed before "files"). For looking up account information, the order determines precedence because the library stops searching after a module returns success (so again, you'd want "ldap" listed before "files"). Account modifications and deletions go straight to the information store which is known to hold the user's information. Modules

Specific modules implement access to specific information stores. The modules included in the source distribution are the files and shadow modules. Modules can supply and manipulate either (or both) of two distinct types of data about a user: generic user information (the UID, home directory, etc.), and authentication-related information. files

The files module implements both information and authentication data stores using the standard passwd and group files.

This module uses the files section of the configuration file to store configuration data. It presently recognizes these flags: directory - the directory the passwd and group files are to be stored in shadow

The shadow module implements only an authentication data store using the shadow and the gshadow files. While the format of these files (and even the existence of the gshadow file) varies between OSs, this module supports the same file formats used by the shadow password suite.

This module uses the shadow section of the configuration file to store configuration data. It presently recognizes these flags: directory - the directory the shadow and gshadow files are to be stored in. krb5

The krb5 module implements only an authentication data store using a connection to the Kerberos realm's administrative server and the kadmin protocols.

This module uses the krb5 section of the configuration file to store configuration data. It presently recognizes these flags: realm - the default realm to administer accounts in. If not specified, the value is taken from krb5.conf by the Kerberos libraries the module links with. ldap

The ldap module implements both information and authentication data stores using an LDAP directory and a schema which (should) conform to RFC2307. The module expects the client and server to support access using LDAPv3 with TLS; TLS is not required if the server is specified by URI.

This module uses the ldap section of the configuration file to store configuration data. It presently recognizes these flags: server - the hostname or URI of the LDAP server basedn - the distinguished name which is the root of your tree user - the user name with which to perform SASL binds authuser - the authorization user name with which to perform SASL binds binddn - the distinguished name to connect as for administrative access userBranch - the distinguished name (relative to the basedn) under which user account data is kept groupBranch - the distinguished name (relative to the basedn) under which group account data is kept Applications

Sample testbed applications which mimic the behavior of certain parts of the shadow password suite are included in the libuser distribution. To allow them to be used alongside existing utilities, their names have been prefixed with the letter 'l'.

As of this writing (version 0.7), this list of tools includes workalikes for useradd, usermod, userdel, groupadd, groupmod, groupdel, and chage. It should be noted that none of these tools provide a means for modifying the defaults they use, and no functions for creating, populating, moving, or deleting user home directories are implemented.

libuser-0.60~dfsg/README0000644000175000017500000000107012226342567014761 0ustar tzafrirtzafrirAbout ===== The libuser library implements a standardized interface for manipulating and administering user and group accounts. The library uses pluggable back-ends to interface to its data sources. Sample applications modeled after those included with the shadow password suite are included. New releases will be available at https://fedorahosted.org/libuser/ . Bugs ==== Please consider reporting the bug to your distribution's bug tracking system. Otherwise, report bugs at https://fedorahosted.org/libuser/ . Bug reports with patches are especially welcome. libuser-0.60~dfsg/NEWS0000644000175000017500000005517512226342567014617 0ustar tzafrirtzafrir0.60: * New functions lu_homedir_remove_for_user() and lu_homedir_remove_for_user_if_owned(). * libuser's pkg-config file no longer refers to internally-used libraries. glib-2.0 and gobject-2.0 are still included because they are required to use the API anyway. * When setting dates in shadow fields, avoid the special value 0 if the clock is incorrect. * Miscellaneous cleanups. 0.59: * Fixed security vulnerabilities: * Race conditions in copying and removing home directories (CVE-2012-5630) * Information disclosure when moving users' home directory (CVE-2012-5644) Related changes: - INCOMPATIBLE API CHANGES: lu_homedir_move() and lu_homedir_populate() will refuse to use a pre-existing directory as a destination. - setuid/setgid bits are now preserved when copying regular files in home directories (from /etc/skel or when moving a home directory) * Empty fields in /etc/shadow are now treated as "missing", like libc does. * Specific values of the attributes can be used to represent "missing data". * lchage(1) now handles missing fields on both input and output. * Refuse to build when secure_getenv() is not available. * Miscellaneous bug fixes and cleanups. 0.58 * API enhancements: * New helpers for attribute access replace 4-5 function calls with 1: lu_ent_get_first_{string,id,value_strdup}(), lu_ent_set_{string,id,long}() * New header , providing lu_homedir_{populate,move,remove}, lu_nscd_flush_cache(), and lu_mail_spool_{create,remove}. * lu_users_enumerate_by_group_full() and lu_groups_enumerate_by_user_full() are now fully supported. * New module-private function lu_util_append_values(). * Documented that LU_*PASSWORD should not be manipulated directly. * deleteUser in Python bindings now removes the mail spool instead of creating it. * New warning in libuser.conf.5 about storing a LDAP password in system-wide configuration. * Module interface ABI has changed. * Miscellaneous bug fixes and cleanups, quite a few memory leaks fixed. 0.57.7 * lu_users_enumerate_by_group_full() added, implemented ONLY for LDAP for now. Related functions and functionality in other modules will be added later. Applications are advised to NOT USE these functions yet. * group/user list by name of a user/group now returns an error if the user/group was not found. The Python bindings enumerateUsersFull and enumerateGroupsFull no longer crash in this situation. * Updated translations. 0.57.6 * Make it possible to use ldapi: URLs by not trying to use TLS (based on a patch by ). * Hopefully fix races in test suite, causing failures on slower computers. * Mark --help messages for translation and improve them a bit. * Update translations. 0.57.5 * Update translations. 0.57.4 * Don't crash when a database file size is a multiple of page size. * Miscellaneous bug fixes and cleanups. 0.57.3 * Don't assume user/group IDs start at 500 in Python getFirstUnusedGid and getFirstUnusedUid. * Preserve S_ISGID and other bits when copying directories from /etc/skel. * Deprecate lu_*_t typedefs: use {struct,enum} lu_* instead. * Update to build with recent gtk-doc. 0.57.2 * Fix adding LDAP users with empty gecos. * Correctly preserve algorithm used to hash an LDAP password when changing it. * Don't hard-code ports used in the test suite (to allow parallel development and builds). * Miscellaneous bug fixes. 0.57.1 * Fix a crash when a module refuses to load with a warning (e.g. the "shadow" module when /etc/shadow is not present) 0.57 * Resolve an ambiguity about "password" value format that could cause setting a known plaintext password in LDAP accounts: the "files"/"shadow" and LDAP modules may not be used together any more, and the module interface ABI has changed to support this. * Don't authenticate the user (in lchfn, lchsh, lpasswd) if the application is not set*id and it does not need elevated privileges. In particular, this allows the above programs to be used for LDAP administration by unprivileged users. * Change default crypt_style to sha512. * Don't abort on invalid ID values. * Miscellaneous bug fixes. 0.56.18 * Update translations. 0.56.17 * New Python constant VALUE_INVALID_ID and function validateIdValue. * Update translations. 0.56.16 * Update translations. 0.56.15 * Update translations. 0.56.14 * Use dgettext() inside the library. * Allow passing passwords using a pipe. * Allow specifying the LDAP password in a config file (patch by Rob Myers ). 0.56.13 * Report error in lid if the specified name does not exist. * Don't default a home directory to a path that contains a "." or ".." component derived from the user name (explicitly specified home directories that contain such components are accepted). * Detect naming conflicts when renaming an entry in the "files" or "shadow" module. * Add new arguments to luseradd and lusermod, to support creating and modifying LDAP user entries with the inetOrgPerson objectClass. 0.56.12 * Update translations. 0.56.11 * Remove user's mail spool as well in (luserdel -r). * Refuse GID and UID values (id_t)-1. * Verify name validity when renaming an entity. * Fix flushing of nscd cache by luser* utilities. 0.56.10 * Prohibit entity values that contain ':' in the files and shadow module (except for the last field on the line). * Don't corrupt LDAP passwords that use an unsupported password encryption scheme. * When the user name is used as a default group name, don't interpret it as a number. * Minor test suite and man page fixes. 0.56.9 * Warn in lusermod if changing a primary group ID to a group that does not exist. (#1) * Fix pastos in man pages. 0.56.8 * New home page at https://fedorahosted.org/libuser/ . 0.56.7 * Fix a crash with disabled SELinux * Add support for SHA256 and SHA512 in password hashes. * Fix file locking on some architectures * Remove default.-c, moving the provided functions to libuser proper. 0.56.6 * Set SELinux file contexts when creating home directories and preserve them when moving home directories 0.56.5 * Work around spurious error messages when run against the Fedora Directory server * Fix error reporting when creating home directories and creating / removing mail spool files 0.56.4 * Update the last password change date field when changing passwords. 0.56.3 * Allow specifying a SASL mechanism (#240904, original patch by Simo Sorce). 0.56.2 * Update translations 0.56.1 * When changing passwords, only silently ignore known shadow markers, not all invalid hashes 0.56 * Document the correct types used for attribute values. Use these types for parsing, to avoid corrupting number-like strings, e.g. '07' -> 7; this expands the API requirements * Miscellaneous bug fixes, optimizations and cleanups; module interface ABI has changed 0.55 * Remove the quota library and Python module. It doesn't even compile and has no known users. * Add support for the 64-bit API of Python 2.5 * Minor cleanups 0.54.8 * Add importing of HOME from default/useradd. 0.54.7 * Update translations 0.54.6 * Fix bugs in handling of invalid lines in the files and shadow modules. * Fix pattern matching in lu_*_enumerate_full in the files and shadow modules. * Add more error reporting, return non-zero exit status on error from utils. * Use the skeleton directory specified in libuser.conf by Python admin.createHome and admin.addUser, add parameter skeleton= to admin.addUser. 0.54.5 * Don't reference @pkglibdir@ in libuser.conf.5 to avoid multilib file conflicts. 0.54.4 * Fix compilation with pre-C99 compilers (#179385, patch by Dan Yefimov). * Allow building without Python (#179384, original patch by Dan Yefimov). 0.54.3 * Fix a crash when lpasswd is run without specifying an user name 0.54.2 * Avoid using deprecated openldap functions 0.54.1 * Support for importing of configuration from shadow (/etc/login.defs and /etc/default/useradd) * New libuser.conf(5) man page * Minor cleanups and bug fixes all over the code 0.54 * Make sure attributes with no values can never appear * Fix crash in the "files" module when an attribute is missing * Use hidden visibility for internal functions, remove them from libuser/user_private.h; this changes module interface ABI * Miscellaneous source code simplifications 0.53.8 * Permit "portable" user and group names as defined by SUSv3, plus trailing $ * Disable building static libraries by default * Miscellaneous build machinery improvements 0.53.7 * Add missing translations * Update translations 0.53.6 * Allow empty configuration values. 0.53.5 * Ignore nss_compat lines in the "files" module. * Autodetect Python version. 0.53.4 * Fix adding of objectclasses to LDAP user accounts. 0.53.3 * Handle more I/O failures. 0.53.2 * Important bug fixes in lchage, lgroupmod, lnewusers and lusermod; minor bug fixes in lpasswd and luseradd. * Add man pages for the utilities. 0.53.1 * Export UT_NAMESIZE from to Python 0.53 * Support UID and GID values larger than LONG_MAX (#124967) * Fix updating of groups after user renaming in lusermod * Allow setting a shadow password even if the current shadow password is invalid (#131180) * Add lu_{user,group}_unlock_nonempty (#86414); module interface ABI has changed * Miscellaneous bug and memory leak fixes 0.52.6 * Mark more strings for translation * Make error reporting more consistent and more verbose, output error messages on stderr. * Port sasldb backend to Cyrus SASL v2, make it at least minimally usable 0.52.5 * Fix home directory renaming in ADMIN.modifyUser (#135280) * Further Python reference counting fixes 0.52.4 * Memory leak fixes 0.52.3 * Fix compilation without libuser headers already installed (#134085) 0.52.2 * Allow LDAP connection using ldaps, custom ports or without TLS (original patch from Pawel Salek). 0.52.1 * Fix freecon() of uninitialized value in files/shadow module 0.52 * Usable LDAP backend * Miscellaneous bug fixes 0.51.12 * Don't claim success and exception at the same time (#133479) * LDAP fixes, second round * Various other bug fixes 0.51.11 * Allow documented optional arguments in Python ADMIN.{addUser,modifyUser,deleteUser} (#119812) * Add man pages for lchfn and lchsh * LDAP fixes, first round * Avoid file conflict on multilib systems * Call ldconfig correctly 0.51.10 * Don't attempt to lookup using original entity name after entity modification (rename in particular) (#78376, #121252) * Fix copying of symlinks from /etc/skel (#87572, original patch from gLaNDix) * Make --enable-quota work, and fix the quota code to at least compile (#89114) * Fix several bugs (#120168, original patch from Steve Grubb) * Don't hardcode python version in spec file (#130952, from Robert Scheck) * Properly integrate the SELinux patch, it should actually be used now, even though it was "enabled" since 0.51.7-6 0.51.9 * Fix various typos * Document library interfaces * Build all shared libraries with -fPIC (#72536) 0.51.8 * Update to build with latest autotools and gtk-doc * Update ALL_LINGUAS and POTFILES.in * Rebuild to depend on newer openldap 0.51.7-7 * fix is_selinux_enabled call 0.51.7-3 * Add SELinux support 0.51.7 * ldap: set error codes correctly when we encounter failures initializing * don't double-close modules which fail initialization * ldap: don't set an error in cases where one is already set 0.51.6 * use a crypt salt consistent with the defaults/crypt_style setting when setting new passwords (#79337) 0.51.5 * expose lu_get_first_unused_id() as a package-private function * provide libuser.ADMIN.getFirstUnusedUid and libuser.ADMIN.getFirstUnusedGid in python 0.51.4 * fix not freeing resources properly in files.c(generic_is_locked), spotted by Zou Pengcheng 0.51.2 * degrade gracefully * build with --with-pic and -fPIC * remove unpackaged man page 0.51.1-2 * translation updates 0.51.1-1 * doc updates -- cvs tree moved * language updates * disallow weird characters in account names * automated rebuild 0.51 * files: ignore blank lines in files * libuser: disallow creation of accounts with names containing whitespace, control characters, or non-ASCII characters 0.50.2 * refresh translations * fix a heap-corruption bug in the python bindings 0.50 * bump version * refresh translations 0.49.102 * ldap: cache an entity's dn in the entity structure to try to speed things up 0.49.101-2 * add missing buildreqs on cyrus-sasl-devel and openldap-devel (#59456) * translation refresh 0.49.101-1 * fix python bindings of enumerateFull functions * adjust prompter wrapping to not error out on successful returns 0.49.100 * be more careful about printing error messages * fix refreshing after adding of accounts * ldap: try to use a search to convert names to DNs, and only fall back to guessing if it turns up nothing * files: fix an off-by-one in removal of entries 0.49.99 * refresh translations * fix admin() constructor comments in the python module 0.49.98 * automatically refresh entities after add, modify, setpass, removepass, lock, and unlock operations * remove debug spewage when creating and removing mail spools * files: fix saving of multi-valued attributes * rename MEMBERUID attribute for groups to MEMBERNAME 0.49.97 * files: fix bug in removals * ldap: revert attempts at being smart at startup time, because it makes UIs very messy (up the three whole dialogs just to start the ldap stuff!) 0.49.96 * fix thinko in dispatch routines 0.49.95 * lgroupmod: fix thinko 0.49.93 * move shadow initialization for groups to the proper callback * rework locking in the files module to not require that files be writable * expose lu_strerror() * add various typedefs for types used by the library 0.49.92 * add removepass() functions * lchfn,lchsh,lpasswd - reorder PAM authentication calls * include API docs in the package 0.49.91 * ldap: finish port to new API * sasl: finish port to new API (needs test) * libuser: don't commit object changes before passing data to service functions which might need differing data sets to figure out what to change (for example, ldap) 0.49.90 * bind the internal mail spool creation/removal functions for python * renamed the python module * revamped internals to use gobject's gvalues and gvaluearrays instead of glists of cached strings * add enumeration-with-data functions to the C library * require linuxdoc-tools instead of sgml-tools for rawhide * fixup build files to allow building for arbitrary versions of python 0.32 * link the python module against libpam * attempt to import the python modules at build-time to verify dependencies 0.31 * fix a file-parsing bug that popped up in 0.29's mmap modifications 0.30 * quotaq: fix argument order when reading quota information * user_quota: set quota grace periods correctly * luseradd: never create home directories for system accounts * add da translation files * update translations 0.29 * add an explicit build dependency on jade (for the docs) * HUP nscd on modifications * userutil.c: mmap files we're reading for probable speed gain * userutil.c: be conservative with the amount of random data we read * docs fixes 0.28 * apps: print usage on errors * lnewusers.c: initialize groups as groups, not users * lnewusers.c: set passwords for new accounts * luseradd.c: accept group names in addition to IDs for the -g flag * luseradd.c: allow the primary GID to be a preexisting group 0.27 * add ko translation files * files.c: fix a heap corruption bug in lock/unlock (#51750) * files.c: close a memory leak in reading of files * files.c: remove implementation limits on lengths of lines 0.26 * lusermod: change user name in groups the user is a member of during renames * lgroupmod: change primary GID for users who are in the group during renumbers * ldap.c: handle new attributes more gracefully if possible * add ru translation files 0.25.1 * rename the quota source files to match the library, which clears up a file conflict with older quota packages * add ja translation files * add lu_ent_clear_all() function 0.25 * close up some memory leaks * add the ability to include resident versions of modules in the library 0.24-4 * fix incorrect Py_BuildValue invocation in python module 0.24-3 * stop leaking descriptors in the files module * speed up user creation by reordering some checks for IDs being in use * update the shadowLastChanged attribute when we set a password * adjust usage of getXXXXX_r where needed * fix assorted bugs in python binding which break prompting 0.23 * install sv translation * make lpasswd prompt for passwords when none are given on the command line * make sure all user-visible strings are marked for translation * clean up some user-visible strings * require PAM authentication in lchsh, lchfn, and lpasswd for non-networked modules * print uids and gids of users and names in lid app * fix tree traversal in users_enumerate_by_group and groups_enumerate_by_users * implement enumerate_by_group and enumerate_by_user in ldap module * fix id-based lookups in the ldap module * implement islocked() method in ldap module * implement setpass() method in ldap module * add lchfn and lchsh apps * add %d substitution to libuser.conf 0.21 * finish adding a sasldb module which manipulates a sasldb file * add users_enumerate_by_group and groups_enumerate_by_users * luserdel: remove the user's primary group if it has the same name as the user and has no members configured (-G disables) * fixup some configure stuff to make libuser.conf get generated correctly even when execprefix isn't specified 0.20 * only call the auth module when setting passwords (oops) * use GTrees instead of GHashTables for most internal tables * files: complain properly about unset attributes * files: group passwords are single-valued, not multiple-valued * add lpasswd app, make sure all apps start up popt with the right names 0.18 * actually make the new optional arguments optional * fix lu_error_new() to actually report errors right * fix part of the python bindings * include tools in the binary package again * fixup modules so that password-changing works right again * add a "key" field to prompt structures for use by apps which like to cache these things * add an optional "mvhomedir" argument to userModify (python) 0.16.1 * finish home directory population * implement home directory moving * change entity get semantics in the python bindings to allow default values for .get() * add lu_ent_has(), and a python has_key() method to Entity types * don't include tools in the binary package * add translated strings * lib/user.c: catch and ignore errors when running stacks * lusermod: fix slightly bogus help messages * luseradd: when adding a user and group, use the gid of the group instead of the user's uid as the primary group * properly set the password field in user accounts created using auth-only auth modules (shadow needs "x" instead of "!!") * implement home directory removal, start on population * fix group password setting in the files module * setpass affects both auth and info, so run both stacks * make the testbed apps noinst * fix errors due to uninitialized fields in the python bindings * add kwargs support to all python wrappers * add a mechanism for passing arguments to python callbacks * stub out the krb5 and ldap modules so that they'll at least compile again * don't bail when writing empty fields to colon-delimited files * use permissions of the original file when making backup files instead of 0600 * finish implementing is_locked methods in files/shadow module * finish cleanup of the python bindings * allow conditional builds of modules so that we can build without all of the prereqs for all of the modules * add error reporting facilities * split public header into pieces by function * backend cleanups * make %{name}-devel require %{name} and not %{name}-devel * clean up quota bindings some more * finish most of the ldap bindings * fix a subtle bug in the files module that would show up when renaming accounts * fix mapping methods for entity structures in python * get bindings for prompts to work correctly * clean up some of the add/remove semantics (set source on add) * ldap: implement enumeration * samples/enum: fix the argument order * clean up python bindings for quota 0.11 * finish up python bindings for quota support * finish up quota support libs * start quota support library to get some type safety * start looking at quota manipulation * add functions for enumerating users and groups, optionally per-module * lusermod.c: -s should specify the shell, not the home directory 0.10 * finish the python bindings and verify that the file backend works again * remove a redundant check which was breaking modifications * finish adding setpass methods 0.9 * get a start on some Python bindings 0.8.2 * make binary-incompatible change in headers 0.8.1 * add doxygen docs and a "doc" target for them 0.8 * add a "quiet" prompter * add --interactive flag to sample apps and default to using quiet prompter * ldap: attempt a "self" bind if other attempts fail * krb5: connect to the password-changing service if the user principal has the NULL instance * the great adding-of-the-copyright-statements * take more care when creating backup files in the files module 0.7 * add openldap-devel as a buildprereq * krb5: use a continuous connection * krb5: add "realm" config directive * ldap: use a continuous connection * ldap: add "server", "basedn", "binddn", "user", "authuser" config directives * ldap: actually finish the account deletion function * ldap: don't send cleartext passwords to the directory * fix naming attribute for users (should be uid, not gid) * refine the search-by-id,convert-to-name,search-by-name logic * fix handling of defaults when the config file is read in but contains no value * implement an LDAP information store * try to clean up module naming with libtool * luseradd: pass plaintext passwords along * luseradd: use symbolic attribute names instead of hard-coded * lusermod: pass plaintext passwords along * lgroupadd: pass plaintext passwords along * lgroupmod: pass plaintext passwords along * add libuser as a dependency of libuser-devel 0.6 * See changelog in libuser.spec.in from here on. 0.5 * Implemented the krb5 back-end (user add, modify, delete only). * Lookups in the files module use O_RDONLY instead of O_RDWR. 0.4 * Modify lu_start prototype and add semantics for non-superuser use (we'll need this later). 0.3 * Remove recursive account locking from the files/shadow module. * Fixup popt help text. * Remove dependency on krb5 profile sublibrary for reading config files. 0.2 * Implemented prompting. * Added macros for LU_USERNAME and LU_GROUPNAME, found a bug in the files module while converting to use them. * Switched from getopt() to popt for argument parsing to get autohelp in the various test/demo programs. 0.1 * Finished up most of the internals and the files back-end. * Simple shadow-like programs. libuser-0.60~dfsg/modules/0000755000175000017500000000000012226342602015541 5ustar tzafrirtzafrirlibuser-0.60~dfsg/modules/sasldb.c0000644000175000017500000003147212226342567017176 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include "../lib/user_private.h" static gboolean lu_sasldb_valid_module_combination(struct lu_module *module, GValueArray *names, struct lu_error **error) { (void)module; (void)names; (void)error; /* We never access LU_*PASSWORD, so no formatting conflicts are possible. */ return TRUE; } static gboolean lu_sasldb_uses_elevated_privileges(struct lu_module *module) { (void)module; /* FIXME: actually check the permissions on the sasldb. */ return TRUE; } static gboolean lu_sasldb_user_lookup_name(struct lu_module *module, const char *name, struct lu_ent *ent, struct lu_error **error) { int i; (void)ent; (void)error; #ifdef HAVE_SASL_USER_EXISTS i = sasl_user_exists(module->module_context, NULL, NULL, name); #else i = sasl_checkpass((sasl_conn_t *) module->module_context, name, strlen(name), "", 0); #endif return i != SASL_NOUSER; } static gboolean lu_sasldb_user_lookup_id(struct lu_module *module, uid_t uid, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)uid; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_lookup_name(struct lu_module *module, const char *name, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)name; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_lookup_id(struct lu_module *module, gid_t gid, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)gid; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_user_munge(struct lu_module *module, struct lu_ent *ent, int flags, const char *password, struct lu_error **error) { size_t i; sasl_conn_t *connection; GValueArray *values; g_assert(module != NULL); LU_ERROR_CHECK(error); connection = module->module_context; values = lu_ent_get(ent, LU_USERNAME); for (i = 0; (values != NULL) && (i < values->n_values); i++) { GValue *value; char *tmp; int ret; value = g_value_array_get_nth(values, i); tmp = lu_value_strdup(value); ret = sasl_setpass(connection, tmp, password, password != NULL ? strlen (password) : 0, NULL, 0, flags); g_free(tmp); if (ret == SASL_OK) { return TRUE; } else { const char *err; err = sasl_errdetail(connection); if (password) lu_error_new(error, lu_error_generic, _("Cyrus SASL error creating " "user: %s"), err); else lu_error_new(error, lu_error_generic, _("Cyrus SASL error removing " "user: %s"), err); return FALSE; } } fprintf(stderr, "Error reading user name in %s at %d.\n", __FILE__, __LINE__); return FALSE; } static gboolean lu_sasldb_user_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)name; (void)ent; (void)error; return !is_system; } static gboolean lu_sasldb_user_add_prep(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return TRUE; } static gboolean lu_sasldb_user_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { if (lu_sasldb_user_munge (module, ent, SASL_SET_CREATE, PACKAGE, error)) { /* account created */ if (lu_sasldb_user_munge(module, ent, SASL_SET_DISABLE, PACKAGE, error) == TRUE) { /* account created and locked */ return TRUE; } else { /* account created and couldn't be locked -- delete it */ lu_sasldb_user_munge(module, ent, 0, NULL, error); return FALSE; } } else { /* account not created */ return FALSE; } return FALSE; } static gboolean lu_sasldb_user_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; /* Nod our heads and smile. */ return TRUE; } static gboolean lu_sasldb_user_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; /* setting a NULL password removes the user */ return lu_sasldb_user_munge(module, ent, 0, NULL, error); } static gboolean lu_sasldb_user_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { /* setting the disable flag locks the account, and setting a password unlocks it */ return lu_sasldb_user_munge(module, ent, SASL_SET_DISABLE, "", error); } static gboolean lu_sasldb_user_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_user_unlock_nonempty(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_user_is_locked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { int i; char *name; (void)error; name = lu_ent_get_first_value_strdup(ent, LU_USERNAME); #ifdef HAVE_SASL_USER_EXISTS i = sasl_user_exists(module->module_context, NULL, NULL, name); #else i = sasl_checkpass((sasl_conn_t *) module->module_context, name, strlen(name), "", 0); #endif g_free(name); return (i == SASL_DISABLED); } static gboolean lu_sasldb_user_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { return lu_sasldb_user_munge(module, ent, 0, password, error); } static gboolean lu_sasldb_user_removepass(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { /* SASL doesn't allow empty passwords */ (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)name; (void)is_system; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_add_prep(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return TRUE; } static gboolean lu_sasldb_group_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_unlock_nonempty(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_is_locked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static gboolean lu_sasldb_group_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { (void)module; (void)ent; (void)password; (void)error; return FALSE; } static gboolean lu_sasldb_group_removepass(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return FALSE; } static GValueArray * lu_sasldb_users_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { (void)module; (void)pattern; (void)error; return NULL; } static GPtrArray * lu_sasldb_users_enumerate_full(struct lu_module *module, const char *pattern, struct lu_error **error) { (void)module; (void)pattern; (void)error; return NULL; } static GValueArray * lu_sasldb_groups_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { (void)module; (void)pattern; (void)error; return NULL; } static GPtrArray * lu_sasldb_groups_enumerate_full(struct lu_module *module, const char *pattern, struct lu_error **error) { (void)module; (void)pattern; (void)error; return NULL; } static GValueArray * lu_sasldb_users_enumerate_by_group(struct lu_module *module, const char *group, gid_t gid, struct lu_error **error) { (void)module; (void)group; (void)gid; (void)error; return NULL; } static GValueArray * lu_sasldb_groups_enumerate_by_user(struct lu_module *module, const char *user, uid_t uid, struct lu_error **error) { (void)module; (void)user; (void)uid; (void)error; return NULL; } static gboolean lu_sasldb_close_module(struct lu_module *module) { sasl_conn_t *connection; connection = module->module_context; sasl_dispose(&connection); sasl_done(); g_free(module); return TRUE; } struct lu_module * libuser_sasldb_init(struct lu_context *context, struct lu_error **error) { static const struct sasl_callback cb = { SASL_CB_LIST_END, NULL, NULL, }; struct lu_module *ret; const char *appname; const char *domain; sasl_conn_t *connection; int i; g_assert(context != NULL); LU_ERROR_CHECK(error); /* Read in configuration variables. */ appname = lu_cfg_read_single(context, "sasl/appname", ""); domain = lu_cfg_read_single(context, "sasl/domain", ""); /* Initialize SASL. */ i = sasl_server_init(&cb, appname); if (i != SASL_OK) { lu_error_new(error, lu_error_generic, _("error initializing Cyrus SASL: %s"), sasl_errstring(i, NULL, NULL)); return NULL; } i = sasl_server_new(PACKAGE, NULL, domain, NULL, NULL, &cb, SASL_SEC_NOANONYMOUS, &connection); if (i != SASL_OK) { lu_error_new(error, lu_error_generic, _("error initializing Cyrus SASL: %s"), sasl_errstring(i, NULL, NULL)); return NULL; } /* Allocate the method structure. */ ret = g_malloc0(sizeof(struct lu_module)); ret->version = LU_MODULE_VERSION; ret->scache = lu_string_cache_new(TRUE); ret->name = ret->scache->cache(ret->scache, "sasldb"); ret->module_context = connection; /* Set the method pointers. */ ret->valid_module_combination = lu_sasldb_valid_module_combination; ret->uses_elevated_privileges = lu_sasldb_uses_elevated_privileges; ret->user_lookup_name = lu_sasldb_user_lookup_name; ret->user_lookup_id = lu_sasldb_user_lookup_id; ret->user_default = lu_sasldb_user_default; ret->user_add_prep = lu_sasldb_user_add_prep; ret->user_add = lu_sasldb_user_add; ret->user_mod = lu_sasldb_user_mod; ret->user_del = lu_sasldb_user_del; ret->user_lock = lu_sasldb_user_lock; ret->user_unlock = lu_sasldb_user_unlock; ret->user_unlock_nonempty = lu_sasldb_user_unlock_nonempty; ret->user_is_locked = lu_sasldb_user_is_locked; ret->user_setpass = lu_sasldb_user_setpass; ret->user_removepass = lu_sasldb_user_removepass; ret->users_enumerate = lu_sasldb_users_enumerate; ret->users_enumerate_by_group = lu_sasldb_users_enumerate_by_group; ret->users_enumerate_full = lu_sasldb_users_enumerate_full; ret->group_lookup_name = lu_sasldb_group_lookup_name; ret->group_lookup_id = lu_sasldb_group_lookup_id; ret->group_default = lu_sasldb_group_default; ret->group_add_prep = lu_sasldb_group_add_prep; ret->group_add = lu_sasldb_group_add; ret->group_mod = lu_sasldb_group_mod; ret->group_del = lu_sasldb_group_del; ret->group_lock = lu_sasldb_group_lock; ret->group_unlock = lu_sasldb_group_unlock; ret->group_unlock_nonempty = lu_sasldb_group_unlock_nonempty; ret->group_is_locked = lu_sasldb_group_is_locked; ret->group_setpass = lu_sasldb_group_setpass; ret->group_removepass = lu_sasldb_group_removepass; ret->groups_enumerate = lu_sasldb_groups_enumerate; ret->groups_enumerate_by_user = lu_sasldb_groups_enumerate_by_user; ret->groups_enumerate_full = lu_sasldb_groups_enumerate_full; ret->close = lu_sasldb_close_module; /* Done. */ return ret; } libuser-0.60~dfsg/modules/krb5.c0000644000175000017500000005213512226342567016570 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2005 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include "../lib/user_private.h" #define LU_KRB5_REALM 0 #define LU_KRB5_PRINC 1 #define LU_KRB5_PASSWORD 2 #define LU_KRBPASSWORD "*K*" #ifndef KRB5_SUCCESS #define KRB5_SUCCESS 0 #endif struct lu_krb5_context { struct lu_prompt prompts[3]; void *handle; }; static const char * get_default_realm(struct lu_context *context) { krb5_context kcontext; const char *ret = ""; char *realm; g_assert(context != NULL); if (krb5_init_secure_context(&kcontext) == 0) { if (krb5_get_default_realm(kcontext, &realm) == 0) { ret = context->scache->cache(context->scache, realm); krb5_free_default_realm(kcontext, realm); } krb5_free_context(kcontext); } ret = lu_cfg_read_single(context, "krb5/realm", ret); return ret; } static void * create_server_handle(struct lu_krb5_context *context, struct lu_error **error) { kadm5_config_params params; void *handle = NULL; int ret; char *service = NULL; g_assert(context != NULL); memset(¶ms, 0, sizeof(params)); params.mask = KADM5_CONFIG_REALM; params.realm = context->prompts[LU_KRB5_REALM].value; if (strstr(context->prompts[LU_KRB5_PRINC].value, "/")) { service = KADM5_ADMIN_SERVICE; } else { service = KADM5_CHANGEPW_SERVICE; } ret = kadm5_init(context->prompts[LU_KRB5_PRINC].value, context->prompts[LU_KRB5_PASSWORD].value, service, ¶ms, KADM5_STRUCT_VERSION, KADM5_API_VERSION_2, &handle); if (ret == KADM5_OK) { return handle; } else { lu_error_new(error, lu_error_generic, _ ("error connecting to the kadm5 server for service `%s' in realm `%s': %s"), service, params.realm, error_message(ret)); return NULL; } } static void free_server_handle(void *handle) { if (handle != NULL) { kadm5_destroy(handle); } } static gboolean lu_krb5_user_lookup_name(struct lu_module *module, gconstpointer name, struct lu_ent *ent, struct lu_error **error) { krb5_context context = NULL; krb5_principal principal = NULL; kadm5_principal_ent_rec principal_rec; struct lu_krb5_context *ctx = NULL; gboolean ret = FALSE; g_assert(module != NULL); g_assert(name != NULL); g_assert(strlen((char *) name) > 0); ctx = (struct lu_krb5_context *) module->module_context; if (krb5_init_secure_context(&context) != 0) { lu_error_new(error, lu_error_init, _("error initializing kerberos library")); return FALSE; } if (krb5_parse_name(context, (const char *) name, &principal) != 0) { lu_error_new(error, lu_error_init, _ ("error parsing user name `%s' for kerberos"), (const char *) name); krb5_free_context(context); return FALSE; } if (kadm5_get_principal(ctx->handle, principal, &principal_rec, 0) == KADM5_OK) { ret = TRUE; } krb5_free_principal(context, principal); krb5_free_context(context); return ret; } static gboolean lu_krb5_user_lookup_id(struct lu_module *module, gconstpointer uid, struct lu_ent *ent, struct lu_error **error) { return FALSE; } static gboolean lu_krb5_group_lookup_name(struct lu_module *module, gconstpointer name, struct lu_ent *ent, struct lu_error **error) { return FALSE; } static gboolean lu_krb5_group_lookup_id(struct lu_module *module, gconstpointer gid, struct lu_ent *ent, struct lu_error **error) { return FALSE; } static gboolean lu_krb5_user_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { krb5_context context = NULL; kadm5_principal_ent_rec principal; GList *name, *pass, *i; char *password; int err; gboolean ret = FALSE; struct lu_krb5_context *ctx; g_assert(module != NULL); g_assert(name != NULL); g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); ctx = (struct lu_krb5_context *) module->module_context; if (krb5_init_secure_context(&context) != 0) { lu_error_new(error, lu_error_init, _("error initializing kerberos library")); return FALSE; } name = lu_ent_get(ent, LU_KRBNAME); if (name == NULL) { name = lu_ent_get(ent, LU_USERNAME); } if (name == NULL) { lu_error_new(error, lu_error_generic, _ ("entity structure has no %s or %s attributes"), LU_KRBNAME, LU_USERNAME); krb5_free_context(context); return FALSE; } if (krb5_parse_name(context, name->data, &principal.principal) != 0) { lu_error_new(error, lu_error_init, _ ("error parsing user name `%s' for kerberos"), (const char *) name->data); krb5_free_context(context); return FALSE; } /* screen out pre-hashed passwords */ pass = lu_ent_get(ent, LU_USERPASSWORD); for (i = pass; i; i = g_list_next(i)) { password = i->data; if (password && !g_str_has_prefix(password, "{crypt}")) { /* we can use this one */ break; } password = NULL; } /* screen out non-plain passwords (this catches all sorts of stuff, including {md5} and {sha1} */ if (password == NULL) { pass = lu_ent_get(ent, LU_USERPASSWORD); for (i = pass; i; i = g_list_next(i)) { password = i->data; if (password && !g_str_has_prefix(password, "{") != 0) { /* we can use this one */ break; } password = NULL; } } /* Note that we tried to create the account. */ ret = FALSE; if (password != NULL) { err = kadm5_create_principal(ctx->handle, &principal, KADM5_PRINCIPAL, password); if (err == KADM5_OK) { char *unparsed = NULL; /* Change the password field so that a subsequent information add will note that * the user is Kerberized. */ lu_ent_set(ent, LU_USERPASSWORD, LU_KRBPASSWORD); if (krb5_unparse_name (context, principal.principal, &unparsed) == KRB5_SUCCESS) { char *tmp; tmp = g_strconcat("{KERBEROS}", unparsed, NULL); lu_ent_add(ent, LU_USERPASSWORD, tmp); g_free(tmp); krb5_free_unparsed_name(context, unparsed); } /* Hey, it worked! */ ret = TRUE; } } return ret; } static gboolean lu_krb5_user_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { krb5_context context = NULL; krb5_principal principal = NULL, old_principal = NULL; GList *name, *old_name; gboolean ret = TRUE; struct lu_krb5_context *ctx; g_assert(module != NULL); g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); ctx = (struct lu_krb5_context *) module->module_context; if (krb5_init_secure_context(&context) != 0) { lu_error_new(error, lu_error_init, _("error initializing kerberos library")); return FALSE; } name = lu_ent_get(ent, LU_KRBNAME); if (name == NULL) { name = lu_ent_get(ent, LU_USERNAME); } if (name == NULL) { lu_error_new(error, lu_error_generic, _("entity has no %s or %s attributes"), LU_KRBNAME, LU_USERNAME); krb5_free_context(context); return FALSE; } old_name = lu_ent_get_original(ent, LU_KRBNAME); if (old_name == NULL) { old_name = lu_ent_get_original(ent, LU_USERNAME); } if (old_name == NULL) { lu_error_new(error, lu_error_generic, _ ("entity was created with no %s or %s attributes"), LU_KRBNAME, LU_USERNAME); krb5_free_context(context); return FALSE; } if (krb5_parse_name(context, name->data, &principal) != 0) { lu_error_new(error, lu_error_generic, _ ("error parsing user name `%s' for kerberos"), (const char *) name->data); krb5_free_context(context); return FALSE; } if (krb5_parse_name(context, old_name->data, &old_principal) != 0) { lu_error_new(error, lu_error_generic, _ ("error parsing user name `%s' for kerberos"), (const char *) old_name->data); krb5_free_principal(context, principal); krb5_free_context(context); return FALSE; } /* If we need to rename the principal, do it. */ if (krb5_principal_compare(context, principal, old_principal) == FALSE) { ret = FALSE; if (kadm5_rename_principal (ctx->handle, old_principal, principal) == KADM5_OK) { ret = TRUE; } } else { /* Note that the user uses Kerberos. */ lu_ent_set(ent, LU_USERPASSWORD, LU_KRBPASSWORD); /* We don't know how to do anything else, so just nod our * heads and smile. */ ret = TRUE; } krb5_free_principal(context, principal); krb5_free_principal(context, old_principal); krb5_free_context(context); return ret; } static gboolean lu_krb5_user_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { krb5_context context = NULL; krb5_principal principal; GList *name; gboolean ret = FALSE; struct lu_krb5_context *ctx; g_assert(module != NULL); g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); ctx = (struct lu_krb5_context *) module->module_context; if (krb5_init_secure_context(&context) != 0) { lu_error_new(error, lu_error_init, _("error initializing kerberos library")); return FALSE; } name = lu_ent_get(ent, LU_KRBNAME); if (name == NULL) { name = lu_ent_get(ent, LU_USERNAME); } if (name == NULL) { lu_error_new(error, lu_error_generic, _ ("entity structure has no %s or %s attributes"), LU_KRBNAME, LU_USERNAME); krb5_free_context(context); return FALSE; } if (krb5_parse_name(context, name->data, &principal) != 0) { lu_error_new(error, lu_error_generic, _ ("error parsing user name `%s' for kerberos"), (const char *) name->data); krb5_free_context(context); return FALSE; } ret = (kadm5_delete_principal(ctx->handle, principal) == KADM5_OK); krb5_free_principal(context, principal); krb5_free_context(context); return ret; } static gboolean lu_krb5_user_do_lock(struct lu_module *module, struct lu_ent *ent, gboolean lck, struct lu_error **error) { krb5_context context = NULL; kadm5_principal_ent_rec principal; GList *name; gboolean ret = FALSE; struct lu_krb5_context *ctx; g_assert(module != NULL); g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); ctx = (struct lu_krb5_context *) module->module_context; if (krb5_init_secure_context(&context) != 0) { lu_error_new(error, lu_error_init, _("error initializing kerberos library")); return FALSE; } name = lu_ent_get(ent, LU_KRBNAME); if (name == NULL) { name = lu_ent_get(ent, LU_USERNAME); } if (name == NULL) { lu_error_new(error, lu_error_generic, _ ("entity structure has no %s or %s attributes"), LU_KRBNAME, LU_USERNAME); krb5_free_context(context); return FALSE; } if (krb5_parse_name(context, name->data, &principal.principal) != 0) { lu_error_new(error, lu_error_generic, _ ("error parsing user name `%s' for kerberos"), (const char *) name->data); krb5_free_context(context); return FALSE; } ret = (kadm5_get_principal (ctx->handle, principal.principal, &principal, KADM5_PRINCIPAL | KADM5_ATTRIBUTES) == KADM5_OK); if (ret == FALSE) { lu_error_new(error, lu_error_generic, _ ("error reading information for `%s' from kerberos"), (const char *) name->data); krb5_free_principal(context, principal.principal); krb5_free_context(context); return FALSE; } else { if (lck) { principal.attributes |= KRB5_KDB_DISALLOW_ALL_TIX; } else { principal.attributes &= ~KRB5_KDB_DISALLOW_ALL_TIX; } ret = (kadm5_modify_principal (ctx->handle, &principal, KADM5_PRINCIPAL | KADM5_ATTRIBUTES) == KADM5_OK); } krb5_free_principal(context, principal.principal); return ret; } static gboolean lu_krb5_user_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return lu_krb5_user_do_lock(module, ent, TRUE, error); } static gboolean lu_krb5_user_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return lu_krb5_user_do_lock(module, ent, FALSE, error); } static gboolean lu_krb5_user_islocked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { krb5_context context = NULL; kadm5_principal_ent_rec principal; GList *name; gboolean ret = FALSE; struct lu_krb5_context *ctx; g_assert(module != NULL); g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); ctx = (struct lu_krb5_context *) module->module_context; if (krb5_init_secure_context(&context) != 0) { lu_error_new(error, lu_error_init, _("error initializing kerberos library")); return FALSE; } name = lu_ent_get(ent, LU_KRBNAME); if (name == NULL) { name = lu_ent_get(ent, LU_USERNAME); } if (name == NULL) { lu_error_new(error, lu_error_generic, _ ("entity structure has no %s or %s attributes"), LU_KRBNAME, LU_USERNAME); krb5_free_context(context); return FALSE; } if (krb5_parse_name(context, name->data, &principal.principal) != 0) { lu_error_new(error, lu_error_generic, _ ("error parsing user name `%s' for kerberos"), (const char *) name->data); krb5_free_context(context); return FALSE; } ret = (kadm5_get_principal (ctx->handle, principal.principal, &principal, KADM5_PRINCIPAL | KADM5_ATTRIBUTES) == KADM5_OK); if (ret == FALSE) { lu_error_new(error, lu_error_generic, _ ("error reading information for `%s' from kerberos"), (const char *) name->data); krb5_free_principal(context, principal.principal); krb5_free_context(context); return FALSE; } else { ret = (principal.attributes & KRB5_KDB_DISALLOW_ALL_TIX) == KRB5_KDB_DISALLOW_ALL_TIX; } return ret; } static gboolean lu_krb5_user_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { krb5_context context = NULL; krb5_principal principal = NULL; GList *name; gboolean ret = TRUE; struct lu_krb5_context *ctx; g_assert(module != NULL); g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); ctx = (struct lu_krb5_context *) module->module_context; if (krb5_init_secure_context(&context) != 0) { lu_error_new(error, lu_error_init, _("error initializing kerberos library")); return FALSE; } if (name == NULL) { name = lu_ent_get(ent, LU_USERNAME); } if (name == NULL) { lu_error_new(error, lu_error_generic, _("entity has no %s attribute"), LU_USERNAME); krb5_free_context(context); return FALSE; } if (krb5_parse_name(context, name->data, &principal) != 0) { lu_error_new(error, lu_error_generic, _ ("error parsing user name `%s' for kerberos"), (const char *) name->data); krb5_free_context(context); return FALSE; } /* Now try to change the password. */ if (password != NULL) { #ifdef DEBUG g_print("Working password for %s is `%s'.\n", name->data, password); g_print("Changing password for %s.\n", name->data); #endif if (kadm5_chpass_principal (ctx->handle, principal, (char *) password) == KADM5_OK) { #ifdef DEBUG g_print("...succeeded.\n"); #endif /* Change the password field so * that a subsequent information * modify will note that the * user is Kerberized. */ lu_ent_set(ent, LU_USERPASSWORD, LU_KRBPASSWORD); ret = TRUE; } else { #ifdef DEBUG g_print("...failed.\n"); #endif lu_error_new(error, lu_error_generic, _("error setting password for `%s'"), (const char *) name->data); } } krb5_free_principal(context, principal); krb5_free_context(context); return ret; } static gboolean lu_krb5_group_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return FALSE; } static gboolean lu_krb5_group_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return FALSE; } static gboolean lu_krb5_group_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return FALSE; } static gboolean lu_krb5_group_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return FALSE; } static gboolean lu_krb5_group_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return FALSE; } static gboolean lu_krb5_group_islocked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return FALSE; } static gboolean lu_krb5_group_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { return FALSE; } static GList * lu_krb5_users_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { return NULL; } static GList * lu_krb5_groups_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { return NULL; } static GList * lu_krb5_users_enumerate_by_group(struct lu_module *module, const char *group, gid_t gid, struct lu_error **error) { return NULL; } static GList * lu_krb5_groups_enumerate_by_user(struct lu_module *module, const char *user, struct lu_error **error) { return NULL; } static gboolean lu_krb5_close_module(struct lu_module *module) { struct lu_krb5_context *ctx = NULL; g_assert(module != NULL); ctx = (struct lu_krb5_context *) module->module_context; free_server_handle(ctx->handle); memset(ctx, 0, sizeof(*ctx)); g_free(ctx); module->scache->free(module->scache); memset(module, 0, sizeof(struct lu_module)); g_free(module); return TRUE; } struct lu_module * lu_krb5_init(struct lu_context *context, struct lu_error **error) { struct lu_module *ret = NULL; struct lu_krb5_context *ctx = NULL; void *handle = NULL; char *tmp; g_assert(context != NULL); initialize_krb5_error_table(); initialize_kadm_error_table(); /* Verify that we can connect to the kadmind server. */ g_assert(context->prompter != NULL); ctx = g_malloc0(sizeof(struct lu_krb5_context)); ctx->prompts[LU_KRB5_REALM].key = "krb5/realm"; ctx->prompts[LU_KRB5_REALM].prompt = N_("Kerberos Realm"); ctx->prompts[LU_KRB5_REALM].visible = TRUE; ctx->prompts[LU_KRB5_REALM].default_value = lu_cfg_read_single(context, "krb5/realm", get_default_realm(context)); ctx->prompts[LU_KRB5_PRINC].key = "krb5/principal"; ctx->prompts[LU_KRB5_PRINC].prompt = N_("Kerberos Admin Principal"); ctx->prompts[LU_KRB5_PRINC].visible = TRUE; if (context->auth_name) { tmp = g_strconcat(context->auth_name, "/admin", NULL); ctx->prompts[LU_KRB5_PRINC].default_value = context->scache->cache(context->scache, tmp); g_free(tmp); } else { tmp = g_strconcat(getlogin(), "/admin@", ctx->prompts[LU_KRB5_REALM].default_value, NULL); ctx->prompts[LU_KRB5_PRINC].default_value = context->scache->cache(context->scache, tmp); g_free(tmp); } ctx->prompts[LU_KRB5_PRINC].default_value = lu_cfg_read_single(context, "krb5/principal", ctx->prompts[LU_KRB5_PRINC].default_value); ctx->prompts[LU_KRB5_PASSWORD].key = "krb5/password"; ctx->prompts[LU_KRB5_PASSWORD].prompt = N_("Kerberos Password for Admin Principal"); ctx->prompts[LU_KRB5_PASSWORD].visible = FALSE; if ((context->prompter == NULL) || (context-> prompter(ctx->prompts, 3, context->prompter_data, error) == FALSE)) { g_free(ctx); return NULL; } handle = create_server_handle(ctx, error); if (handle == NULL) { g_free(ctx); return NULL; } ctx->handle = handle; /* Allocate the method structure. */ ret = g_malloc0(sizeof(struct lu_module)); ret->version = LU_MODULE_VERSION; ret->scache = lu_string_cache_new(TRUE); ret->name = ret->scache->cache(ret->scache, "krb5"); ret->module_context = ctx; /* Set the method pointers. */ ret->user_lookup_name = lu_krb5_user_lookup_name; ret->user_lookup_id = lu_krb5_user_lookup_id; ret->user_add = lu_krb5_user_add; ret->user_mod = lu_krb5_user_mod; ret->user_del = lu_krb5_user_del; ret->user_lock = lu_krb5_user_lock; ret->user_unlock = lu_krb5_user_unlock; ret->user_islocked = lu_krb5_user_islocked; ret->user_setpass = lu_krb5_user_setpass; ret->users_enumerate = lu_krb5_users_enumerate; ret->users_enumerate_by_group = lu_krb5_users_enumerate_by_group; ret->group_lookup_name = lu_krb5_group_lookup_name; ret->group_lookup_id = lu_krb5_group_lookup_id; ret->group_add = lu_krb5_group_add; ret->group_mod = lu_krb5_group_mod; ret->group_del = lu_krb5_group_del; ret->group_lock = lu_krb5_group_lock; ret->group_unlock = lu_krb5_group_unlock; ret->group_islocked = lu_krb5_group_islocked; ret->group_setpass = lu_krb5_group_setpass; ret->groups_enumerate = lu_krb5_groups_enumerate; ret->groups_enumerate_by_user = lu_krb5_groups_enumerate_by_user; ret->close = lu_krb5_close_module; /* Done. */ return ret; } libuser-0.60~dfsg/modules/files.c0000644000175000017500000021300212226342567017017 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004, 2005, 2006, 2007, 2008 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../lib/user_private.h" #define CHUNK_SIZE (LINE_MAX * 4) LU_MODULE_INIT(libuser_files_init) LU_MODULE_INIT(libuser_shadow_init) enum lock_op { LO_LOCK, LO_UNLOCK, LO_UNLOCK_NONEMPTY }; /* Guides for parsing and formatting entries in the files we're looking at. */ struct format_specifier { const char *attribute; const char *def; gboolean multiple, suppress_if_def, def_if_empty; }; static const struct format_specifier format_passwd[] = { { LU_USERNAME, NULL, FALSE, FALSE, FALSE }, { LU_USERPASSWORD, LU_COMMON_DEFAULT_PASSWORD, FALSE, FALSE, FALSE }, { LU_UIDNUMBER, NULL, FALSE, FALSE, FALSE }, { LU_GIDNUMBER, NULL, FALSE, FALSE, FALSE }, { LU_GECOS, NULL, FALSE, FALSE, FALSE }, { LU_HOMEDIRECTORY, NULL, FALSE, FALSE, FALSE }, { LU_LOGINSHELL, LU_COMMON_DEFAULT_SHELL, FALSE, FALSE, TRUE }, }; static const struct format_specifier format_group[] = { { LU_GROUPNAME, NULL, FALSE, FALSE, FALSE }, { LU_GROUPPASSWORD, LU_COMMON_DEFAULT_PASSWORD, FALSE, FALSE, FALSE }, { LU_GIDNUMBER, NULL, FALSE, FALSE, FALSE }, { LU_MEMBERNAME, NULL, TRUE, FALSE, FALSE }, }; static const struct format_specifier format_shadow[] = { { LU_SHADOWNAME, NULL, FALSE, FALSE, FALSE }, { LU_SHADOWPASSWORD, LU_COMMON_DEFAULT_PASSWORD, FALSE, FALSE, FALSE }, { LU_SHADOWLASTCHANGE, "-1", FALSE, TRUE, TRUE }, { LU_SHADOWMIN, "-1", FALSE, TRUE, TRUE }, { LU_SHADOWMAX, "-1", FALSE, TRUE, TRUE }, { LU_SHADOWWARNING, "-1", FALSE, TRUE, TRUE }, { LU_SHADOWINACTIVE, "-1", FALSE, TRUE, TRUE }, { LU_SHADOWEXPIRE, "-1", FALSE, TRUE, TRUE }, { LU_SHADOWFLAG, "-1", FALSE, TRUE, TRUE }, }; static const struct format_specifier format_gshadow[] = { { LU_GROUPNAME, NULL, FALSE, FALSE, FALSE }, { LU_SHADOWPASSWORD, LU_COMMON_DEFAULT_PASSWORD, FALSE, FALSE, FALSE }, { LU_ADMINISTRATORNAME, NULL, TRUE, FALSE, FALSE }, { LU_MEMBERNAME, NULL, TRUE, FALSE, FALSE }, }; /* Use these variables instead of string constants mainly to eliminate the risk of a typo */ static const char suffix_passwd[] = "/passwd"; static const char suffix_shadow[] = "/shadow"; static const char suffix_group[] = "/group"; static const char suffix_gshadow[] = "/gshadow"; /* Return the path of FILE_SUFFIX configured in MODULE, for g_free() */ static char * module_filename(struct lu_module *module, const char *file_suffix) { const char *dir; char *key; key = g_strconcat(module->name, "/directory", NULL); dir = lu_cfg_read_single(module->lu_context, key, "/etc"); g_free(key); return g_strconcat(dir, file_suffix, NULL); } /* Create a backup copy of "filename" named "filename-". */ static gboolean lu_files_create_backup(const char *filename, struct lu_error **error) { int ifd, ofd; gpointer ilock, olock; char *backupname; struct stat ist, ost; off_t offset; gboolean res = FALSE; g_assert(filename != NULL); g_assert(strlen(filename) > 0); /* Open the original file. */ ifd = open(filename, O_RDONLY); if (ifd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); goto err; } /* Lock the input file. */ if ((ilock = lu_util_lock_obtain(ifd, error)) == NULL) goto err_ifd; /* Read the input file's size. */ if (fstat(ifd, &ist) == -1) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), filename, strerror(errno)); goto err_ilock; } /* Generate the backup file's name and open it, creating it if it * doesn't already exist. */ backupname = g_strconcat(filename, "-", NULL); ofd = open(backupname, O_WRONLY | O_CREAT, ist.st_mode); if (ofd == -1) { lu_error_new(error, lu_error_open, _("error creating `%s': %s"), backupname, strerror(errno)); goto err_backupname; } /* If we can't read its type, or it's not a normal file, bail. */ if (fstat(ofd, &ost) == -1) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), backupname, strerror(errno)); goto err_ofd; } if (!S_ISREG(ost.st_mode)) { lu_error_new(error, lu_error_open, _("backup file `%s' exists and is not a regular file"), backupname); goto err_ofd; } /* Now lock the output file. */ if ((olock = lu_util_lock_obtain(ofd, error)) == NULL) goto err_ofd; /* Set the permissions on the new file to match the old one. */ if (fchown(ofd, ist.st_uid, ist.st_gid) == -1 && errno != EPERM) { lu_error_new(error, lu_error_generic, _("Error changing owner of `%s': %s"), backupname, strerror(errno)); goto err_olock; } if (fchmod(ofd, ist.st_mode) == -1) { lu_error_new(error, lu_error_generic, _("Error changing mode of `%s': %s"), backupname, strerror(errno)); goto err_olock; } /* Copy the data, block by block. */ for (;;) { char buf[CHUNK_SIZE]; ssize_t left; char *p; left = read(ifd, &buf, sizeof(buf)); if (left == -1) { if (errno == EINTR) continue; lu_error_new(error, lu_error_read, _("Error reading `%s': %s"), filename, strerror(errno)); goto err_olock; } if (left == 0) break; p = buf; while (left > 0) { ssize_t out; out = write(ofd, p, left); if (out == -1) { if (errno == EINTR) continue; lu_error_new(error, lu_error_write, _("Error writing `%s': %s"), backupname, strerror(errno)); goto err_olock; } p += out; left -= out; } } /* Flush data to disk, and truncate at the current offset. This is * necessary if the file existed before we opened it. */ fsync(ofd); offset = lseek(ofd, 0, SEEK_CUR); if (offset == -1 || ftruncate(ofd, offset) == -1) { lu_error_new(error, lu_error_generic, _("Error writing `%s': %s"), backupname, strerror(errno)); goto err_olock; } /* Re-read data about the output file. */ if (fstat(ofd, &ost) == -1) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), backupname, strerror(errno)); goto err_olock; } /* Complain if the files are somehow not the same. */ if (ist.st_size != ost.st_size) { lu_error_new(error, lu_error_generic, _("backup file size mismatch")); goto err_olock; } res = TRUE; err_olock: lu_util_lock_free(olock); err_ofd: close(ofd); err_backupname: g_free(backupname); err_ilock: lu_util_lock_free(ilock); err_ifd: close(ifd); err: return res; } /* Read a line from the file, no matter how long it is, and return it as a * newly-allocated string, with the terminator intact. */ static char * line_read(FILE * fp) { char *buf; size_t len, buf_size = CHUNK_SIZE; buf = g_malloc(buf_size); len = 0; while (fgets(buf + len, buf_size - len, fp) != NULL) { len += strlen(buf + len); if (len > 0 && buf[len - 1] == '\n') break; buf_size += CHUNK_SIZE; buf = g_realloc(buf, buf_size); } if (len == 0) { g_free(buf); return NULL; } else { return buf; } } /* Parse a single field value. */ static gboolean parse_field(const struct format_specifier *format, GValue *value, const char *string) { struct lu_error *err; gboolean ret; err = NULL; ret = lu_value_init_set_attr_from_string(value, format->attribute, string, &err); if (ret == FALSE) { g_assert(err != NULL); g_warning(lu_strerror(err)); lu_error_free(&err); } return ret; } /* Parse a string into an ent structure using the elements in the format * specifier array. */ static gboolean parse_generic(const gchar *line, const struct format_specifier *formats, size_t format_count, struct lu_ent *ent) { size_t i; gchar **v = NULL; GValue value; /* Make sure the line is properly formatted, meaning that it has enough fields in it for us to parse out all the fields we want, allowing for the last one to be empty. */ v = g_strsplit(line, ":", format_count); g_assert(format_count > 0); if (g_strv_length(v) < format_count - 1) { g_warning("entry is incorrectly formatted"); return FALSE; } /* Now parse out the fields. */ memset(&value, 0, sizeof(value)); for (i = 0; i < format_count; i++) { const gchar *val; val = v[i]; if (val == NULL) val = ""; /* Clear out old values in the destination structure. */ lu_ent_clear_current(ent, formats[i].attribute); if (formats[i].multiple) { /* Field contains multiple comma-separated values. */ gchar **w; size_t j; /* Split up the field. */ w = g_strsplit(val, ",", 0); for (j = 0; (w != NULL) && (w[j] != NULL); j++) { gboolean ret; /* Skip over empty strings. */ if (strlen(w[j]) == 0) continue; /* Always succeeds assuming the attribute values use G_TYPE_STRING, which is currently true. */ ret = parse_field(formats + i, &value, w[j]); g_assert (ret != FALSE); /* Add it to the current values list. */ lu_ent_add_current(ent, formats[i].attribute, &value); g_value_unset(&value); } g_strfreev(w); } else { /* Check if we need to supply the default value. */ if (formats[i].def_if_empty && formats[i].def != NULL && strlen(val) == 0) { gboolean ret; /* Convert the default to the right type. */ ret = parse_field(formats + i, &value, formats[i].def); g_assert (ret != FALSE); } else { if (parse_field (formats + i, &value, val) == FALSE) continue; } /* If we recovered a value, add it to the current * values list for the entity. */ lu_ent_add_current(ent, formats[i].attribute, &value); g_value_unset(&value); } } g_strfreev(v); return TRUE; } /* Parse an entry from /etc/passwd into an ent structure, using the attribute * names we know. */ static gboolean lu_files_parse_user_entry(const gchar * line, struct lu_ent *ent) { ent->type = lu_user; lu_ent_clear_all(ent); return parse_generic(line, format_passwd, G_N_ELEMENTS(format_passwd), ent); } /* Parse an entry from /etc/group into an ent structure, using the attribute * names we know. */ static gboolean lu_files_parse_group_entry(const gchar * line, struct lu_ent *ent) { ent->type = lu_group; lu_ent_clear_all(ent); return parse_generic(line, format_group, G_N_ELEMENTS(format_group), ent); } /* Parse an entry from /etc/shadow into an ent structure, using the attribute * names we know. */ static gboolean lu_shadow_parse_user_entry(const gchar * line, struct lu_ent *ent) { ent->type = lu_user; lu_ent_clear_all(ent); return parse_generic(line, format_shadow, G_N_ELEMENTS(format_shadow), ent); } /* Parse an entry from /etc/shadow into an ent structure, using the attribute * names we know. */ static gboolean lu_shadow_parse_group_entry(const gchar * line, struct lu_ent *ent) { ent->type = lu_group; lu_ent_clear_all(ent); return parse_generic(line, format_gshadow, G_N_ELEMENTS(format_gshadow), ent); } typedef gboolean(*parse_fn) (const gchar * line, struct lu_ent * ent); /* Look up an entry in the named file, using the string stored in "name" as * a key, looking for it in the field'th field, using the given parsing * function to load any results we find into the entity structure. */ static gboolean generic_lookup(struct lu_module *module, const char *file_suffix, const char *name, int field, parse_fn parser, struct lu_ent *ent, struct lu_error **error) { gboolean ret; int fd = -1; gpointer lock; char *line, *filename; g_assert(module != NULL); g_assert(name != NULL); g_assert(parser != NULL); g_assert(field > 0); g_assert(ent != NULL); filename = module_filename(module, file_suffix); /* Open the file and lock it. */ fd = open(filename, O_RDONLY); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); g_free(filename); return FALSE; } g_free(filename); if ((lock = lu_util_lock_obtain(fd, error)) == NULL) { close(fd); return FALSE; } /* Search for the entry in this file. */ line = lu_util_line_get_matchingx(fd, name, field, error); if (line == NULL) { lu_util_lock_free(lock); close(fd); return FALSE; } /* If we found data, parse it and then free the data. */ ret = parser(line, ent); g_free(line); lu_util_lock_free(lock); close(fd); return ret; } /* Look up a user by name in /etc/passwd. */ static gboolean lu_files_user_lookup_name(struct lu_module *module, const char *name, struct lu_ent *ent, struct lu_error **error) { return generic_lookup(module, suffix_passwd, name, 1, lu_files_parse_user_entry, ent, error); } /* Look up a user by ID in /etc/passwd. */ static gboolean lu_files_user_lookup_id(struct lu_module *module, uid_t uid, struct lu_ent *ent, struct lu_error **error) { char key[sizeof (uid) * CHAR_BIT + 1]; sprintf(key, "%jd", (intmax_t)uid); return generic_lookup(module, suffix_passwd, key, 3, lu_files_parse_user_entry, ent, error); } /* Look up a user by name in /etc/shadow. */ static gboolean lu_shadow_user_lookup_name(struct lu_module *module, const char *name, struct lu_ent *ent, struct lu_error **error) { return generic_lookup(module, suffix_shadow, name, 1, lu_shadow_parse_user_entry, ent, error); } /* Look up a user by ID in /etc/shadow. This becomes a bit tricky because * the shadow file doesn't contain UIDs, so we need to scan the passwd file * to convert the ID to a name first. */ static gboolean lu_shadow_user_lookup_id(struct lu_module *module, uid_t uid, struct lu_ent *ent, struct lu_error **error) { gboolean ret; /* First look the user up by ID. */ ret = lu_files_user_lookup_id(module, uid, ent, error); if (ret) { char *p; /* Now use the user's name to search the shadow file. */ p = lu_ent_get_first_value_strdup(ent, LU_USERNAME); if (p != NULL) { ret = generic_lookup(module, suffix_shadow, p, 1, lu_shadow_parse_user_entry, ent, error); g_free(p); } } return ret; } /* Look a group up by name in /etc/group. */ static gboolean lu_files_group_lookup_name(struct lu_module *module, const char *name, struct lu_ent *ent, struct lu_error **error) { return generic_lookup(module, suffix_group, name, 1, lu_files_parse_group_entry, ent, error); } /* Look a group up by ID in /etc/group. */ static gboolean lu_files_group_lookup_id(struct lu_module *module, gid_t gid, struct lu_ent *ent, struct lu_error **error) { char key[sizeof (gid) * CHAR_BIT + 1]; sprintf(key, "%jd", (intmax_t)gid); return generic_lookup(module, suffix_group, key, 3, lu_files_parse_group_entry, ent, error); } /* Look a group up by name in /etc/gshadow. */ static gboolean lu_shadow_group_lookup_name(struct lu_module *module, const char *name, struct lu_ent *ent, struct lu_error **error) { return generic_lookup(module, suffix_gshadow, name, 1, lu_shadow_parse_group_entry, ent, error); } /* Look up a group by ID in /etc/gshadow. This file doesn't contain any * GIDs, so we have to use /etc/group to convert the GID to a name first. */ static gboolean lu_shadow_group_lookup_id(struct lu_module *module, gid_t gid, struct lu_ent *ent, struct lu_error **error) { gboolean ret; ret = lu_files_group_lookup_id(module, gid, ent, error); if (ret) { char *p; p = lu_ent_get_first_value_strdup(ent, LU_GROUPNAME); if (p != NULL) { ret = generic_lookup(module, suffix_gshadow, p, 1, lu_shadow_parse_group_entry, ent, error); g_free(p); } } return ret; } /* Format a single field. Return field string for g_free (). */ static char * format_field(struct lu_ent *ent, const struct format_specifier *format) { GValueArray *values; char *ret; values = lu_ent_get(ent, format->attribute); if (values != NULL) { size_t j; /* Iterate over all of the data items we can, prepending a comma to all but the first. */ ret = NULL; j = 0; do { GValue *val; char *p, *tmp; val = g_value_array_get_nth(values, j); p = lu_value_strdup(val); /* Add it to the end, prepending a comma if we need to separate it from another value, unless this is the default value for the field and we need to suppress it. */ if (format->multiple == FALSE && format->suppress_if_def == TRUE && format->def != NULL && strcmp(format->def, p) == 0) tmp = g_strdup(""); else tmp = g_strconcat(ret ? ret : "", (j > 0) ? "," : "", p, NULL); g_free(p); g_free(ret); ret = tmp; j++; } while (format->multiple && j < values->n_values); } else { /* We have no values, so check for a default value, * unless we're suppressing it. */ if (format->def != NULL && format->suppress_if_def == FALSE) ret = g_strdup(format->def); else ret = g_strdup(""); } return ret; } /* Format a line for the user/group, using the information in ent, using formats to guide the formatting. Return a line for g_free(), or NULL on error. */ static char * format_generic(struct lu_ent *ent, const struct format_specifier *formats, size_t format_count, struct lu_error **error) { char *ret = NULL, *tmp; size_t i; g_return_val_if_fail(ent != NULL, NULL); for (i = 0; i < format_count; i++) { char *field; field = format_field(ent, formats + i); if (i != format_count - 1 && strchr(field, ':') != NULL) { lu_error_new(error, lu_error_invalid_attribute_value, _("%s value `%s': `:' not allowed"), formats[i].attribute, field); g_free(field); goto err; } if (i == 0) tmp = field; else { tmp = g_strconcat(ret, ":", field, NULL); g_free(field); } g_free(ret); ret = tmp; } /* Add an end-of-line terminator. */ g_assert(format_count != 0 && ret != NULL); tmp = g_strconcat(ret, "\n", NULL); g_free(ret); ret = tmp; return ret; err: g_free(ret); return NULL; } /* Does NUL-terminated CONTENTS contains an entry with the same entry name used in LINE? */ static gboolean entry_name_conflicts(const char *contents, const char *line) { size_t prefix_len; char *prefix, *fragment; gboolean res; if (strchr(line, ':') != NULL) prefix_len = strchr(line, ':') - line + 1; else if (strchr(line, '\n') != NULL) prefix_len = strchr(line, '\n') - line + 1; else prefix_len = strlen(line); if (strncmp(contents, line, prefix_len) == 0) return TRUE; prefix = g_strndup(line, prefix_len); fragment = g_strconcat("\n", prefix, NULL); g_free(prefix); res = strstr(contents, fragment) != NULL; g_free(fragment); return res; } /* Add an entity to a given flat file, using a given formatting functin to * construct the proper text data. */ static gboolean generic_add(struct lu_module *module, const char *file_suffix, const struct format_specifier *formats, size_t format_count, struct lu_ent *ent, struct lu_error **error) { lu_security_context_t fscreate; char *line, *filename, *contents; int fd; ssize_t r; gpointer lock; struct stat st; off_t offset; gboolean ret = FALSE; g_assert(module != NULL); g_assert(formats != NULL); g_assert(format_count > 0); g_assert(ent != NULL); filename = module_filename(module, file_suffix); line = format_generic(ent, formats, format_count, error); if (line == NULL) goto err_filename; if (!lu_util_fscreate_save(&fscreate, error)) goto err_line; if (!lu_util_fscreate_from_file(filename, error)) goto err_fscreate; /* Create a backup copy of the file we're about to modify. */ if (lu_files_create_backup(filename, error) == FALSE) goto err_fscreate; /* Open the file. */ fd = open(filename, O_RDWR); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); goto err_fscreate; } /* Lock the file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) goto err_fd; /* Read the file's size. */ if (fstat(fd, &st) == -1) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), filename, strerror(errno)); goto err_lock; } /* Read the entire file in. There's some room for improvement here, * but at least we still have the lock, so it's not going to get * funky on us. */ contents = g_malloc0(st.st_size + 1); if (read(fd, contents, st.st_size) != st.st_size) { lu_error_new(error, lu_error_read, _("couldn't read from `%s': %s"), filename, strerror(errno)); goto err_contents; } /* Sanity-check to make sure that the entity isn't already listed in the file. */ if (entry_name_conflicts(contents, line)) { lu_error_new(error, lu_error_generic, _("entry already present in file")); goto err_contents; } /* Hooray, we can add this entry at the end of the file. */ offset = lseek(fd, 0, SEEK_END); if (offset == -1) { lu_error_new(error, lu_error_write, _("couldn't write to `%s': %s"), filename, strerror(errno)); goto err_contents; } /* If the last byte in the file isn't a newline, add one, and silently * curse people who use text editors (which shall remain unnamed) which * allow saving of the file without a final line terminator. */ if ((st.st_size > 0) && (contents[st.st_size - 1] != '\n')) { if (write(fd, "\n", 1) != 1) { lu_error_new(error, lu_error_write, _("couldn't write to `%s': %s"), filename, strerror(errno)); goto err_contents; } } /* Attempt to write the entire line to the end. */ r = write(fd, line, strlen(line)); if ((size_t)r != strlen(line)) { /* Oh, come on! */ lu_error_new(error, lu_error_write, _("couldn't write to `%s': %s"), filename, strerror(errno)); /* Truncate off whatever we actually managed to write and * give up. */ (void)ftruncate(fd, offset); goto err_contents; } /* Hey, it succeeded. */ ret = TRUE; /* Fall through */ err_contents: g_free(contents); err_lock: lu_util_lock_free(lock); err_fd: close(fd); err_fscreate: lu_util_fscreate_restore(fscreate); err_line: g_free(line); err_filename: g_free(filename); return ret; } /* Make last-minute changes to the structures before adding them. */ static gboolean lu_files_user_add_prep(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return TRUE; } /* Add the user record to the passwd file. */ static gboolean lu_files_user_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_add(module, suffix_passwd, format_passwd, G_N_ELEMENTS(format_passwd), ent, error); } /* Make last-minute changes to the record before adding it to /etc/shadow. */ static gboolean lu_shadow_user_add_prep(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)error; /* Make sure the regular password says "shadow!" */ lu_ent_set_string(ent, LU_USERPASSWORD, "x"); return TRUE; } /* Add the user to the shadow file. */ static gboolean lu_shadow_user_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_add(module, suffix_shadow, format_shadow, G_N_ELEMENTS(format_shadow), ent, error); } /* Make last-minute changes before adding the group to the group file. */ static gboolean lu_files_group_add_prep(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return TRUE; } /* Add the group to the group file. */ static gboolean lu_files_group_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_add(module, suffix_group, format_group, G_N_ELEMENTS(format_group), ent, error); } /* Make last-minute changes before adding the shadowed group. */ static gboolean lu_shadow_group_add_prep(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)error; /* Make sure the regular password says "shadow!" */ lu_ent_set_string(ent, LU_GROUPPASSWORD, "x"); return TRUE; } /* Add a shadowed group. */ static gboolean lu_shadow_group_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_add(module, suffix_gshadow, format_gshadow, G_N_ELEMENTS(format_gshadow), ent, error); } /* Modify a particular record in the given file, field by field, using the * given format specifiers. */ static gboolean generic_mod(struct lu_module *module, const char *file_suffix, const struct format_specifier *formats, size_t format_count, struct lu_ent *ent, struct lu_error **error) { lu_security_context_t fscreate; char *filename, *new_line, *contents, *line, *rest; char *current_name, *fragment; int fd; gpointer lock; const char *name_attribute; gboolean ret = FALSE; struct stat st; size_t len; g_assert(module != NULL); g_assert(formats != NULL); g_assert(format_count > 0); g_assert(ent != NULL); g_assert((ent->type == lu_user) || (ent->type == lu_group)); /* Get the array of names for the entity object. */ if (ent->type == lu_user) name_attribute = LU_USERNAME; else if (ent->type == lu_group) name_attribute = LU_GROUPNAME; else g_assert_not_reached(); current_name = lu_ent_get_first_value_strdup_current(ent, name_attribute); if (current_name == NULL) { lu_error_new(error, lu_error_generic, _("entity object has no %s attribute"), name_attribute); return FALSE; } filename = module_filename(module, file_suffix); new_line = format_generic(ent, formats, format_count, error); if (new_line == NULL) goto err_filename; if (!lu_util_fscreate_save(&fscreate, error)) goto err_new_line; if (!lu_util_fscreate_from_file(filename, error)) goto err_fscreate; /* Create a backup file. */ if (lu_files_create_backup(filename, error) == FALSE) goto err_fscreate; /* Open the file to be modified. */ fd = open(filename, O_RDWR); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); goto err_fscreate; } /* Lock the file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) goto err_fd; if (fstat(fd, &st) == -1) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), filename, strerror(errno)); goto err_lock; } contents = g_malloc(st.st_size + 1 + strlen(new_line)); if (read(fd, contents, st.st_size) != st.st_size) { lu_error_new(error, lu_error_read, _("couldn't read from `%s': %s"), filename, strerror(errno)); goto err_contents; } contents[st.st_size] = '\0'; fragment = g_strconcat("\n", current_name, ":", (const gchar *)NULL); len = strlen(current_name); if (strncmp(contents, current_name, len) == 0 && contents[len] == ':') line = contents; else { line = strstr(contents, fragment); if (line != NULL) line++; } g_free(fragment); if ((strncmp(new_line, current_name, len) != 0 || new_line[len] != ':') && entry_name_conflicts(contents, new_line)) { lu_error_new(error, lu_error_generic, _("entry with conflicting name already present " "in file")); goto err_contents; } if (line == NULL) { lu_error_new(error, lu_error_search, NULL); goto err_contents; } rest = strchr(line, '\n'); if (rest != NULL) rest++; else rest = strchr(line, '\0'); memmove(line + strlen(new_line), rest, contents + st.st_size + 1 - rest); memcpy(line, new_line, strlen(new_line)); if (lseek(fd, line - contents, SEEK_SET) == -1) { lu_error_new(error, lu_error_write, NULL); goto err_contents; } len = strlen(line); if ((size_t)write(fd, line, len) != len) { lu_error_new(error, lu_error_write, NULL); goto err_contents; } if (ftruncate(fd, (line - contents) + len) != 0) { lu_error_new(error, lu_error_write, NULL); goto err_contents; } ret = TRUE; /* Fall through */ err_contents: g_free(contents); err_lock: lu_util_lock_free(lock); err_fd: close(fd); err_fscreate: lu_util_fscreate_restore(fscreate); err_new_line: g_free(new_line); err_filename: g_free(filename); g_free(current_name); return ret; } /* Modify an entry in the passwd file. */ static gboolean lu_files_user_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_mod(module, suffix_passwd, format_passwd, G_N_ELEMENTS(format_passwd), ent, error); } /* Modify an entry in the group file. */ static gboolean lu_files_group_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_mod(module, suffix_group, format_group, G_N_ELEMENTS(format_group), ent, error); } /* Modify an entry in the shadow file. */ static gboolean lu_shadow_user_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_mod(module, suffix_shadow, format_shadow, G_N_ELEMENTS(format_shadow), ent, error); } /* Modify an entry in the gshadow file. */ static gboolean lu_shadow_group_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_mod(module, suffix_gshadow, format_gshadow, G_N_ELEMENTS(format_gshadow), ent, error); } /* Delete an entity from the given file. */ static gboolean generic_del(struct lu_module *module, const char *file_suffix, struct lu_ent *ent, struct lu_error **error) { lu_security_context_t fscreate; char *name; char *contents, *filename; char *fragment2; struct stat st; size_t len; int fd; gboolean ret = FALSE; gboolean found; gpointer lock; /* Get the entity's current name. */ if (ent->type == lu_user) name = lu_ent_get_first_value_strdup_current(ent, LU_USERNAME); else if (ent->type == lu_group) name = lu_ent_get_first_value_strdup_current(ent, LU_GROUPNAME); else g_assert_not_reached(); g_assert(name != NULL); g_assert(module != NULL); g_assert(ent != NULL); filename = module_filename(module, file_suffix); if (!lu_util_fscreate_save(&fscreate, error)) goto err_filename; if (!lu_util_fscreate_from_file(filename, error)) goto err_fscreate; /* Create a backup of that file. */ if (lu_files_create_backup(filename, error) == FALSE) goto err_fscreate; /* Open the file to be modified. */ fd = open(filename, O_RDWR); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); goto err_fscreate; } /* Lock the file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) goto err_fd; /* Determine the file's size. */ if (fstat(fd, &st) == -1) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), filename, strerror(errno)); goto err_lock; } /* Allocate space to hold the file and read it all in. */ contents = g_malloc(st.st_size + 1); if (read(fd, contents, st.st_size) != st.st_size) { lu_error_new(error, lu_error_read, _("couldn't read from `%s': %s"), filename, strerror(errno)); goto err_contents; } contents[st.st_size] = '\0'; /* Generate a pattern for a beginning of a non-first line */ fragment2 = g_strconcat("\n", name, ":", (const gchar *)NULL); /* Remove all occurrences of this entry from the file. */ len = strlen(name); do { char *tmp; found = FALSE; /* If the data is on the first line of the file, we remove the * first line. */ if (strncmp(contents, name, len) == 0 && contents[len] == ':') { char *p; p = strchr(contents, '\n'); if (p != NULL) memmove(contents, p + 1, strlen(p + 1) + 1); else strcpy(contents, ""); found = TRUE; } else /* If the data occurs elsewhere, cover it up. */ if ((tmp = strstr(contents, fragment2)) != NULL) { char *p; p = strchr(tmp + 1, '\n'); if (p != NULL) memmove(tmp + 1, p + 1, strlen (p + 1) + 1); else strcpy(tmp + 1, ""); found = TRUE; } } while(found); g_free(fragment2); /* If the resulting memory chunk is the same size as the file, then * nothing's changed. */ len = strlen(contents); if ((off_t)len == st.st_size) { ret = TRUE; goto err_contents; } /* Otherwise we need to write the new data to the file. Jump back to * the beginning of the file. */ if (lseek(fd, 0, SEEK_SET) == -1) { lu_error_new(error, lu_error_write, _("couldn't write to `%s': %s"), filename, strerror(errno)); goto err_contents; } /* Write the new contents out. */ if ((size_t)write(fd, contents, len) != len) { lu_error_new(error, lu_error_write, _("couldn't write to `%s': %s"), filename, strerror(errno)); goto err_contents; } /* Truncate the file to the new (certainly shorter) length. */ if (ftruncate(fd, len) == -1) { lu_error_new(error, lu_error_generic, _("couldn't write to `%s': %s"), filename, strerror(errno)); goto err_contents; } ret = TRUE; /* Fall through */ err_contents: g_free(contents); err_lock: lu_util_lock_free(lock); err_fd: close(fd); err_fscreate: lu_util_fscreate_restore(fscreate); err_filename: g_free(filename); g_free(name); return ret; } /* Remove a user from the passwd file. */ static gboolean lu_files_user_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_del(module, suffix_passwd, ent, error); } /* Remove a group from the group file. */ static gboolean lu_files_group_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_del(module, suffix_group, ent, error); } /* Remove a user from the shadow file. */ static gboolean lu_shadow_user_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_del(module, suffix_shadow, ent, error); } /* Remove a group from the gshadow file. */ static gboolean lu_shadow_group_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_del(module, suffix_gshadow, ent, error); } /* Return a modified version of the cryptedPassword string, depending on op, or NULL on error. */ static char * lock_process(char *cryptedPassword, enum lock_op op, struct lu_ent *ent, struct lu_error **error) { char *ret = NULL; switch (op) { case LO_LOCK: ret = ent->cache->cache(ent->cache, cryptedPassword); if (ret[0] != '!') { cryptedPassword = g_strconcat("!!", ret, NULL); ret = ent->cache->cache(ent->cache, cryptedPassword); g_free(cryptedPassword); } break; case LO_UNLOCK: for (ret = cryptedPassword; ret[0] == '!'; ret++) ; ret = ent->cache->cache(ent->cache, ret); break; case LO_UNLOCK_NONEMPTY: for (ret = cryptedPassword; ret[0] == '!'; ret++) ; if (*ret == '\0') { lu_error_new(error, lu_error_unlock_empty, NULL); return NULL; } ret = ent->cache->cache(ent->cache, ret); break; default: g_assert_not_reached (); } return ret; } /* Lock or unlock an account in the given file, with its encrypted password * stored in the given field number. */ static gboolean generic_lock(struct lu_module *module, const char *file_suffix, int field, struct lu_ent *ent, enum lock_op op, struct lu_error **error) { lu_security_context_t fscreate; char *filename; char *value, *new_value, *name; int fd; gpointer lock; gboolean ret = FALSE; /* Get the name which keys the entries of interest in the file. */ g_assert((ent->type == lu_user) || (ent->type == lu_group)); if (ent->type == lu_user) name = lu_ent_get_first_value_strdup_current(ent, LU_USERNAME); if (ent->type == lu_group) name = lu_ent_get_first_value_strdup_current(ent, LU_GROUPNAME); g_assert(name != NULL); g_assert(module != NULL); g_assert(ent != NULL); filename = module_filename(module, file_suffix); if (!lu_util_fscreate_save(&fscreate, error)) goto err_filename; if (!lu_util_fscreate_from_file(filename, error)) goto err_fscreate; /* Create a backup of the file. */ if (lu_files_create_backup(filename, error) == FALSE) goto err_fscreate; /* Open the file. */ fd = open(filename, O_RDWR); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); goto err_fscreate; } /* Lock the file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) goto err_fd; /* Read the old value from the file. */ value = lu_util_field_read(fd, name, field, error); if (value == NULL) goto err_lock; /* Check that we actually care about this. If there's a non-empty, * not locked string in there, but it's too short to be a hash, then * we don't care, so we just nod our heads and smile. */ if (LU_CRYPT_INVALID(value)) { g_free(value); ret = TRUE; goto err_lock; } /* Generate a new value for the file. */ new_value = lock_process(value, op, ent, error); g_free(value); if (new_value == NULL) goto err_lock; /* Make the change. */ ret = lu_util_field_write(fd, name, field, new_value, error); /* Fall through */ err_lock: lu_util_lock_free(lock); err_fd: close(fd); err_fscreate: lu_util_fscreate_restore(fscreate); err_filename: g_free(filename); g_free(name); return ret; } /* Check if an account [password] is locked. */ static gboolean generic_is_locked(struct lu_module *module, const char *file_suffix, int field, struct lu_ent *ent, struct lu_error **error) { char *filename; char *value, *name; int fd; gpointer lock; gboolean ret = FALSE; /* Get the name of this account. */ g_assert((ent->type == lu_user) || (ent->type == lu_group)); if (ent->type == lu_user) name = lu_ent_get_first_value_strdup_current(ent, LU_USERNAME); if (ent->type == lu_group) name = lu_ent_get_first_value_strdup_current(ent, LU_GROUPNAME); g_assert(name != NULL); g_assert(module != NULL); g_assert(ent != NULL); filename = module_filename(module, file_suffix); /* Open the file. */ fd = open(filename, O_RDONLY); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); goto err_filename; } /* Lock the file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) goto err_fd; /* Read the value. */ value = lu_util_field_read(fd, name, field, error); if (value == NULL) goto err_lock; /* It all comes down to this. */ ret = value[0] == '!'; g_free(value); /* Fall through */ err_lock: lu_util_lock_free(lock); err_fd: close(fd); err_filename: g_free(filename); g_free(name); return ret; } /* Lock a user from the passwd file. */ static gboolean lu_files_user_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_passwd, 2, ent, LO_LOCK, error); } static gboolean lu_files_user_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_passwd, 2, ent, LO_UNLOCK, error); } static gboolean lu_files_user_unlock_nonempty(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_passwd, 2, ent, LO_UNLOCK_NONEMPTY, error); } /* Lock a group from the group file. */ static gboolean lu_files_group_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_group, 2, ent, LO_LOCK, error); } static gboolean lu_files_group_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_group, 2, ent, LO_UNLOCK, error); } static gboolean lu_files_group_unlock_nonempty(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_group, 2, ent, LO_UNLOCK_NONEMPTY, error); } /* Lock a user in the shadow file. */ static gboolean lu_shadow_user_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_shadow, 2, ent, LO_LOCK, error); } static gboolean lu_shadow_user_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_shadow, 2, ent, LO_UNLOCK, error); } static gboolean lu_shadow_user_unlock_nonempty(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_shadow, 2, ent, LO_UNLOCK_NONEMPTY, error); } /* Lock a group in the gshadow file. */ static gboolean lu_shadow_group_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_gshadow, 2, ent, LO_LOCK, error); } static gboolean lu_shadow_group_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_gshadow, 2, ent, LO_UNLOCK, error); } static gboolean lu_shadow_group_unlock_nonempty(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_lock(module, suffix_gshadow, 2, ent, LO_UNLOCK_NONEMPTY, error); } /* Check if the account is locked. */ static gboolean lu_files_user_is_locked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_is_locked(module, suffix_passwd, 2, ent, error); } static gboolean lu_files_group_is_locked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_is_locked(module, suffix_group, 2, ent, error); } static gboolean lu_shadow_user_is_locked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_is_locked(module, suffix_shadow, 2, ent, error); } static gboolean lu_shadow_group_is_locked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_is_locked(module, suffix_gshadow, 2, ent, error); } /* Was ent found by the shadow module? */ static gboolean ent_has_shadow (struct lu_ent *ent) { size_t i; for (i = 0; i < ent->modules->n_values; i++) { GValue *value; value = g_value_array_get_nth(ent->modules, i); g_assert(G_VALUE_HOLDS_STRING(value)); if (strcmp(g_value_get_string(value), LU_MODULE_NAME_SHADOW) == 0) return TRUE; } return FALSE; } /* Change a password, in a given file, in a given field, for a given account, * to a given value. Got that? */ static gboolean generic_setpass(struct lu_module *module, const char *file_suffix, int field, struct lu_ent *ent, const char *password, gboolean is_shadow, struct lu_error **error) { lu_security_context_t fscreate; char *filename, *value, *name; int fd; gpointer lock; gboolean ret = FALSE; /* Get the name of this account. */ g_assert((ent->type == lu_user) || (ent->type == lu_group)); if (ent->type == lu_user) name = lu_ent_get_first_value_strdup_current(ent, LU_USERNAME); else if (ent->type == lu_group) name = lu_ent_get_first_value_strdup_current(ent, LU_GROUPNAME); g_assert(name != NULL); g_assert(module != NULL); g_assert(ent != NULL); filename = module_filename(module, file_suffix); if (!lu_util_fscreate_save(&fscreate, error)) goto err_filename; if (!lu_util_fscreate_from_file(filename, error)) goto err_fscreate; /* Create a backup of the file. */ if (lu_files_create_backup(filename, error) == FALSE) goto err_filename; /* Open the file. */ fd = open(filename, O_RDWR); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); goto err_fscreate; } /* Lock the file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) goto err_fd; /* Read the current contents of the field. */ value = lu_util_field_read(fd, name, field, error); if (value == NULL) goto err_lock; /* pam_unix uses shadow passwords only if pw_passwd is "x" (or ##${username}). Make sure to preserve the shadow marker unmodified (most importantly, don't replace it by an encrypted password) -- but only if a shadow entry exists. */ if (!is_shadow && ent_has_shadow(ent) && lu_ent_get_current(ent, LU_SHADOWPASSWORD) != NULL && (strcmp(value, "x") == 0 || (strncmp(value, "##", 2) == 0 && strcmp(value + 2, name) == 0))) { ret = TRUE; goto err_value; } /* Otherwise, if there is a shadow password and the shadow marker is invalid, set it to the standard value. */ if (!is_shadow && ent_has_shadow(ent) && lu_ent_get_current(ent, LU_SHADOWPASSWORD) != NULL && LU_CRYPT_INVALID(value)) password = "x"; /* The crypt prefix indicates that the password is already hashed. If * we don't see it, hash the password. */ else if (g_ascii_strncasecmp(password, LU_CRYPTED, strlen(LU_CRYPTED)) == 0) { password = password + strlen(LU_CRYPTED); if (strchr(password, ':') != NULL) { lu_error_new(error, lu_error_invalid_attribute_value, _("`:' not allowed in encrypted " "password")); goto err_value; } } else { char *salt; salt = lu_util_default_salt_specifier(module->lu_context); password = lu_make_crypted(password, salt); g_free(salt); if (password == NULL) { lu_error_new(error, lu_error_generic, _("error encrypting password")); goto err_value; } } /* Now write our changes to the file. */ ret = lu_util_field_write(fd, name, field, password, error); /* Fall through */ err_value: g_free(value); err_lock: lu_util_lock_free(lock); err_fd: close(fd); err_fscreate: lu_util_fscreate_restore(fscreate); err_filename: g_free(filename); g_free(name); return ret; } /* Set a user's password in the passwd file. */ static gboolean lu_files_user_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { return generic_setpass(module, suffix_passwd, 2, ent, password, FALSE, error); } static gboolean lu_files_group_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { return generic_setpass(module, suffix_group, 2, ent, password, FALSE, error); } static gboolean lu_files_user_removepass(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_setpass(module, suffix_passwd, 2, ent, LU_CRYPTED, FALSE, error); } static gboolean lu_files_group_removepass(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_setpass(module, suffix_group, 2, ent, LU_CRYPTED, FALSE, error); } static gboolean lu_shadow_user_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { return generic_setpass(module, suffix_shadow, 2, ent, password, TRUE, error); } static gboolean lu_shadow_group_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { return generic_setpass(module, suffix_gshadow, 2, ent, password, TRUE, error); } static gboolean lu_shadow_user_removepass(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_setpass(module, suffix_shadow, 2, ent, LU_CRYPTED, TRUE, error); } static gboolean lu_shadow_group_removepass(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { return generic_setpass(module, suffix_gshadow, 2, ent, LU_CRYPTED, TRUE, error); } /* Get a list of all of the entries in a given file which patch a * particular pattern. */ static GValueArray * lu_files_enumerate(struct lu_module *module, const char *file_suffix, const char *pattern, struct lu_error **error) { int fd; gpointer lock; GValueArray *ret; GValue value; char *buf; char *filename; FILE *fp; g_assert(module != NULL); pattern = pattern ?: "*"; filename = module_filename(module, file_suffix); /* Open the file. */ fd = open(filename, O_RDONLY); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); g_free(filename); return NULL; } /* Lock the file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) { close(fd); g_free(filename); return NULL; } /* Wrap the file for stdio operations. */ fp = fdopen(fd, "r"); if (fp == NULL) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); lu_util_lock_free(lock); close(fd); g_free(filename); return NULL; } /* Create a new array to hold values. */ ret = g_value_array_new(0); memset(&value, 0, sizeof(value)); g_value_init(&value, G_TYPE_STRING); /* Read each line, */ while ((buf = line_read(fp)) != NULL) { char *p; if (strlen(buf) == 1) { g_free(buf); continue; } /* require that each non-empty line has meaningful data in it */ p = strchr(buf, ':'); if (p != NULL) { /* snip off the parts we don't care about, */ *p = '\0'; if (buf[0] != '+' && buf[0] != '-' && fnmatch(pattern, buf, 0) == 0) { /* add add it to the list we're returning. */ g_value_set_string(&value, buf); g_value_array_append(ret, &value); g_value_reset(&value); } } g_free(buf); } /* Clean up. */ g_value_unset(&value); lu_util_lock_free(lock); fclose(fp); g_free(filename); return ret; } /* Get a list of all users or groups. */ static GValueArray * lu_files_users_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { return lu_files_enumerate(module, suffix_passwd, pattern, error); } static GValueArray * lu_files_groups_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { return lu_files_enumerate(module, suffix_group, pattern, error); } /* Get a list of all of the users who are in a given group. */ static GValueArray * lu_files_users_enumerate_by_group(struct lu_module *module, const char *group, gid_t gid, struct lu_error **error) { int fd; gpointer lock; GValueArray *ret; GValue value; char *buf, grp[CHUNK_SIZE]; char *pwdfilename, *grpfilename, *p, *q; FILE *fp; g_assert(module != NULL); g_assert(group != NULL); /* Generate the names of the two files we'll be looking at. */ pwdfilename = module_filename(module, suffix_passwd); grpfilename = module_filename(module, suffix_group); /* Open the passwd file. */ fd = open(pwdfilename, O_RDONLY); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), pwdfilename, strerror(errno)); g_free(pwdfilename); g_free(grpfilename); return NULL; } /* Lock the passwd file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) { close(fd); g_free(pwdfilename); g_free(grpfilename); return NULL; } /* Wrap the descriptor in a stdio FILE. */ fp = fdopen(fd, "r"); if (fp == NULL) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), pwdfilename, strerror(errno)); lu_util_lock_free(lock); close(fd); g_free(pwdfilename); g_free(grpfilename); return NULL; } /* Create an array to store values we're going to return. */ ret = g_value_array_new(0); memset(&value, 0, sizeof(value)); g_value_init(&value, G_TYPE_STRING); snprintf(grp, sizeof(grp), "%jd", (intmax_t)gid); /* Iterate over each line. */ while ((buf = line_read(fp)) != NULL) { if (strlen(buf) == 1 || buf[0] == '-' || buf[0] == '+') { g_free(buf); continue; } /* Find the end of the first field. */ p = strchr(buf, ':'); q = NULL; /* If the field has an end, find the end of the second field. */ if (p != NULL) { *p = '\0'; p++; p = strchr(p, ':'); } /* If the second field has an end, find the end of the third. */ if (p != NULL) { *p = '\0'; p++; p = strchr(p, ':'); } /* If the third has an end, find the fourth. */ if (p != NULL) { *p = '\0'; p++; q = p; p = strchr(p, ':'); } /* If we haven't run out of fields by now, we can match. */ if (q != NULL) { /* Terminate the fourth field. */ if (p != NULL) { *p = '\0'; } /* If it matches the gid, add this user's name to the * list. */ if (strcmp(q, grp) == 0) { g_value_set_string(&value, buf); g_value_array_append(ret, &value); g_value_reset(&value); } } g_free(buf); } /* Close the file. */ g_value_unset(&value); lu_util_lock_free(lock); fclose(fp); /* Open the group file. */ fd = open(grpfilename, O_RDONLY); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), grpfilename, strerror(errno)); g_free(pwdfilename); g_free(grpfilename); g_value_array_free(ret); return NULL; } /* Lock the group file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) { close(fd); g_free(pwdfilename); g_free(grpfilename); g_value_array_free(ret); return NULL; } /* Wrap the group file in an stdio file. */ fp = fdopen(fd, "r"); if (fp == NULL) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), grpfilename, strerror(errno)); lu_util_lock_free(lock); close(fd); g_free(pwdfilename); g_free(grpfilename); g_value_array_free(ret); return NULL; } /* Iterate over all of these lines as well. */ while ((buf = line_read(fp)) != NULL) { if (strlen(buf) == 1 || buf[0] == '+' || buf[0] == '-') { g_free(buf); continue; } /* Terminate at the end of the first field, and find the end of * the second field. */ p = strchr(buf, ':'); if (p != NULL) { *p = '\0'; p++; p = strchr(p, ':'); } /* If the first field matches, continue. */ if (strcmp(buf, group) == 0) { /* Find the end of the third field. */ if (p != NULL) { *p = '\0'; p++; p = strchr(p, ':'); } /* Find the beginning of the fourth field. */ if (p != NULL) { *p = '\0'; p++; /* Iterate through all of the pieces of * the field. */ while ((q = strsep(&p, ",\n")) != NULL) { /* Add this name. */ if (strlen(q) > 0) { g_value_init(&value, G_TYPE_STRING); g_value_set_string(&value, q); g_value_array_append(ret, &value); g_value_unset(&value); } } } g_free(buf); break; } g_free(buf); } /* Clean up. */ lu_util_lock_free(lock); fclose(fp); g_free(pwdfilename); g_free(grpfilename); return ret; } /* Get a list of groups to which the user belongs. */ static GValueArray * lu_files_groups_enumerate_by_user(struct lu_module *module, const char *user, uid_t uid, struct lu_error **error) { int fd; gpointer lock; GValueArray *ret; GValue value; char *buf; char *key, *pwdfilename, *grpfilename, *p, *q; FILE *fp; (void)uid; g_assert(module != NULL); g_assert(user != NULL); /* Generate the names of files we'll be looking at. */ pwdfilename = module_filename(module, suffix_passwd); grpfilename = module_filename(module, suffix_group); /* Open the first file. */ fd = open(pwdfilename, O_RDONLY); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), pwdfilename, strerror(errno)); goto err_pwdfilename; } /* Lock it. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) { close(fd); goto err_pwdfilename; } /* Open it so that we can use stdio. */ fp = fdopen(fd, "r"); if (fp == NULL) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), pwdfilename, strerror(errno)); lu_util_lock_free(lock); close(fd); goto err_pwdfilename; } /* Initialize the list of values we'll return. */ ret = g_value_array_new(0); memset(&value, 0, sizeof(value)); g_value_init(&value, G_TYPE_STRING); /* Iterate through all of the lines in the file. */ key = NULL; while ((buf = line_read(fp)) != NULL) { if (strlen(buf) == 1 || buf[0] == '+' || buf[0] == '-') { g_free(buf); continue; } /* Find the end of the first field. */ p = strchr(buf, ':'); /* Find the end of the second field. */ if (p != NULL) { *p = '\0'; p++; p = strchr(p, ':'); } /* Find the end of the third field. */ if (p != NULL) { *p = '\0'; p++; p = strchr(p, ':'); } /* Find the the fourth field. */ if (p != NULL) { *p = '\0'; p++; q = strchr(p, ':'); /* If it matches, save the gid. */ if (strcmp(buf, user) == 0) { if (q) { *q = '\0'; } key = g_strdup(p); g_free(buf); break; } } g_free(buf); } lu_util_lock_free(lock); fclose(fp); /* Open the groups file. */ fd = open(grpfilename, O_RDONLY); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), grpfilename, strerror(errno)); goto err_key; } /* Lock it. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) { close(fd); goto err_key; } /* Open it so that we can use stdio. */ fp = fdopen(fd, "r"); if (fp == NULL) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), grpfilename, strerror(errno)); lu_util_lock_free(lock); close(fd); goto err_key; } /* Iterate through all of the lines in the file. */ while ((buf = line_read(fp)) != NULL) { if (strlen(buf) == 1 || buf[0] == '+' || buf[0] == '-') { g_free(buf); continue; } /* Find the end of the first field. */ p = strchr(buf, ':'); /* Find the end of the second field. */ if (p != NULL) { *p = '\0'; p++; p = strchr(p, ':'); } /* Find the end of the third field. */ if (p != NULL) { *p = '\0'; p++; q = strchr(p, ':'); if (q && key) { /* Terminate the third field. */ *q = '\0'; if (strcmp(p, key) == 0) { /* Add the name of the group because its * gid is the user's primary. */ g_value_set_string(&value, buf); g_value_array_append(ret, &value); g_value_reset(&value); } } p = q; } /* Find the beginning of the third field. */ if (p != NULL) { p++; /* Break out each piece of the fourth field. */ while ((q = strsep(&p, ",\n")) != NULL) { if (strlen(q) > 0) { if (strcmp(q, user) == 0) { g_value_set_string(&value, buf); g_value_array_append(ret, &value); g_value_reset(&value); } } } } g_free(buf); } g_free(key); g_value_unset(&value); lu_util_lock_free(lock); fclose(fp); g_free(pwdfilename); g_free(grpfilename); return ret; err_key: g_free(key); g_value_array_free(ret); err_pwdfilename: g_free(pwdfilename); g_free(grpfilename); return NULL; } /* Enumerate all of the accounts listed in the given file, using the * given parser to parse matching accounts into an array of entity pointers. */ static GPtrArray * lu_files_enumerate_full(struct lu_module *module, const char *file_suffix, parse_fn parser, const char *pattern, struct lu_error **error) { int fd; gpointer lock; GPtrArray *ret = NULL; char *buf; char *key, *filename; FILE *fp; g_assert(module != NULL); pattern = pattern ?: "*"; filename = module_filename(module, file_suffix); /* Open the file. */ fd = open(filename, O_RDONLY); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); goto err_filename; } /* Lock the file. */ if ((lock = lu_util_lock_obtain(fd, error)) == NULL) { close(fd); goto err_filename; } /* Wrap the file up in stdio. */ fp = fdopen(fd, "r"); if (fp == NULL) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), filename, strerror(errno)); lu_util_lock_free(lock); close(fd); goto err_filename; } /* Allocate an array to hold results. */ ret = g_ptr_array_new(); while ((buf = line_read(fp)) != NULL) { struct lu_ent *ent; if (strlen(buf) == 1 || buf[0] == '+' || buf[0] == '-') { g_free(buf); continue; } ent = lu_ent_new(); /* Snip the line off at the right place. */ key = strchr(buf, '\n'); if (key != NULL) { *key = '\0'; } if (strchr(buf, ':')) { key = g_strndup(buf, strchr(buf, ':') - buf); } else { key = g_strdup(buf); } /* If the account name matches the pattern, parse it and add * it to the list. */ if (fnmatch(pattern, key, 0) == 0 && parser(buf, ent) != FALSE) g_ptr_array_add(ret, ent); else lu_ent_free(ent); g_free(buf); g_free(key); } lu_util_lock_free(lock); fclose(fp); err_filename: g_free(filename); return ret; } static GPtrArray * lu_files_users_enumerate_full(struct lu_module *module, const char *user, struct lu_error **error) { return lu_files_enumerate_full(module, suffix_passwd, lu_files_parse_user_entry, user, error); } static GPtrArray * lu_files_groups_enumerate_full(struct lu_module *module, const char *group, struct lu_error **error) { return lu_files_enumerate_full(module, suffix_group, lu_files_parse_group_entry, group, error); } static GValueArray * lu_shadow_users_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { (void)module; (void)pattern; (void)error; return NULL; } static GValueArray * lu_shadow_groups_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { (void)module; (void)pattern; (void)error; return NULL; } static GValueArray * lu_shadow_users_enumerate_by_group(struct lu_module *module, const char *group, gid_t gid, struct lu_error **error) { (void)module; (void)group; (void)gid; (void)error; return NULL; } static GValueArray * lu_shadow_groups_enumerate_by_user(struct lu_module *module, const char *user, uid_t uid, struct lu_error **error) { (void)module; (void)user; (void)uid; (void)error; return NULL; } static GPtrArray * lu_shadow_users_enumerate_full(struct lu_module *module, const char *pattern, struct lu_error **error) { return lu_files_enumerate_full(module, suffix_shadow, lu_shadow_parse_user_entry, pattern, error); } static GPtrArray * lu_shadow_groups_enumerate_full(struct lu_module *module, const char *pattern, struct lu_error **error) { return lu_files_enumerate_full(module, suffix_gshadow, lu_shadow_parse_group_entry, pattern, error); } static gboolean lu_files_shadow_valid_module_combination(struct lu_module *module, GValueArray *names, struct lu_error **error) { size_t i; g_assert(module != NULL); g_assert(names != NULL); LU_ERROR_CHECK(error); for (i = 0; i < names->n_values; i++) { const char *name; name = g_value_get_string(g_value_array_get_nth(names, i)); if (strcmp(name, LU_MODULE_NAME_LDAP) == 0) { /* LDAP uses an incompatible LU_*PASSWORD format: the LU_CRYPTED prefix, or a similar indicator of an LDAP-defined hashing method, is included. */ lu_error_new(error, lu_error_invalid_module_combination, _("the `%s' and `%s' modules can not be " "combined"), module->name, name); return FALSE; } } return TRUE; } /* Check if we use/need elevated privileges to manipulate our files. */ static gboolean lu_files_uses_elevated_privileges(struct lu_module *module) { char *path; gboolean ret = FALSE; /* If we can't access the passwd file as a normal user, then the * answer is "yes". */ path = module_filename(module, suffix_passwd); if (access(path, R_OK | W_OK) != 0) { ret = TRUE; } g_free(path); /* If we can't access the group file as a normal user, then the * answer is "yes". */ path = module_filename(module, suffix_group); if (access(path, R_OK | W_OK) != 0) { ret = TRUE; } g_free(path); return ret; } /* Check if we use/need elevated privileges to manipulate our files. */ static gboolean lu_shadow_uses_elevated_privileges(struct lu_module *module) { char *path; gboolean ret = FALSE; /* If we can't access the shadow file as a normal user, then the * answer is "yes". */ path = module_filename(module, suffix_shadow); if (access(path, R_OK | W_OK) != 0) { ret = TRUE; } g_free(path); /* If we can't access the gshadow file as a normal user, then the * answer is "yes". */ path = module_filename(module, suffix_gshadow); if (access(path, R_OK | W_OK) != 0) { ret = TRUE; } g_free(path); return ret; } static gboolean close_module(struct lu_module *module) { g_return_val_if_fail(module != NULL, FALSE); module->scache->free(module->scache); memset(module, 0, sizeof(struct lu_module)); g_free(module); return TRUE; } struct lu_module * libuser_files_init(struct lu_context *context, struct lu_error **error) { struct lu_module *ret; g_return_val_if_fail(context != NULL, FALSE); /* Handle authenticating to the data source. */ if (geteuid() != 0) { const char *val; /* Needed for the test suite, handy for debugging. */ val = lu_cfg_read_single(context, "files/nonroot", NULL); if (val == NULL || strcmp (val, "yes") != 0) { lu_error_new(error, lu_error_privilege, _("not executing with superuser " "privileges")); return NULL; } } /* Allocate the method structure. */ ret = g_malloc0(sizeof(struct lu_module)); ret->version = LU_MODULE_VERSION; ret->scache = lu_string_cache_new(TRUE); ret->name = ret->scache->cache(ret->scache, LU_MODULE_NAME_FILES); /* Set the method pointers. */ ret->valid_module_combination = lu_files_shadow_valid_module_combination; ret->uses_elevated_privileges = lu_files_uses_elevated_privileges; ret->user_lookup_name = lu_files_user_lookup_name; ret->user_lookup_id = lu_files_user_lookup_id; ret->user_default = lu_common_user_default; ret->user_add_prep = lu_files_user_add_prep; ret->user_add = lu_files_user_add; ret->user_mod = lu_files_user_mod; ret->user_del = lu_files_user_del; ret->user_lock = lu_files_user_lock; ret->user_unlock = lu_files_user_unlock; ret->user_unlock_nonempty = lu_files_user_unlock_nonempty; ret->user_is_locked = lu_files_user_is_locked; ret->user_setpass = lu_files_user_setpass; ret->user_removepass = lu_files_user_removepass; ret->users_enumerate = lu_files_users_enumerate; ret->users_enumerate_by_group = lu_files_users_enumerate_by_group; ret->users_enumerate_full = lu_files_users_enumerate_full; ret->group_lookup_name = lu_files_group_lookup_name; ret->group_lookup_id = lu_files_group_lookup_id; ret->group_default = lu_common_group_default; ret->group_add_prep = lu_files_group_add_prep; ret->group_add = lu_files_group_add; ret->group_mod = lu_files_group_mod; ret->group_del = lu_files_group_del; ret->group_lock = lu_files_group_lock; ret->group_unlock = lu_files_group_unlock; ret->group_unlock_nonempty = lu_files_group_unlock_nonempty; ret->group_is_locked = lu_files_group_is_locked; ret->group_setpass = lu_files_group_setpass; ret->group_removepass = lu_files_group_removepass; ret->groups_enumerate = lu_files_groups_enumerate; ret->groups_enumerate_by_user = lu_files_groups_enumerate_by_user; ret->groups_enumerate_full = lu_files_groups_enumerate_full; ret->close = close_module; /* Done. */ return ret; } struct lu_module * libuser_shadow_init(struct lu_context *context, struct lu_error **error) { struct lu_module *ret; struct stat st; char *shadow_file; const char *dir; g_return_val_if_fail(context != NULL, NULL); /* Handle authenticating to the data source. */ if (geteuid() != 0) { const char *val; /* Needed for the test suite, handy for debugging. */ val = lu_cfg_read_single(context, "shadow/nonroot", NULL); if (val == NULL || strcmp (val, "yes") != 0) { lu_error_new(error, lu_error_privilege, _("not executing with superuser " "privileges")); return NULL; } } /* Get the name of the shadow file. */ dir = lu_cfg_read_single(context, "shadow/directory", "/etc"); shadow_file = g_strconcat(dir, suffix_shadow, NULL); /* Make sure we're actually using shadow passwords on this system. */ if ((stat(shadow_file, &st) == -1) && (errno == ENOENT)) { lu_error_new(error, lu_warning_config_disabled, _("no shadow file present -- disabling")); g_free(shadow_file); return NULL; } g_free(shadow_file); /* Allocate the method structure. */ ret = g_malloc0(sizeof(struct lu_module)); ret->version = LU_MODULE_VERSION; ret->scache = lu_string_cache_new(TRUE); ret->name = ret->scache->cache(ret->scache, LU_MODULE_NAME_SHADOW); /* Set the method pointers. */ ret->valid_module_combination = lu_files_shadow_valid_module_combination; ret->uses_elevated_privileges = lu_shadow_uses_elevated_privileges; ret->user_lookup_name = lu_shadow_user_lookup_name; ret->user_lookup_id = lu_shadow_user_lookup_id; ret->user_default = lu_common_suser_default; ret->user_add_prep = lu_shadow_user_add_prep; ret->user_add = lu_shadow_user_add; ret->user_mod = lu_shadow_user_mod; ret->user_del = lu_shadow_user_del; ret->user_lock = lu_shadow_user_lock; ret->user_unlock = lu_shadow_user_unlock; ret->user_unlock_nonempty = lu_shadow_user_unlock_nonempty; ret->user_is_locked = lu_shadow_user_is_locked; ret->user_setpass = lu_shadow_user_setpass; ret->user_removepass = lu_shadow_user_removepass; ret->users_enumerate = lu_shadow_users_enumerate; ret->users_enumerate_by_group = lu_shadow_users_enumerate_by_group; ret->users_enumerate_full = lu_shadow_users_enumerate_full; ret->group_lookup_name = lu_shadow_group_lookup_name; ret->group_lookup_id = lu_shadow_group_lookup_id; ret->group_default = lu_common_sgroup_default; ret->group_add_prep = lu_shadow_group_add_prep; ret->group_add = lu_shadow_group_add; ret->group_mod = lu_shadow_group_mod; ret->group_del = lu_shadow_group_del; ret->group_lock = lu_shadow_group_lock; ret->group_unlock = lu_shadow_group_unlock; ret->group_unlock_nonempty = lu_shadow_group_unlock_nonempty; ret->group_is_locked = lu_shadow_group_is_locked; ret->group_setpass = lu_shadow_group_setpass; ret->group_removepass = lu_shadow_group_removepass; ret->groups_enumerate = lu_shadow_groups_enumerate; ret->groups_enumerate_by_user = lu_shadow_groups_enumerate_by_user; ret->groups_enumerate_full = lu_shadow_groups_enumerate_full; ret->close = close_module; /* Done. */ return ret; } libuser-0.60~dfsg/modules/ldap.c0000644000175000017500000021616712226342567016654 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004, 2005, 2008 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../lib/user_private.h" #undef DEBUG #define LOCKCHAR '!' #define LOCKSTRING "!" #define USERBRANCH "ou=People" #define GROUPBRANCH "ou=Group" #define OBJECTCLASS "objectClass" #define ACCOUNT "account" #define POSIXACCOUNT "posixAccount" #define POSIXGROUP "posixGroup" #define SHADOWACCOUNT "shadowAccount" #define INETORGPERSON "inetOrgPerson" #define DISTINGUISHED_NAME "dn" LU_MODULE_INIT(libuser_ldap_init) enum lock_op { LO_LOCK, LO_UNLOCK, LO_UNLOCK_NONEMPTY }; enum interact_indices { LU_LDAP_SERVER, LU_LDAP_BASEDN, LU_LDAP_BINDDN, LU_LDAP_PASSWORD, LU_LDAP_AUTHUSER, LU_LDAP_AUTHZUSER, LU_LDAP_MAX, }; static const struct { const char *lu_attribute; const char *ldap_attribute; const char *objectclass; enum lu_entity_type type; } ldap_attribute_map[] = { {LU_USERNAME, "uid", POSIXACCOUNT, lu_user}, {LU_USERPASSWORD, "userPassword", POSIXACCOUNT, lu_user}, {LU_UIDNUMBER, "uidNumber", POSIXACCOUNT, lu_user}, {LU_GIDNUMBER, "gidNumber", POSIXACCOUNT, lu_user}, {LU_GECOS, "gecos", POSIXACCOUNT, lu_user}, {LU_HOMEDIRECTORY, "homeDirectory", POSIXACCOUNT, lu_user}, {LU_LOGINSHELL, "loginShell", POSIXACCOUNT, lu_user}, {LU_COMMONNAME, "cn", POSIXACCOUNT, lu_user}, {LU_GROUPNAME, "cn", POSIXGROUP, lu_group}, {LU_GROUPPASSWORD, "userPassword", POSIXGROUP, lu_group}, {LU_GIDNUMBER, "gidNumber", POSIXGROUP, lu_group}, {LU_MEMBERNAME, "memberUid", POSIXGROUP, lu_group}, {LU_SHADOWLASTCHANGE, "shadowLastChange", SHADOWACCOUNT, lu_user}, {LU_SHADOWMIN, "shadowMin", SHADOWACCOUNT, lu_user}, {LU_SHADOWMAX, "shadowMax", SHADOWACCOUNT, lu_user}, {LU_SHADOWWARNING, "shadowWarning", SHADOWACCOUNT, lu_user}, {LU_SHADOWINACTIVE, "shadowInactive", SHADOWACCOUNT, lu_user}, {LU_SHADOWEXPIRE, "shadowExpire", SHADOWACCOUNT, lu_user}, {LU_SHADOWFLAG, "shadowFlag", SHADOWACCOUNT, lu_user}, {LU_GIVENNAME, "givenName", INETORGPERSON, lu_user}, {LU_SN, "sn", INETORGPERSON, lu_user}, {LU_ROOMNUMBER, "roomNumber", INETORGPERSON, lu_user}, {LU_TELEPHONENUMBER, "telephoneNumber", INETORGPERSON, lu_user}, {LU_HOMEPHONE, "homePhone", INETORGPERSON, lu_user}, }; static const char *const lu_ldap_user_attributes[] = { LU_USERNAME, LU_USERPASSWORD, LU_UIDNUMBER, LU_GIDNUMBER, LU_GECOS, LU_HOMEDIRECTORY, LU_LOGINSHELL, /* Not LU_SHADOWPASSWORD: We can't allow modification of * LU_USERPASSWORD and LU_SHADOWPASSWORD at the same time; LDAP simply * doesn't implement LU_SHADOWPASSWORD. */ LU_SHADOWLASTCHANGE, LU_SHADOWMIN, LU_SHADOWMAX, LU_SHADOWWARNING, LU_SHADOWINACTIVE, LU_SHADOWEXPIRE, LU_SHADOWFLAG, LU_COMMONNAME, LU_GIVENNAME, LU_SN, LU_ROOMNUMBER, LU_TELEPHONENUMBER, LU_HOMEPHONE, NULL }; static const char *const lu_ldap_group_attributes[] = { LU_GROUPNAME, LU_GROUPPASSWORD, LU_GIDNUMBER, LU_MEMBERNAME, LU_ADMINISTRATORNAME, NULL }; struct lu_ldap_context { struct lu_context *global_context; /* The library context. */ struct lu_module *module; /* The module's structure. */ struct lu_prompt prompts[LU_LDAP_MAX]; /* Questions and answers. */ gboolean bind_simple, bind_sasl; /* What kind of bind to use. */ char *sasl_mechanism; /* What sasl mechanism to use. */ const char *user_branch, *group_branch; /* Cached config values */ char **mapped_user_attributes, **mapped_group_attributes; LDAP *ldap; /* The connection. */ }; static void close_server(LDAP *ldap) { ldap_unbind_ext(ldap, NULL, NULL); } /* Get the name of the user running the calling application. */ static char * getuser(void) { char buf[LINE_MAX * 4]; struct passwd pwd, *err; int i; i = getpwuid_r(getuid(), &pwd, buf, sizeof(buf), &err); return ((i == 0) && (err == &pwd)) ? g_strdup(pwd.pw_name) : NULL; } static gboolean nonempty(const char *string) { return (string != NULL) && (strlen(string) > 0); } /* Connect to the server. */ static LDAP * connect_server(struct lu_ldap_context *context, struct lu_error **error) { LDAP *ldap = NULL; int version, ret, start_tls; g_assert(context != NULL); LU_ERROR_CHECK(error); /* Create the LDAP context. */ ret = ldap_initialize(&ldap, context->prompts[LU_LDAP_SERVER].value); if (ret == LDAP_SUCCESS) start_tls = FALSE; else { if (ldap_create(&ldap) != LDAP_SUCCESS) ldap = NULL; else if (ldap_set_option(ldap, LDAP_OPT_HOST_NAME, context->prompts[LU_LDAP_SERVER] .value) != LDAP_SUCCESS) { close_server(ldap); ldap = NULL; } start_tls = TRUE; } if (ldap == NULL) { lu_error_new(error, lu_error_init, _("error initializing ldap library")); return NULL; } /* Switch to LDAPv3, which gives us some more features we need. */ version = LDAP_VERSION3; ret = ldap_set_option(ldap, LDAP_OPT_PROTOCOL_VERSION, &version); if (ret != LDAP_OPT_SUCCESS) { lu_error_new(error, lu_error_init, _("could not set LDAP protocol to version %d"), version); close_server(ldap); return NULL; } /* Skip STARTTLS for ldapi: Even if the server is set up for TLS in general, NSS doesn't support TLS over AF_UNIX; the STARTTLS operation would be accepted, but ldap_start_tls_s() would fail, keeping the connection broken to make authentication impossible. TLS on AF_UNIX does not make much sense anyway. */ if (strncmp(context->prompts[LU_LDAP_SERVER].value, "ldapi://", 8) != 0) { /* Try to start TLS. */ ret = ldap_start_tls_s(ldap, NULL, NULL); /* Note that TLS is not required for ldap:// URLs (unlike simple server names). */ if (ret != LDAP_SUCCESS && start_tls) { lu_error_new(error, lu_error_init, _("could not negotiate TLS with LDAP " "server")); close_server(ldap); return NULL; } } return ldap; } /* Authentication callback. */ static int interact(LDAP *ld, unsigned flags, void *defs, void *xres) { sasl_interact_t *res; struct lu_ldap_context *ctx = (struct lu_ldap_context*) defs; int i, retval = LDAP_SUCCESS; (void)ld; (void)flags; res = xres; for(i = 0; res && res[i].id != SASL_CB_LIST_END; i++) { res[i].result = NULL; switch(res[i].id) { case SASL_CB_USER: res[i].result = ctx->prompts[LU_LDAP_AUTHUSER].value; if (res[i].result == NULL) res[i].result = ""; #ifdef DEBUG g_print("Sending SASL user `%s'.\n", (const char *)res[i].result); #endif break; case SASL_CB_AUTHNAME: res[i].result = ctx->prompts[LU_LDAP_AUTHZUSER].value; #ifdef DEBUG g_print("Sending SASL auth user `%s'.\n", (const char *)res[i].result); #endif break; case SASL_CB_GETREALM: /* Always tell sasl to find it on its own. */ res[i].result = ""; break; default: #ifdef DEBUG g_print("Unhandled SASL Intreractive option `%lu'.\n", res[i].id); #endif retval = LDAP_OTHER; } if (res[i].result != NULL) res[i].len = strlen(res[i].result); else res[i].len = 0; } return retval; } /* Authenticate to the server. */ static LDAP * bind_server(struct lu_ldap_context *context, struct lu_error **error) { LDAP *ldap; int ret, first_failure; const char *generated_binddn, *first_binddn; char *binddn, *tmp; char *user; char *password; struct lu_string_cache *scache = NULL; g_assert(context != NULL); LU_ERROR_CHECK(error); /* Create the connection. */ ldap = connect_server(context, error); if (ldap == NULL) { return NULL; } /* Generate the DN we might want to bind to. */ scache = context->global_context->scache; user = getuser(); if (user) { tmp = scache->cache(scache, user); free(user); user = tmp; } if (nonempty(context->prompts[LU_LDAP_AUTHUSER].value)) { user = context->prompts[LU_LDAP_AUTHUSER].value; } tmp = g_strdup_printf("uid=%s,%s,%s", user, context->user_branch, context->prompts[LU_LDAP_BASEDN].value); generated_binddn = scache->cache(scache, tmp); g_free(tmp); /* Try to bind to the server using SASL. */ binddn = context->prompts[LU_LDAP_BINDDN].value; if (nonempty(context->prompts[LU_LDAP_AUTHUSER].value)) { ldap_set_option(ldap, LDAP_OPT_X_SASL_AUTHCID, context->prompts[LU_LDAP_AUTHUSER].value); } if (nonempty(context->prompts[LU_LDAP_AUTHZUSER].value)) { ldap_set_option(ldap, LDAP_OPT_X_SASL_AUTHZID, context->prompts[LU_LDAP_AUTHZUSER].value); } if (context->prompts[LU_LDAP_PASSWORD].value != NULL) { password = context->prompts[LU_LDAP_PASSWORD].value; } else { password = NULL; } ret = LDAP_SUCCESS + 1; /* Not LDAP_SUCCESS */ first_failure = LDAP_SUCCESS; /* No failure known yet */ first_binddn = NULL; if ((binddn != NULL) && (strlen(binddn) == 0)) { binddn = NULL; } if (context->bind_sasl) { /* Try to bind using SASL, and if that fails... */ if (binddn != NULL) { #ifdef DEBUG g_print("Attempting SASL bind to `%s'.\n", binddn); #endif ret = ldap_sasl_interactive_bind_s(ldap, binddn, context->sasl_mechanism, NULL, NULL, LDAP_SASL_AUTOMATIC, interact, context); if (ret != LDAP_SUCCESS) { first_failure = ret; first_binddn = binddn; } } if (ret != LDAP_SUCCESS) { #ifdef DEBUG g_print("Attempting SASL bind to `%s'.\n", generated_binddn); #endif ret = ldap_sasl_interactive_bind_s(ldap, generated_binddn, context->sasl_mechanism, NULL, NULL, LDAP_SASL_AUTOMATIC, interact, context); if (ret != LDAP_SUCCESS && first_failure == LDAP_SUCCESS) { first_failure = ret; first_binddn = generated_binddn; } } } if (ret != LDAP_SUCCESS && context->bind_simple) { /* try to bind using a password, and if that fails... */ if ((password != NULL) && (strlen(password) > 0)) { BerValue cred; cred.bv_val = password; cred.bv_len = strlen(password); if (binddn != NULL) { #ifdef DEBUG g_print("Attempting simple bind to `%s'.\n", binddn); #endif ret = ldap_sasl_bind_s(ldap, binddn, LDAP_SASL_SIMPLE, &cred, NULL, NULL, NULL); if (ret != LDAP_SUCCESS && first_failure == LDAP_SUCCESS) { first_failure = ret; first_binddn = binddn; } } if (ret != LDAP_SUCCESS) { #ifdef DEBUG g_print("Attempting simple bind to `%s'.\n", generated_binddn); #endif ret = ldap_sasl_bind_s(ldap, generated_binddn, LDAP_SASL_SIMPLE, &cred, NULL, NULL, NULL); if (ret != LDAP_SUCCESS && first_failure == LDAP_SUCCESS) { first_failure = ret; first_binddn = generated_binddn; } } } } if (ret != LDAP_SUCCESS) { /* give up. */ if (first_failure == LDAP_SUCCESS) lu_error_new(error, lu_error_init, _("could not bind to LDAP server")); else lu_error_new(error, lu_error_init, _("could not bind to LDAP server, first " "attempt as `%s': %s"), first_binddn, ldap_err2string(first_failure)); close_server(ldap); return NULL; } return ldap; } /* Map an attribute name from an internal name to an LDAP atribute name. */ static const char * map_to_ldap(struct lu_string_cache *cache, const char *libuser_attribute) { size_t i; /* Luckily the only duplicate is LU_GIDNUMBER, which maps to the same value in both cases. */ for (i = 0; i < G_N_ELEMENTS(ldap_attribute_map); i++) { if (g_ascii_strcasecmp(ldap_attribute_map[i].lu_attribute, libuser_attribute) == 0) { return ldap_attribute_map[i].ldap_attribute; } } return cache->cache(cache, libuser_attribute); } /* Generate the distinguished name which corresponds to the container where * the lu_ent structure's entry would be found. */ static const char * lu_ldap_base(struct lu_module *module, const char *branch) { struct lu_ldap_context *context; char *tmp, *ret; g_assert(module != NULL); context = module->module_context; /* Generate the branch DN. */ if (strlen(branch) != 0) tmp = g_strconcat(branch, ",", context->prompts[LU_LDAP_BASEDN].value, (const gchar *)NULL); else tmp = g_strdup(context->prompts[LU_LDAP_BASEDN].value); ret = module->scache->cache(module->scache, tmp); g_free(tmp); return ret; } /* Discover the distinguished name which corresponds to an account. */ static const char * lu_ldap_ent_to_dn(struct lu_module *module, const char *namingAttr, const char *name, const char *branch) { static char *noattrs[] = { NULL }; const char *base, *mapped_naming_attr; char *tmp, *ret = NULL, *filter; struct lu_ldap_context *ctx; LDAPMessage *messages = NULL; g_assert(module != NULL); g_assert(namingAttr != NULL); g_assert(strlen(namingAttr) > 0); g_assert(name != NULL); g_assert(strlen(name) > 0); /* Search for the right object using the entity's current name. */ base = lu_ldap_base(module, branch); ctx = module->module_context; mapped_naming_attr = map_to_ldap(module->scache, namingAttr); filter = g_strdup_printf("(%s=%s)", mapped_naming_attr, name); if (ldap_search_ext_s(ctx->ldap, base, LDAP_SCOPE_SUBTREE, filter, noattrs, FALSE, NULL, NULL, NULL, LDAP_NO_LIMIT, &messages) == LDAP_SUCCESS) { LDAPMessage *entry; entry = ldap_first_entry(ctx->ldap, messages); if (entry != NULL) { tmp = ldap_get_dn(ctx->ldap, entry); ret = module->scache->cache(module->scache, tmp); if (tmp) ldap_memfree(tmp); } ldap_msgfree(messages); } g_free(filter); if (ret == NULL) { /* Guess at the DN using the branch and the base. */ tmp = g_strdup_printf("%s=%s,%s", mapped_naming_attr, name, base); ret = module->scache->cache(module->scache, tmp); g_free(tmp); } return ret; } /* This is the lookup workhorse. */ static gboolean lu_ldap_lookup(struct lu_module *module, const char *namingAttr, const char *name, struct lu_ent *ent, GPtrArray *ent_array, const char *branch, const char *filter, const char *const *attributes, enum lu_entity_type type, struct lu_error **error) { LDAPMessage *messages = NULL, *entry = NULL; char *filt, **mapped_attributes; const char *dn = NULL; const char *base; gboolean ret = FALSE; struct lu_ldap_context *ctx; g_assert(module != NULL); g_assert(namingAttr != NULL); g_assert(strlen(namingAttr) > 0); name = name ?: "*"; g_assert((ent != NULL) || (ent_array != NULL)); if (ent != NULL) { g_assert(ent->magic == LU_ENT_MAGIC); } g_assert(attributes != NULL); g_assert(attributes[0] != NULL); LU_ERROR_CHECK(error); ctx = module->module_context; if (ent != NULL) { /* Try to use the dn the object already knows about. */ dn = lu_ent_get_first_string(ent, DISTINGUISHED_NAME); if (dn == NULL) /* Map the user or group name to an LDAP object name. */ dn = lu_ldap_ent_to_dn(module, namingAttr, name, branch); } /* Get the entry in the directory under which we'll search for this * entity. */ base = lu_ldap_base(module, branch); /* Generate an LDAP filter, optionally including a filter supplied * by the caller. */ if (filter && (strlen(filter) > 0)) { filt = g_strdup_printf("(&%s(%s=%s))", filter, namingAttr, name); } else { filt = g_strdup_printf("(%s=%s)", namingAttr, name); } #ifdef DEBUG g_print("Looking up `%s' with filter `%s'.\n", dn, filt); #endif if (attributes == lu_ldap_user_attributes) mapped_attributes = ctx->mapped_user_attributes; else if (attributes == lu_ldap_group_attributes) mapped_attributes = ctx->mapped_group_attributes; else { g_assert_not_reached(); mapped_attributes = NULL; } if (ent != NULL) { /* Perform the search and read the first (hopefully only) * entry. */ if (ldap_search_ext_s(ctx->ldap, dn, LDAP_SCOPE_BASE, filt, mapped_attributes, FALSE, NULL, NULL, NULL, LDAP_NO_LIMIT, &messages) == LDAP_SUCCESS) { entry = ldap_first_entry(ctx->ldap, messages); } } /* If there isn't an entry with this exact name, search for something * which matches. */ if (entry == NULL) { #ifdef DEBUG g_print("Looking under `%s' with filter `%s'.\n", base, filt); #endif if (messages != NULL) { ldap_msgfree(messages); messages = NULL; } if (ldap_search_ext_s(ctx->ldap, base, LDAP_SCOPE_SUBTREE, filt, mapped_attributes, FALSE, NULL, NULL, NULL, LDAP_NO_LIMIT, &messages) == LDAP_SUCCESS) { entry = ldap_first_entry(ctx->ldap, messages); } } /* We don't need the generated filter any more, so free it. */ g_free(filt); /* If we got an entry, read its contents into an entity structure. */ while (entry != NULL) { GValue value; size_t i; char *p; /* Mark that the search succeeded. */ ret = TRUE; /* If we need to add the data to the array, then create a new * data item to hold the data. */ if (ent_array != NULL) ent = lu_ent_new_typed(type); /* Set the distinguished name. */ p = ldap_get_dn(ctx->ldap, entry); lu_ent_set_string_current(ent, DISTINGUISHED_NAME, p); ldap_memfree(p); /* Read each of the attributes we asked for. */ memset(&value, 0, sizeof(value)); for (i = 0; attributes[i]; i++) { BerValue **values; const char *attr; /* Get the values which correspond to this attribute. */ attr = attributes[i]; values = ldap_get_values_len(ctx->ldap, entry, mapped_attributes[i]); /* If we got answers, add them. */ if (values) { size_t j; lu_ent_clear_current(ent, attr); for (j = 0; values[j]; j++) { char *val; gboolean ok; struct lu_error *error; val = g_strndup(values[j]->bv_val, values[j]->bv_len); #ifdef DEBUG g_print("Got `%s' = `%s'.\n", attr, val); #endif error = NULL; ok = lu_value_init_set_attr_from_string (&value, attr, val, &error); if (ok == FALSE) { g_assert(error != NULL); g_warning(lu_strerror(error)); lu_error_free(&error); } else { lu_ent_add_current(ent, attr, &value); g_value_unset(&value); } g_free(val); } ldap_value_free_len(values); } } /* Stash the data in the array if we need to. */ if (ent_array != NULL) { g_ptr_array_add(ent_array, ent); ent = NULL; /* Go to the next entry. */ entry = ldap_next_entry(ctx->ldap, entry); } else { /* Stop here. */ entry = NULL; } } /* Free all of the responses. */ if (messages) { ldap_msgfree(messages); } return ret; } /* Look up a user by name. */ static gboolean lu_ldap_user_lookup_name(struct lu_module *module, const char *name, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_lookup(module, "uid", name, ent, NULL, ctx->user_branch, "("OBJECTCLASS"="POSIXACCOUNT")", lu_ldap_user_attributes, lu_user, error); } /* Look up a user by ID. */ static gboolean lu_ldap_user_lookup_id(struct lu_module *module, uid_t uid, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; char uid_string[sizeof (uid) * CHAR_BIT + 1]; LU_ERROR_CHECK(error); ctx = module->module_context; sprintf(uid_string, "%jd", (intmax_t)uid); return lu_ldap_lookup(module, "uidNumber", uid_string, ent, NULL, ctx->user_branch, "("OBJECTCLASS"="POSIXACCOUNT")", lu_ldap_user_attributes, lu_user, error); } /* Look up a group by name. */ static gboolean lu_ldap_group_lookup_name(struct lu_module *module, const char *name, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_lookup(module, "cn", name, ent, NULL, ctx->group_branch, "("OBJECTCLASS"="POSIXGROUP")", lu_ldap_group_attributes, lu_group, error); } /* Look up a group by ID. */ static gboolean lu_ldap_group_lookup_id(struct lu_module *module, gid_t gid, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; char gid_string[sizeof (gid) * CHAR_BIT + 1]; LU_ERROR_CHECK(error); ctx = module->module_context; sprintf(gid_string, "%jd", (intmax_t)gid); return lu_ldap_lookup(module, "gidNumber", gid_string, ent, NULL, ctx->group_branch, "("OBJECTCLASS"="POSIXGROUP")", lu_ldap_group_attributes, lu_group, error); } /* Compare the contents of two GValueArrays, and return TRUE if they contain * the same set of values, though not necessarily in the same order. */ static gboolean arrays_equal(GValueArray *a, GValueArray *b) { GValue *aval, *bval; size_t i, j; for (i = 0; i < a->n_values; i++) { aval = g_value_array_get_nth(a, i); for (j = 0; j < b->n_values; j++) { bval = g_value_array_get_nth(b, j); if (G_VALUE_TYPE(aval) == G_VALUE_TYPE(bval) && lu_values_equal(aval, bval)) break; } if (j >= b->n_values) { return FALSE; } } for (j = 0; j < b->n_values; j++) { bval = g_value_array_get_nth(b, j); for (i = 0; i < a->n_values; i++) { aval = g_value_array_get_nth(a, i); if (G_VALUE_TYPE(aval) == G_VALUE_TYPE(bval) && lu_values_equal(aval, bval)) break; } if (i >= a->n_values) { return FALSE; } } return TRUE; } /* Check whether class is among old_values or new_values */ static int objectclass_present(const char *dn, const char *class, BerValue *const *old_values, size_t old_count, BerValue *const *new_values, size_t new_count) { size_t i, len; (void)dn; len = strlen(class); for (i = 0; i < old_count; i++) { const BerValue *val; val = old_values[i]; if (val->bv_len == len && memcmp(class, val->bv_val, len) == 0) { #ifdef DEBUG g_print("Entity `%s' is already a `%.*s'.\n", dn, (int)val->bv_len, val->bv_val); #endif return 1; } } for (i = 0; i < new_count; i++) { const BerValue *val; val = new_values[i]; if (val->bv_len == len && memcmp(class, val->bv_val, len) == 0) { #ifdef DEBUG g_print("Entity `%s' was already determined to be a " "`%.*s'.\n", dn, (int)val->bv_len, val->bv_val); #endif return 1; } } return 0; } /* Create a list of new object classes needed for representing all attributes, * assuming old_values (may be NULL). * * Returns NULL if no new object classes are needed. */ static BerValue ** lu_ldap_needed_objectclasses(const char *dn, struct lu_ent *ent, BerValue **old_values) { BerValue **new_values; size_t old_count, new_count; GList *attributes, *a; if (old_values) old_count = ldap_count_values_len(old_values); else old_count = 0; new_values = g_malloc_n(G_N_ELEMENTS(ldap_attribute_map) + 1 + 1, sizeof(*new_values)); new_count = 0; /* Iterate over all of the attributes the object possesses. */ attributes = lu_ent_get_attributes(ent); for (a = attributes; a != NULL; a = a->next) { size_t i; const char *attr; BerValue *bv; attr = a->data; #ifdef DEBUG g_print("Entity `%s' has attribute `%s'.\n", dn, attr); #endif /* Get the name of the next object class the object needs * to be a member of. */ for (i = 0; i < G_N_ELEMENTS(ldap_attribute_map); i++) { if (ldap_attribute_map[i].type == ent->type && strcasecmp(ldap_attribute_map[i].lu_attribute, attr) == 0) { #ifdef DEBUG g_print("Entity `%s' needs to be a `%s'.\n", dn, ldap_attribute_map[i].objectclass); #endif break; } } /* If the attribute doesn't map to a class, skip it. */ if (i >= G_N_ELEMENTS(ldap_attribute_map)) continue; /* Check if the object class the object needs to be in is * already one of which it is a part or is already being * added. */ if (objectclass_present(dn, ldap_attribute_map[i].objectclass, old_values, old_count, new_values, new_count)) continue; /* Add it to the class. */ bv = g_malloc(sizeof (*bv)); bv->bv_val = (char *)ldap_attribute_map[i].objectclass; bv->bv_len = strlen(bv->bv_val); new_values[new_count] = bv; #ifdef DEBUG g_print("Adding entity `%s' to class `%s'.\n", dn, ldap_attribute_map[i].objectclass); #endif new_count++; } g_list_free(attributes); /* Ugly, but implied by the fact that the basic account schemas are not * structural. We can't use INETORGPERSON unless LU_SN is present, * which would already force usage of INETORGPERSON; so if * INETORGPERSON is not used, we add ACCOUNT. */ if (ent->type == lu_user && !objectclass_present(dn, INETORGPERSON, old_values, old_count, new_values, new_count) && !objectclass_present(dn, ACCOUNT, old_values, old_count, new_values, new_count)) { BerValue *bv; bv = g_malloc(sizeof (*bv)); bv->bv_val = ACCOUNT; bv->bv_len = strlen(ACCOUNT); new_values[new_count++] = bv; } if (new_count != 0) new_values[new_count] = NULL; else { g_free(new_values); new_values = NULL; } return new_values; } /* Free the (non-NULL) result of ldap_needed_objectclasses */ static void free_needed_objectclasses(BerValue **values) { size_t i; for (i = 0; values[i] != NULL; i++) g_free(values[i]); g_free(values); } /* Build a list of LDAPMod structures for adding the entity object. */ static LDAPMod ** get_ent_adds(const char *dn, struct lu_ent *ent) { LDAPMod **mods; GList *attrs; g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); mods = NULL; /* If there are no attributes, then this is EASY. */ attrs = lu_ent_get_attributes(ent); if (attrs) { BerValue **classes; size_t mod_count, i; LDAPMod *mod; GValueArray *vals; GValue *value; const GList *a; mods = g_malloc0_n(g_list_length(attrs) + 2 + 1, sizeof(*mods)); mod_count = 0; for (a = attrs; a != NULL; a = a->next) { const char *attribute; attribute = a->data; if (strcasecmp(attribute, DISTINGUISHED_NAME) == 0) continue; /* We don't have shadow passwords. Period. */ if (strcasecmp(attribute, LU_SHADOWPASSWORD) == 0) continue; vals = lu_ent_get(ent, attribute); if (vals == NULL) continue; attribute = map_to_ldap(ent->cache, attribute); mod = g_malloc0(sizeof(*mod)); mod->mod_op = LDAP_MOD_ADD; mod->mod_type = (char *)attribute; mod->mod_values = g_malloc0_n(vals->n_values + 1, sizeof(*mod->mod_values)); for (i = 0; i < vals->n_values; i++) { value = g_value_array_get_nth(vals, i); mod->mod_values[i] = lu_value_strdup(value); } mods[mod_count++] = mod; } /* We don't need the list of attributes any more. */ g_list_free(attrs); classes = lu_ldap_needed_objectclasses(dn, ent, NULL); if (classes != NULL) { mod = g_malloc0(sizeof(*mod)); mod->mod_op = LDAP_MOD_ADD; mod->mod_type = OBJECTCLASS; mod->mod_values = g_malloc0_n(ldap_count_values_len(classes) + 1, sizeof(*mod->mod_values)); for (i = 0; classes[i] != NULL; i++) mod->mod_values[i] = g_strdup(classes[i]->bv_val); free_needed_objectclasses(classes); mods[mod_count++] = mod; } /* Ugly hack: * * Make sure there is 'cn', posixAccount requires it. */ if (ent->type == lu_user && lu_ent_get(ent, LU_COMMONNAME) == NULL) { char *cn; cn = lu_ent_get_first_value_strdup(ent, LU_GECOS); if (cn != NULL) { char *p; p = strchr(cn, ','); if (p != NULL) *p = 0; /* Note that gecos may be empty, but commonName (as a DirectoryString) is not allowed to be empty. */ } if (cn == NULL || *cn == 0) { g_free(cn); cn = lu_ent_get_first_value_strdup(ent, LU_USERNAME); /* Guaranteed by lu_ldap_set() */ g_assert (cn != NULL); } mod = g_malloc0(sizeof(*mod)); mod->mod_op = LDAP_MOD_ADD; mod->mod_type = (char *)"cn"; mod->mod_values = g_malloc0(2 * sizeof (*mod->mod_values)); mod->mod_values[0] = cn; mods[mod_count++] = mod; } } return mods; } /* Build a list of LDAPMod structures based on the differences between the * pending and current values in the entity object. */ static LDAPMod ** get_ent_mods(struct lu_ent *ent, const char *namingAttr) { LDAPMod **mods = NULL; GList *attrs; g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); g_assert(namingAttr != NULL); g_assert(namingAttr[0] != 0); /* If there are no attributes, then this is EASY. */ attrs = lu_ent_get_attributes(ent); if (attrs) { GValueArray *empty; size_t mod_count; LDAPMod *mod; const GList *a; empty = g_value_array_new(0); /* Allocate an array big enough to hold two LDAPMod structures * for each attribute, in case all of them need changing. */ mods = g_malloc0_n(2 * g_list_length(attrs) + 1, sizeof(*mods)); mod_count = 0; for (a = attrs; a != NULL; a = a->next) { GValueArray *current, *pending, *additions, *deletions; GValue *value, *pvalue, *cvalue; char *attribute; size_t j, k; /* Get the name of the attribute, and its current and * pending values. */ attribute = a->data; if (strcasecmp(attribute, DISTINGUISHED_NAME) == 0 || strcasecmp(attribute, namingAttr) == 0) continue; current = lu_ent_get_current(ent, attribute) ?: empty; pending = lu_ent_get(ent, attribute) ?: empty; additions = g_value_array_new(0); deletions = g_value_array_new(0); attribute = (char *)map_to_ldap(ent->cache, attribute); /* Create a pair of modification request structures, * using the LDAP name for the attribute, using * elements from the first array which aren't in the * second for the remove list, and elements which are * in the second but not the first for the add list. */ for (j = 0; j < current->n_values; j++) { cvalue = g_value_array_get_nth(current, j); /* Search for this value in the other array. */ for (k = 0; k < pending->n_values; k++) { pvalue = g_value_array_get_nth(pending, k); if (G_VALUE_TYPE(cvalue) == G_VALUE_TYPE(pvalue) && lu_values_equal(cvalue, pvalue)) break; } /* If not found, it's a mod. */ if (k >= pending->n_values) /* Delete this value. */ g_value_array_append(deletions, cvalue); } /* If we have deletions, create an LDAPMod structure * containing them. */ if (deletions->n_values != 0) { mod = g_malloc0(sizeof(*mod)); mod->mod_op = LDAP_MOD_DELETE; mod->mod_type = attribute; mod->mod_values = g_malloc0_n(deletions->n_values + 1, sizeof(*mod->mod_values)); for (j = 0; j < deletions->n_values; j++) { value = g_value_array_get_nth(deletions, j); mod->mod_values[j] = lu_value_strdup(value); } mods[mod_count++] = mod; } /* Now extract additions. */ for (j = 0; j < pending->n_values; j++) { pvalue = g_value_array_get_nth(pending, j); /* Search for this value in the other array. */ for (k = 0; k < current->n_values; k++) { cvalue = g_value_array_get_nth(current, k); if (G_VALUE_TYPE(cvalue) == G_VALUE_TYPE(pvalue) && lu_values_equal(cvalue, pvalue)) break; } /* If not found, it's a mod. */ if (k >= current->n_values) /* Add this value. */ g_value_array_append(additions, pvalue); } /* If we have additions, create an LDAPMod structure * containing them. */ if (additions->n_values != 0) { mod = g_malloc0(sizeof(*mod)); mod->mod_op = LDAP_MOD_ADD; mod->mod_type = attribute; mod->mod_values = g_malloc0_n(additions->n_values + 1, sizeof(*mod->mod_values)); for (j = 0; j < additions->n_values; j++) { value = g_value_array_get_nth(additions, j); mod->mod_values[j] = lu_value_strdup(value); } mods[mod_count++] = mod; } g_value_array_free(additions); g_value_array_free(deletions); } g_value_array_free(empty); /* We don't need the list of attributes any more. */ g_list_free(attrs); } return mods; } /* Free a set of modification structures generated by get_ent_mods(). */ static void free_ent_mods(LDAPMod ** mods) { size_t i; g_assert(mods != NULL); for (i = 0; mods && mods[i]; i++) { if (mods[i]->mod_values) { size_t j; for (j = 0; mods[i]->mod_values[j] != NULL; j++) { g_free(mods[i]->mod_values[j]); } g_free(mods[i]->mod_values); } g_free(mods[i]); } g_free(mods); } #ifdef DEBUG /* Dump out the modifications structure. For debugging only. */ static void dump_mods(LDAPMod ** mods) { size_t i; if (mods == NULL) { g_print("NULL modifications"); return; } for (i = 0; mods[i]; i++) { g_print("%s (%d)\n", mods[i]->mod_type, mods[i]->mod_op); if (mods[i]->mod_values) { size_t j; for (j = 0; mods[i]->mod_values[j]; j++) { g_print(" = `%s'\n", mods[i]->mod_values[j]); } } } } #endif /* DEBUG */ /* Add an entity's LDAP object to the proper object classes to allow the * user to possess the attributes she needs to. */ static void lu_ldap_fudge_objectclasses(struct lu_ldap_context *ctx, const char *dn, struct lu_ent *ent) { static char *attrs[] = { OBJECTCLASS, NULL, }; BerValue **old_values, **new_values; LDAPMessage *res = NULL; LDAPMessage *entry; /* Pull up this object's entry. */ if (ldap_search_ext_s(ctx->ldap, dn, LDAP_SCOPE_BASE, NULL, attrs, FALSE, NULL, NULL, NULL, LDAP_NO_LIMIT, &res) != LDAP_SUCCESS) { return; } entry = ldap_first_entry(ctx->ldap, res); if (entry == NULL) { ldap_msgfree(res); return; } /* Get the list of object classes the object is in now. */ old_values = ldap_get_values_len(ctx->ldap, entry, OBJECTCLASS); new_values = lu_ldap_needed_objectclasses(dn, ent, old_values); if (new_values != NULL) { int err; LDAPMod mod; LDAPMod *mods[] = { &mod, NULL }; #ifdef DEBUG g_print("Adding user `%s' to new classes.\n", dn); #endif /* Set up the modify request. */ memset(&mod, 0, sizeof(mod)); mod.mod_op = LDAP_MOD_ADD | LDAP_MOD_BVALUES; mod.mod_type = OBJECTCLASS; mod.mod_bvalues = new_values; /* Give it the old try. */ #ifdef DEBUG dump_mods(mods); #endif err = ldap_modify_ext_s(ctx->ldap, dn, mods, NULL, NULL); (void)err; #ifdef DEBUG g_message("Fudged: `%s'.\n", ldap_err2string(err)); #endif free_needed_objectclasses(new_values); } ldap_value_free_len(old_values); ldap_msgfree(res); } /* Apply the changes to a given entity structure, or add a new entitty. */ static gboolean lu_ldap_set(struct lu_module *module, enum lu_entity_type type, int add, struct lu_ent *ent, const char *branch, struct lu_error **error) { LDAPMod **mods; GValueArray *name, *old_name; GValue *value; char *name_string; const char *dn, *namingAttr; int err; gboolean ret; struct lu_ldap_context *ctx; g_assert(module != NULL); g_assert((type == lu_user) || (type == lu_group)); g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); LU_ERROR_CHECK(error); ctx = module->module_context; /* Get the user/group's pending name, which may be different from the * current name. If so, we want to change it seperately, because it * requires a renaming of the object in the directory. */ if (type == lu_user) namingAttr = LU_USERNAME; else namingAttr = LU_GROUPNAME; name = lu_ent_get(ent, namingAttr); if (name == NULL) { lu_error_new(error, lu_error_generic, _("user object had no %s attribute"), namingAttr); return FALSE; } /* Get the object's old (current) name. */ old_name = lu_ent_get_current(ent, namingAttr); if (old_name == NULL) { lu_error_new(error, lu_error_generic, _("user object was created with no `%s'"), namingAttr); return FALSE; } /* Get the object's current object name. */ value = g_value_array_get_nth(add ? name : old_name, 0); name_string = lu_value_strdup(value); dn = lu_ldap_ent_to_dn(module, namingAttr, name_string, branch); g_free(name_string); if (add) { mods = get_ent_adds(dn, ent); #ifdef DEBUG dump_mods(mods); g_message("Adding `%s'.\n", dn); #endif err = ldap_add_ext_s(ctx->ldap, dn, mods, NULL, NULL); if (err != LDAP_SUCCESS) { lu_error_new(error, lu_error_write, _("error creating a LDAP directory " "entry: %s"), ldap_err2string(err)); ret = FALSE; goto err_mods; } } else { mods = get_ent_mods(ent, namingAttr); #ifdef DEBUG dump_mods(mods); g_message("Modifying `%s'.\n", dn); #endif /* Attempt the modify operation. The Fedora Directory server rejects modify operations with no modifications. */ if (mods != NULL && mods[0] != NULL) { err = ldap_modify_ext_s(ctx->ldap, dn, mods, NULL, NULL); if (err == LDAP_OBJECT_CLASS_VIOLATION) { /* AAAARGH! The application decided it wanted * to add some new attributes! Damage * control.... */ lu_ldap_fudge_objectclasses(ctx, dn, ent); err = ldap_modify_ext_s(ctx->ldap, dn, mods, NULL, NULL); } if (err != LDAP_SUCCESS) { lu_error_new(error, lu_error_write, _("error modifying LDAP " "directory entry: %s"), ldap_err2string(err)); ret = FALSE; goto err_mods; } } /* If the name has changed, process a rename (modrdn). */ if (arrays_equal(name, old_name) == FALSE) { char *tmp1, *tmp2; /* Format the name to rename it to. */ value = g_value_array_get_nth(name, 0); tmp1 = lu_value_strdup(value); tmp2 = g_strconcat(map_to_ldap(module->scache, namingAttr), "=", tmp1, NULL); g_free (tmp1); /* Attempt the rename. */ err = ldap_rename_s(ctx->ldap, dn, tmp2, NULL, TRUE, NULL, NULL); g_free(tmp2); if (err != LDAP_SUCCESS) { lu_error_new(error, lu_error_write, _("error renaming LDAP directory " "entry: %s"), ldap_err2string(err)); ret = FALSE; goto err_mods; } } } ret = TRUE; err_mods: free_ent_mods(mods); return ret; } /* Remove an entry from the directory. */ static gboolean lu_ldap_del(struct lu_module *module, enum lu_entity_type type, struct lu_ent *ent, const char *branch, struct lu_error **error) { char *name; const char *dn, *namingAttr; int err; gboolean ret = FALSE; struct lu_ldap_context *ctx; g_assert(module != NULL); g_assert((type == lu_user) || (type == lu_group)); g_assert(ent != NULL); g_assert(ent->magic == LU_ENT_MAGIC); LU_ERROR_CHECK(error); ctx = module->module_context; /* Get the user or group's name. */ if (type == lu_user) { namingAttr = LU_USERNAME; } else { namingAttr = LU_GROUPNAME; } name = lu_ent_get_first_value_strdup(ent, namingAttr); if (name == NULL) { lu_error_new(error, lu_error_generic, _("object had no %s attribute"), namingAttr); return FALSE; } /* Convert the name to a distinguished name. */ dn = lu_ldap_ent_to_dn(module, namingAttr, name, branch); g_free(name); /* Process the removal. */ #ifdef DEBUG g_message("Removing `%s'.\n", dn); #endif err = ldap_delete_ext_s(ctx->ldap, dn, NULL, NULL); if (err == LDAP_SUCCESS) { ret = TRUE; } else { lu_error_new(error, lu_error_write, _("error removing LDAP directory entry: %s"), ldap_err2string(err)); return FALSE; } return ret; } /* Return TRUE if pw starts with a valid scheme specification */ static gboolean userPassword_has_scheme(const char *pw) { #define ALPHA "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" static const char alpha[2*26] = ALPHA; static const char keystring_chars[] = ALPHA "0123456789-;"; #undef ALPHA /* { keystring }, keystring is defined in RFC2252. */ if (*pw != '{' || memchr(alpha, pw[1], sizeof(alpha)) == NULL) return FALSE; pw += 2; pw += strspn(pw, keystring_chars); return *pw == '}'; } /* Lock an account of some kind. */ static gboolean lu_ldap_handle_lock(struct lu_module *module, struct lu_ent *ent, const char *namingAttr, enum lock_op op, const char *branch, struct lu_error **error) { const char *dn; gboolean ret = FALSE; LDAPMod mod[2], *mods[3]; char *result, *name, *oldpassword, *values[2][2]; const char *tmp, *attribute; struct lu_ldap_context *ctx; int err; g_assert(module != NULL); g_assert(ent != NULL); g_assert(namingAttr != NULL); g_assert(strlen(namingAttr) > 0); LU_ERROR_CHECK(error); ctx = module->module_context; /* Get the entry's name. */ name = lu_ent_get_first_value_strdup(ent, namingAttr); if (name == NULL) { lu_error_new(error, lu_error_generic, _("object has no %s attribute"), namingAttr); return FALSE; } /* Convert the name to a distinguished name. */ dn = lu_ldap_ent_to_dn(module, namingAttr, name, branch); g_free(name); attribute = ent->type == lu_user ? LU_USERPASSWORD : LU_GROUPPASSWORD; /* Get the values for the entry's password. Note that this handles only one userPassword value! */ oldpassword = lu_ent_get_first_value_strdup_current(ent, attribute); if (oldpassword == NULL) { lu_error_new(error, lu_error_generic, _("object has no %s attribute"), LU_USERPASSWORD); return FALSE; } /* We only know how to lock crypted passwords, so crypt it if it * isn't already. */ if (!g_str_has_prefix(oldpassword, LU_CRYPTED)) { char *salt; if (userPassword_has_scheme(oldpassword)) { lu_error_new(error, lu_error_generic, _("unsupported password encryption " "scheme")); g_free(oldpassword); return FALSE; } salt = lu_util_default_salt_specifier(module->lu_context); tmp = lu_make_crypted(oldpassword, salt); g_free(salt); if (tmp == NULL) { lu_error_new(error, lu_error_generic, _("error encrypting password")); g_free(oldpassword); return FALSE; } } else tmp = ent->cache->cache(ent->cache, oldpassword + strlen(LU_CRYPTED)); result = ent->cache->cache(ent->cache, tmp); /* Generate a new string with the modification applied. */ switch (op) { case LO_LOCK: if (result[0] != LOCKCHAR) result = g_strdup_printf("%s%c%s", LU_CRYPTED, LOCKCHAR, result); else result = g_strconcat(LU_CRYPTED, result, (const gchar *)NULL); break; case LO_UNLOCK_NONEMPTY: if (result[0] == LOCKCHAR && result[1] == '\0') { lu_error_new(error, lu_error_unlock_empty, NULL); g_free(oldpassword); return FALSE; } /* Fall through */ case LO_UNLOCK: if (result[0] == LOCKCHAR) result = g_strconcat(LU_CRYPTED, result + 1, (const gchar *)NULL); else result = g_strconcat(LU_CRYPTED, result, (const gchar *)NULL); break; default: g_assert_not_reached(); } /* Set up the LDAP modify operation. */ mod[0].mod_op = LDAP_MOD_DELETE; mod[0].mod_type = (char *)map_to_ldap(ent->cache, attribute); values[0][0] = ent->cache->cache(ent->cache, oldpassword); values[0][1] = NULL; mod[0].mod_values = values[0]; mod[1].mod_op = LDAP_MOD_ADD; mod[1].mod_type = mod[0].mod_type; values[1][0] = ent->cache->cache(ent->cache, result); values[1][1] = NULL; mod[1].mod_values = values[1]; g_free(result); /* Set up the array to pass to the modification routines. */ mods[0] = &mod[0]; mods[1] = &mod[1]; mods[2] = NULL; err = ldap_modify_ext_s(ctx->ldap, dn, mods, NULL, NULL); if (err == LDAP_SUCCESS) { ret = TRUE; } else { lu_error_new(error, lu_error_write, _("error modifying LDAP directory entry: %s"), ldap_err2string(err)); ret = FALSE; } g_free(oldpassword); return ret; } /* Check if an account is locked. */ static gboolean lu_ldap_is_locked(struct lu_module *module, struct lu_ent *ent, const char *namingAttr, const char *branch, struct lu_error **error) { static const char mapped_password[] = "userPassword"; const char *dn; char *name; struct lu_ldap_context *ctx = module->module_context; char *attributes[] = { NULL, NULL }; BerValue **values; LDAPMessage *entry = NULL, *messages = NULL; int i; gboolean locked; /* Get the name of the user or group. */ name = lu_ent_get_first_value_strdup(ent, namingAttr); if (name == NULL) { lu_error_new(error, lu_error_generic, _("object has no %s attribute"), namingAttr); return FALSE; } /* Convert the name to a distinguished name. */ dn = lu_ldap_ent_to_dn(module, namingAttr, name, branch); g_free(name); #ifdef DEBUG g_print("Looking up `%s'.\n", dn); #endif /* Read the entry data. */ attributes[0] = (char *)mapped_password; if (ldap_search_ext_s(ctx->ldap, dn, LDAP_SCOPE_BASE, ent->type == lu_user ? "("OBJECTCLASS"="POSIXACCOUNT")" : "("OBJECTCLASS"="POSIXGROUP")", attributes, FALSE, NULL, NULL, NULL, LDAP_NO_LIMIT, &messages) == LDAP_SUCCESS) { entry = ldap_first_entry(ctx->ldap, messages); } if (entry == NULL) { lu_error_new(error, lu_error_generic, _("no such object in LDAP directory")); return FALSE; } /* Read the values for the attribute we want to change. */ values = ldap_get_values_len(ctx->ldap, entry, mapped_password); if (values == NULL) { ldap_msgfree(messages); #ifdef DEBUG g_print("No `%s' attribute found for entry.", mapped_password); #endif lu_error_new(error, lu_error_generic, _("no `%s' attribute found"), mapped_password); return FALSE; } /* Check any of the possibly-multiple passwords. */ locked = FALSE; for (i = 0; values[i] != NULL; i++) { const BerValue *val; size_t prefix_len; val = values[i]; prefix_len = strlen(LU_CRYPTED); #ifdef DEBUG g_print("Got `%s' = `%.*s'.\n", mapped_password, (int)val->bv_len, val->bv_val); #endif if (val->bv_len >= prefix_len && memcmp(val->bv_val, LU_CRYPTED, prefix_len) == 0) { locked = (val->bv_len > prefix_len && val->bv_val[prefix_len] == LOCKCHAR); break; } } /* Clean up and return. */ ldap_value_free_len(values); if (messages != NULL) { ldap_msgfree(messages); } return locked; } /* Set the password for an account. */ static gboolean lu_ldap_setpass(struct lu_module *module, const char *namingAttr, struct lu_ent *ent, const char *branch, const char *password, struct lu_error **error) { static const char mapped_password[] = "userPassword"; const char *dn; char *name; struct lu_ldap_context *ctx = module->module_context; char *attributes[] = { NULL, NULL }; char *addvalues[] = { NULL, NULL }, *rmvalues[] = { NULL, NULL }; BerValue **values; char *previous; int i; size_t j; LDAPMessage *messages = NULL; LDAPMod addmod, rmmod; LDAPMod *mods[3]; char filter[LINE_MAX]; /* Get the user or group's name. */ #ifdef DEBUG g_print("Setting password to `%s'.\n", password); #endif name = lu_ent_get_first_value_strdup(ent, namingAttr); if (name == NULL) { lu_error_new(error, lu_error_generic, _("object has no %s attribute"), namingAttr); return FALSE; } /* Convert the name to a distinguished name. */ dn = lu_ldap_ent_to_dn(module, namingAttr, name, branch); #ifdef DEBUG g_print("Setting password for `%s'.\n", dn); #endif snprintf(filter, sizeof(filter), "(%s=%s)", map_to_ldap(module->scache, namingAttr), name); g_free(name); previous = NULL; values = NULL; attributes[0] = (char *)mapped_password; i = ldap_search_ext_s(ctx->ldap, dn, LDAP_SCOPE_BASE, filter, attributes, FALSE, NULL, NULL, NULL, LDAP_NO_LIMIT, &messages); if (i == LDAP_SUCCESS) { LDAPMessage *entry; entry = ldap_first_entry(ctx->ldap, messages); if (entry != NULL) { values = ldap_get_values_len(ctx->ldap, entry, mapped_password); if (values) { for (j = 0; values[j] != NULL; j++) { char *val; val = g_strndup(values[j]->bv_val, values[j]->bv_len); #ifdef DEBUG g_print("Got `%s' = `%s'.\n", mapped_password, val); #endif if (g_str_has_prefix(val, LU_CRYPTED)) { #ifdef DEBUG g_print ("Previous entry was `%s'.\n", val); #endif previous = val; break; } g_free(val); } ldap_value_free_len(values); } } } else { #ifdef DEBUG g_print("Error searching LDAP directory for `%s': %s.\n", dn, ldap_err2string(i)); #endif } if (messages != NULL) { ldap_msgfree(messages); } if (g_str_has_prefix(password, LU_CRYPTED)) addvalues[0] = (char *)password; else { const char *crypted; char *salt, *tmp; if (previous != NULL && strcmp(previous + strlen(LU_CRYPTED), LU_COMMON_DEFAULT_PASSWORD) != 0) { salt = previous + strlen(LU_CRYPTED); if (*salt == LOCKCHAR) salt++; salt = g_strdup(salt); } else salt = lu_util_default_salt_specifier(module ->lu_context); crypted = lu_make_crypted(password, salt); g_free(salt); if (crypted == NULL) { lu_error_new(error, lu_error_generic, _("error encrypting password")); g_free(previous); return FALSE; } tmp = g_strconcat(LU_CRYPTED, crypted, NULL); addvalues[0] = module->scache->cache(module->scache, tmp); g_free(tmp); } j = 0; if (values != NULL) { if (previous) rmvalues[0] = previous; /* else deletes all values */ rmmod.mod_op = LDAP_MOD_DELETE; rmmod.mod_type = (char *)mapped_password; rmmod.mod_values = rmvalues; mods[j++] = &rmmod; } addmod.mod_op = LDAP_MOD_ADD; addmod.mod_type = (char *)mapped_password; addmod.mod_values = addvalues; mods[j++] = &addmod; mods[j] = NULL; i = ldap_modify_ext_s(ctx->ldap, dn, mods, NULL, NULL); g_free(previous); if (i != LDAP_SUCCESS) { lu_error_new(error, lu_error_generic, _ ("error setting password in LDAP directory for %s: %s"), dn, ldap_err2string(i)); return FALSE; } return TRUE; } static gboolean lu_ldap_user_removepass(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_setpass(module, LU_USERNAME, ent, ctx->user_branch, LU_CRYPTED, error); } static gboolean lu_ldap_group_removepass(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_setpass(module, LU_GROUPNAME, ent, ctx->group_branch, LU_CRYPTED, error); } static GValueArray * lu_ldap_enumerate(struct lu_module *module, const char *searchAttr, const char *pattern, const char *returnAttr, const char *branch, struct lu_error **error) { LDAPMessage *messages = NULL; char *base, *filt; GValue value; GValueArray *ret; struct lu_ldap_context *ctx; char *attributes[] = { (char *) returnAttr, NULL }; g_assert(module != NULL); g_assert(searchAttr != NULL); g_assert(strlen(searchAttr) > 0); g_assert(returnAttr != NULL); g_assert(strlen(returnAttr) > 0); LU_ERROR_CHECK(error); ctx = module->module_context; /* Generate the base DN to search under. */ /* FIXME: this is inconsistent with lu_ldap_base() usage elsewhere */ base = g_strdup_printf("%s,%s", branch, ctx->prompts[LU_LDAP_BASEDN].value && strlen(ctx->prompts[LU_LDAP_BASEDN].value) ? ctx->prompts[LU_LDAP_BASEDN].value : "*"); /* Generate the filter to search with. */ filt = g_strdup_printf("(%s=%s)", searchAttr, pattern ?: "*"); #ifdef DEBUG g_print("Looking under `%s' with filter `%s'.\n", base, filt); #endif /* Perform the search. */ ret = g_value_array_new(0); memset(&value, 0, sizeof(value)); g_value_init(&value, G_TYPE_STRING); if (ldap_search_ext_s(ctx->ldap, base, LDAP_SCOPE_SUBTREE, filt, attributes, FALSE, NULL, NULL, NULL, LDAP_NO_LIMIT, &messages) == LDAP_SUCCESS) { LDAPMessage *entry; entry = ldap_first_entry(ctx->ldap, messages); if (entry != NULL) { while (entry != NULL) { BerValue **values; size_t i; values = ldap_get_values_len(ctx->ldap, entry, returnAttr); for (i = 0; (values != NULL) && (values[i] != NULL); i++) { char *val; val = g_strndup(values[i]->bv_val, values[i]->bv_len); #ifdef DEBUG g_print("Got `%s' = `%s'.\n", returnAttr, val); #endif g_value_take_string(&value, val); g_value_array_append(ret, &value); } ldap_value_free_len(values); entry = ldap_next_entry(ctx->ldap, entry); } #ifdef DEBUG } else { g_print("No such entry found in LDAP, continuing.\n"); #endif } } if (messages != NULL) { ldap_msgfree(messages); } g_value_unset(&value); g_free(base); g_free(filt); return ret; } /* Add a user to the directory. */ static gboolean lu_ldap_user_add_prep(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return TRUE; } static gboolean lu_ldap_user_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_set(module, lu_user, 1, ent, ctx->user_branch, error); } /* Modify a user record in the directory. */ static gboolean lu_ldap_user_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_set(module, lu_user, 0, ent, ctx->user_branch, error); } /* Remove a user from the directory. */ static gboolean lu_ldap_user_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_del(module, lu_user, ent, ctx->user_branch, error); } /* Lock a user account in the directory. */ static gboolean lu_ldap_user_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_handle_lock(module, ent, LU_USERNAME, LO_LOCK, ctx->user_branch, error); } /* Unlock a user account in the directory. */ static gboolean lu_ldap_user_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_handle_lock(module, ent, LU_USERNAME, LO_UNLOCK, ctx->user_branch, error); } static gboolean lu_ldap_user_unlock_nonempty(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_handle_lock(module, ent, LU_USERNAME, LO_UNLOCK_NONEMPTY, ctx->user_branch, error); } /* Check if a user account in the directory is locked. */ static gboolean lu_ldap_user_is_locked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_is_locked(module, ent, LU_USERNAME, ctx->user_branch, error); } /* Set a user's password in the directory. */ static gboolean lu_ldap_user_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_setpass(module, LU_USERNAME, ent, ctx->user_branch, password, error); } /* Add a group entry to the directory. */ static gboolean lu_ldap_group_add_prep(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)ent; (void)error; return TRUE; } static gboolean lu_ldap_group_add(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_set(module, lu_group, 1, ent, ctx->group_branch, error); } /* Modify a group entry in the directory. */ static gboolean lu_ldap_group_mod(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_set(module, lu_group, 0, ent, ctx->group_branch, error); } /* Remove a group entry from the directory. */ static gboolean lu_ldap_group_del(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_del(module, lu_group, ent, ctx->group_branch, error); } /* Lock a group account in the directory. */ static gboolean lu_ldap_group_lock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_handle_lock(module, ent, LU_GROUPNAME, LO_LOCK, ctx->group_branch, error); } /* Unlock a group account in the directory. */ static gboolean lu_ldap_group_unlock(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_handle_lock(module, ent, LU_GROUPNAME, LO_UNLOCK, ctx->group_branch, error); } static gboolean lu_ldap_group_unlock_nonempty(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_handle_lock(module, ent, LU_GROUPNAME, LO_UNLOCK_NONEMPTY, ctx->group_branch, error); } /* Check if a group account in the directory is locked. */ static gboolean lu_ldap_group_is_locked(struct lu_module *module, struct lu_ent *ent, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_is_locked(module, ent, LU_GROUPNAME, ctx->group_branch, error); } /* Set a group's password in the directory. */ static gboolean lu_ldap_group_setpass(struct lu_module *module, struct lu_ent *ent, const char *password, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_setpass(module, LU_GROUPNAME, ent, ctx->group_branch, password, error); } /* Populate user or group structures with the proper defaults. */ static gboolean lu_ldap_user_default(struct lu_module *module, const char *user, gboolean is_system, struct lu_ent *ent, struct lu_error **error) { if (lu_ent_get(ent, LU_USERPASSWORD) == NULL) lu_ent_set_string(ent, LU_USERPASSWORD, LU_CRYPTED LU_COMMON_DEFAULT_PASSWORD); /* This will set LU_SHADOWPASSWORD, which we ignore. The default LU_USERPASSWORD value, which is incompatibly formated by lu_common_user_default(), will not be used because LU_USERPASSWORD was set above. */ return lu_common_user_default(module, user, is_system, ent, error) && lu_common_suser_default(module, user, is_system, ent, error); } static gboolean lu_ldap_group_default(struct lu_module *module, const char *group, gboolean is_system, struct lu_ent *ent, struct lu_error **error) { /* This sets LU_SHADOWPASSWORD, which is ignored by our backend. LU_GROUPPASSWORD is not set. */ return lu_common_group_default(module, group, is_system, ent, error) && lu_common_sgroup_default(module, group, is_system, ent, error); } /* Get a listing of all user names. */ static GValueArray * lu_ldap_users_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_enumerate(module, "uid", pattern, "uid", ctx->user_branch, error); } static GPtrArray * lu_ldap_users_enumerate_full(struct lu_module *module, const char *pattern, struct lu_error **error) { struct lu_ldap_context *ctx; GPtrArray *array = g_ptr_array_new(); LU_ERROR_CHECK(error); ctx = module->module_context; lu_ldap_lookup(module, "uid", pattern, NULL, array, ctx->user_branch, "("OBJECTCLASS"="POSIXACCOUNT")", lu_ldap_user_attributes, lu_user, error); return array; } /* Get a listing of all group names. */ static GValueArray * lu_ldap_groups_enumerate(struct lu_module *module, const char *pattern, struct lu_error **error) { struct lu_ldap_context *ctx; LU_ERROR_CHECK(error); ctx = module->module_context; return lu_ldap_enumerate(module, "cn", pattern, "cn", ctx->group_branch, error); } static GPtrArray * lu_ldap_groups_enumerate_full(struct lu_module *module, const char *pattern, struct lu_error **error) { struct lu_ldap_context *ctx; GPtrArray *array = g_ptr_array_new(); LU_ERROR_CHECK(error); ctx = module->module_context; lu_ldap_lookup(module, "cn", pattern, NULL, array, ctx->group_branch, "("OBJECTCLASS"="POSIXGROUP")", lu_ldap_group_attributes, lu_group, error); return array; } /* Get a list of all users in a group, either via their primary or supplemental * group memberships. */ static GValueArray * lu_ldap_users_enumerate_by_group(struct lu_module *module, const char *group, gid_t gid, struct lu_error **error) { struct lu_ldap_context *ctx; GValueArray *ret; char grp[sizeof (gid) * CHAR_BIT + 1]; LU_ERROR_CHECK(error); ctx = module->module_context; sprintf(grp, "%jd", (intmax_t)gid); ret = lu_ldap_enumerate(module, "gidNumber", grp, "uid", ctx->user_branch, error); if (*error == NULL) { GValueArray *secondaries; secondaries = lu_ldap_enumerate(module, "cn", group, "memberUid", ctx->group_branch, error); lu_util_append_values(ret, secondaries); g_value_array_free(secondaries); } return ret; } /* Get a list of all groups to which the user belongs, via either primary or * supplemental group memberships. */ static GValueArray * lu_ldap_groups_enumerate_by_user(struct lu_module *module, const char *user, uid_t uid, struct lu_error **error) { struct lu_ldap_context *ctx; GValueArray *ret, *gids; GValue *value; size_t i; (void)uid; LU_ERROR_CHECK(error); ctx = module->module_context; /* Create an array to hold the values returned. */ ret = g_value_array_new(0); /* Get the user's primary GID(s). */ gids = lu_ldap_enumerate(module, "uid", user, "gidNumber", ctx->user_branch, error); /* For each GID, look up the group. Which has this GID. */ for (i = 0; (gids != NULL) && (i < gids->n_values); i++) { gid_t gid; struct lu_ent *ent; value = g_value_array_get_nth(gids, i); gid = lu_value_get_id(value); if (gid == LU_VALUE_INVALID_ID) continue; ent = lu_ent_new(); if (lu_group_lookup_id(module->lu_context, gid, ent, error)) /* Get the group's names and add them to the list * of values to return. */ lu_util_append_values(ret, lu_ent_get(ent, LU_GROUPNAME)); lu_ent_free(ent); } g_value_array_free(gids); /* Search for the supplemental groups which list this user as * a member. */ if (*error == NULL) { GValueArray *secondaries; secondaries = lu_ldap_enumerate(module, "memberUid", user, "cn", ctx->group_branch, error); lu_util_append_values(ret, secondaries); g_value_array_free(secondaries); } #ifdef DEBUG for (i = 0; i < ret->n_values; i++) { value = g_value_array_get_nth(ret, i); g_print("`%s' is in `%s'\n", user, g_value_get_string(value)); } #endif return ret; } static gboolean lu_ldap_close_module(struct lu_module *module) { struct lu_ldap_context *ctx; size_t i; g_assert(module != NULL); ctx = module->module_context; close_server(ctx->ldap); module->scache->free(module->scache); for (i = 0; i < sizeof(ctx->prompts) / sizeof(ctx->prompts[0]); i++) { if (ctx->prompts[i].value && ctx->prompts[i].free_value) { ctx->prompts[i].free_value(ctx->prompts[i].value); } } g_free(ctx->sasl_mechanism); g_free(ctx->mapped_user_attributes); g_free(ctx->mapped_group_attributes); g_free(ctx); memset(module, 0, sizeof(struct lu_module)); g_free(module); return TRUE; } static gboolean lu_ldap_valid_module_combination(struct lu_module *module, GValueArray *names, struct lu_error **error) { size_t i; g_assert(module != NULL); g_assert(names != NULL); LU_ERROR_CHECK(error); for (i = 0; i < names->n_values; i++) { const char *name; name = g_value_get_string(g_value_array_get_nth(names, i)); if (strcmp(name, LU_MODULE_NAME_FILES) == 0 || strcmp(name, LU_MODULE_NAME_SHADOW) == 0) { /* These modules use an incompatible LU_*PASSWORD format: the LU_CRYPTED prefix, or a similar indicator of an LDAP-defined hashing method, is missing. */ lu_error_new(error, lu_error_invalid_module_combination, _("the `%s' and `%s' modules can not be " "combined"), module->name, name); return FALSE; } } return TRUE; } static gboolean lu_ldap_uses_elevated_privileges(struct lu_module *module) { (void)module; /* FIXME: do some checking, don't know what we need, though */ return FALSE; } struct lu_module * libuser_ldap_init(struct lu_context *context, struct lu_error **error) { struct lu_module *ret; struct lu_ldap_context *ctx; struct lu_prompt prompts[G_N_ELEMENTS(ctx->prompts)]; const char *bind_type; char **bind_types; size_t i; LDAP *ldap; g_assert(context != NULL); g_assert(context->prompter != NULL); LU_ERROR_CHECK(error); ctx = g_malloc0(sizeof(struct lu_ldap_context)); ctx->global_context = context; /* Initialize the prompts structure. */ ctx->prompts[LU_LDAP_SERVER].key = "ldap/server"; ctx->prompts[LU_LDAP_SERVER].prompt = N_("LDAP Server Name"); ctx->prompts[LU_LDAP_SERVER].default_value = lu_cfg_read_single(context, "ldap/server", "ldap"); ctx->prompts[LU_LDAP_SERVER].visible = TRUE; ctx->prompts[LU_LDAP_BASEDN].key = "ldap/basedn"; ctx->prompts[LU_LDAP_BASEDN].prompt = N_("LDAP Search Base DN"); ctx->prompts[LU_LDAP_BASEDN].default_value = lu_cfg_read_single(context, "ldap/basedn", "dc=example,dc=com"); ctx->prompts[LU_LDAP_BASEDN].visible = TRUE; ctx->prompts[LU_LDAP_BINDDN].key = "ldap/binddn"; ctx->prompts[LU_LDAP_BINDDN].prompt = N_("LDAP Bind DN"); ctx->prompts[LU_LDAP_BINDDN].visible = TRUE; ctx->prompts[LU_LDAP_BINDDN].default_value = lu_cfg_read_single(context, "ldap/binddn", "cn=manager,dc=example,dc=com"); ctx->prompts[LU_LDAP_PASSWORD].key = "ldap/password"; ctx->prompts[LU_LDAP_PASSWORD].prompt = N_("LDAP Bind Password"); ctx->prompts[LU_LDAP_PASSWORD].default_value = lu_cfg_read_single(context, "ldap/password", NULL); ctx->prompts[LU_LDAP_PASSWORD].visible = FALSE; ctx->prompts[LU_LDAP_AUTHUSER].key = "ldap/user"; ctx->prompts[LU_LDAP_AUTHUSER].prompt = N_("LDAP SASL User"); ctx->prompts[LU_LDAP_AUTHUSER].visible = TRUE; ctx->prompts[LU_LDAP_AUTHUSER].default_value = lu_cfg_read_single(context, "ldap/user", ""); ctx->prompts[LU_LDAP_AUTHZUSER].key = "ldap/authuser"; ctx->prompts[LU_LDAP_AUTHZUSER].prompt = N_("LDAP SASL Authorization User"); ctx->prompts[LU_LDAP_AUTHZUSER].visible = TRUE; ctx->prompts[LU_LDAP_AUTHZUSER].default_value = lu_cfg_read_single(context, "ldap/authuser", ""); /* Try to be somewhat smart and allow the user to specify which bind * type to use, which should prevent us from asking for information * we can be certain we don't have a use for. */ bind_type = lu_cfg_read_single(context, "ldap/bindtype", "simple,sasl"); bind_types = g_strsplit(bind_type, ",", 0); for (i = 0; (bind_types != NULL) && (bind_types[i] != NULL); i++) { if (g_ascii_strcasecmp(bind_types[i], "simple") == 0) { ctx->bind_simple = TRUE; } else if (g_ascii_strcasecmp(bind_types[i], "sasl") == 0) { ctx->bind_sasl = TRUE; ctx->sasl_mechanism = NULL; } if (g_ascii_strncasecmp(bind_types[i], "sasl/", 5) == 0) { ctx->bind_sasl = TRUE; ctx->sasl_mechanism = g_strdup(bind_types[i] + 5); } } g_strfreev(bind_types); /* Get the information we're sure we'll need. */ i = 0; prompts[i++] = ctx->prompts[LU_LDAP_SERVER]; prompts[i++] = ctx->prompts[LU_LDAP_BASEDN]; if (ctx->bind_simple) { prompts[i++] = ctx->prompts[LU_LDAP_BINDDN]; prompts[i++] = ctx->prompts[LU_LDAP_PASSWORD]; } if (ctx->bind_sasl) { prompts[i++] = ctx->prompts[LU_LDAP_AUTHUSER]; prompts[i++] = ctx->prompts[LU_LDAP_AUTHZUSER]; } if (context->prompter(prompts, i, context->prompter_data, error) == FALSE) { g_free(ctx); return NULL; } i = 0; ctx->prompts[LU_LDAP_SERVER] = prompts[i++]; ctx->prompts[LU_LDAP_BASEDN] = prompts[i++]; if (ctx->bind_simple) { ctx->prompts[LU_LDAP_BINDDN] = prompts[i++]; ctx->prompts[LU_LDAP_PASSWORD] = prompts[i++]; } if (ctx->bind_sasl) { ctx->prompts[LU_LDAP_AUTHUSER] = prompts[i++]; ctx->prompts[LU_LDAP_AUTHZUSER] = prompts[i++]; } /* Allocate the method structure. */ ret = g_malloc0(sizeof(struct lu_module)); ret->version = LU_MODULE_VERSION; ret->module_context = ctx; ret->scache = lu_string_cache_new(TRUE); ret->name = ret->scache->cache(ret->scache, LU_MODULE_NAME_LDAP); ctx->module = ret; ctx->user_branch = lu_cfg_read_single(context, "ldap/userBranch", USERBRANCH); ctx->group_branch = lu_cfg_read_single(context, "ldap/groupBranch", GROUPBRANCH); /* Try to bind to the server to verify that we can. */ ldap = bind_server(ctx, error); if (ldap == NULL) { ret->scache->free(ret->scache); g_free(ret); g_free(ctx); return NULL; } ctx->ldap = ldap; ctx->mapped_user_attributes = g_malloc0_n(G_N_ELEMENTS(lu_ldap_user_attributes), sizeof(*ctx->mapped_user_attributes)); for (i = 0; i < G_N_ELEMENTS(lu_ldap_user_attributes); i++) { if (lu_ldap_user_attributes[i] != NULL) ctx->mapped_user_attributes[i] = (char *) map_to_ldap(ret->scache, lu_ldap_user_attributes[i]); else ctx->mapped_user_attributes[i] = NULL; } ctx->mapped_group_attributes = g_malloc0_n(G_N_ELEMENTS(lu_ldap_group_attributes), sizeof(*ctx->mapped_group_attributes)); for (i = 0; i < G_N_ELEMENTS(lu_ldap_group_attributes); i++) { if (lu_ldap_group_attributes[i] != NULL) ctx->mapped_group_attributes[i] = (char *) map_to_ldap(ret->scache, lu_ldap_group_attributes[i]); else ctx->mapped_group_attributes[i] = NULL; } /* Set the method pointers. */ ret->valid_module_combination = lu_ldap_valid_module_combination; ret->uses_elevated_privileges = lu_ldap_uses_elevated_privileges; ret->user_lookup_name = lu_ldap_user_lookup_name; ret->user_lookup_id = lu_ldap_user_lookup_id; ret->user_default = lu_ldap_user_default; ret->user_add_prep = lu_ldap_user_add_prep; ret->user_add = lu_ldap_user_add; ret->user_mod = lu_ldap_user_mod; ret->user_del = lu_ldap_user_del; ret->user_lock = lu_ldap_user_lock; ret->user_unlock = lu_ldap_user_unlock; ret->user_unlock_nonempty = lu_ldap_user_unlock_nonempty; ret->user_is_locked = lu_ldap_user_is_locked; ret->user_setpass = lu_ldap_user_setpass; ret->user_removepass = lu_ldap_user_removepass; ret->users_enumerate = lu_ldap_users_enumerate; ret->users_enumerate_by_group = lu_ldap_users_enumerate_by_group; ret->users_enumerate_full = lu_ldap_users_enumerate_full; ret->group_lookup_name = lu_ldap_group_lookup_name; ret->group_lookup_id = lu_ldap_group_lookup_id; ret->group_default = lu_ldap_group_default; ret->group_add_prep = lu_ldap_group_add_prep; ret->group_add = lu_ldap_group_add; ret->group_mod = lu_ldap_group_mod; ret->group_del = lu_ldap_group_del; ret->group_lock = lu_ldap_group_lock; ret->group_unlock = lu_ldap_group_unlock; ret->group_unlock_nonempty = lu_ldap_group_unlock_nonempty; ret->group_is_locked = lu_ldap_group_is_locked; ret->group_setpass = lu_ldap_group_setpass; ret->group_removepass = lu_ldap_group_removepass; ret->groups_enumerate = lu_ldap_groups_enumerate; ret->groups_enumerate_by_user = lu_ldap_groups_enumerate_by_user; ret->groups_enumerate_full = lu_ldap_groups_enumerate_full; ret->close = lu_ldap_close_module; /* Done. */ return ret; } libuser-0.60~dfsg/INSTALL0000644000175000017500000003660512157551763015151 0ustar tzafrirtzafrirInstallation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf limitation. Until the limitation is lifted, you can use this workaround: CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. libuser-0.60~dfsg/lib/0000755000175000017500000000000012226342602014637 5ustar tzafrirtzafrirlibuser-0.60~dfsg/lib/getdate.y0000644000175000017500000005174412226342567016473 0ustar tzafrirtzafrir%{ /* ** Originally written by Steven M. Bellovin while ** at the University of North Carolina at Chapel Hill. Later tweaked by ** a couple of people on Usenet. Completely overhauled by Rich $alz ** and Jim Berets in August, 1990; ** ** This grammar has 13 shift/reduce conflicts. ** ** This code is in the public domain and has no copyright. */ #ifdef HAVE_CONFIG_H # include #endif /* Since the code of getdate.y is not included in the Emacs executable itself, there is no need to #define static in this file. Even if the code were included in the Emacs executable, it probably wouldn't do any harm to #undef it here; this will only cause problems if we try to write to a static variable, which I don't think this code needs to do. */ #ifdef emacs # undef static #endif #include #include #include #include #include #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) #include "lib/internal.h" #define EPOCH 1970 #define HOUR(x) ((x) * 60) #define MAX_BUFF_LEN 128 /* size of buffer to read the date into */ /* ** An entry in the lexical lookup table. */ typedef struct _TABLE { const char *name; int type; int value; } TABLE; /* ** Meridian: am, pm, or 24-hour style. */ typedef enum _MERIDIAN { MERam, MERpm, MER24 } MERIDIAN; struct global { int DayOrdinal; int DayNumber; int HaveDate; int HaveDay; int HaveRel; int HaveTime; int HaveZone; int Timezone; int Day; int Hour; int Minutes; int Month; int Seconds; int Year; MERIDIAN Meridian; int RelDay; int RelHour; int RelMinutes; int RelMonth; int RelSeconds; int RelYear; }; union YYSTYPE; static int yylex (union YYSTYPE *lvalp, const char **yyInput); static int yyerror (const char **yyInput, struct global *yy, char *s); static int yyparse (const char **yyInput, struct global *yy); #define YYENABLE_NLS 0 #define YYLTYPE_IS_TRIVIAL 0 %} %name-prefix "lu_gd" %define api.pure %parse-param { const char **yyInput } %lex-param { const char **yyInput } %parse-param { struct global *yy } %union { int Number; enum _MERIDIAN Meridian; } %token tAGO tDAY tDAY_UNIT tDAYZONE tDST tHOUR_UNIT tID %token tMERIDIAN tMINUTE_UNIT tMONTH tMONTH_UNIT %token tSEC_UNIT tSNUMBER tUNUMBER tYEAR_UNIT tZONE %type tDAY tDAY_UNIT tDAYZONE tHOUR_UNIT tMINUTE_UNIT %type tMONTH tMONTH_UNIT %type tSEC_UNIT tSNUMBER tUNUMBER tYEAR_UNIT tZONE %type tMERIDIAN o_merid %expect 13 %% spec : /* NULL */ | spec item ; item : time { yy->HaveTime++; } | zone { yy->HaveZone++; } | date { yy->HaveDate++; } | day { yy->HaveDay++; } | rel { yy->HaveRel++; } | number ; time : tUNUMBER tMERIDIAN { yy->Hour = $1; yy->Minutes = 0; yy->Seconds = 0; yy->Meridian = $2; } | tUNUMBER ':' tUNUMBER o_merid { yy->Hour = $1; yy->Minutes = $3; yy->Seconds = 0; yy->Meridian = $4; } | tUNUMBER ':' tUNUMBER tSNUMBER { yy->Hour = $1; yy->Minutes = $3; yy->Meridian = MER24; yy->HaveZone++; yy->Timezone = ($4 < 0 ? -$4 % 100 + (-$4 / 100) * 60 : - ($4 % 100 + ($4 / 100) * 60)); } | tUNUMBER ':' tUNUMBER ':' tUNUMBER o_merid { yy->Hour = $1; yy->Minutes = $3; yy->Seconds = $5; yy->Meridian = $6; } | tUNUMBER ':' tUNUMBER ':' tUNUMBER tSNUMBER { yy->Hour = $1; yy->Minutes = $3; yy->Seconds = $5; yy->Meridian = MER24; yy->HaveZone++; yy->Timezone = ($6 < 0 ? -$6 % 100 + (-$6 / 100) * 60 : - ($6 % 100 + ($6 / 100) * 60)); } ; zone : tZONE { yy->Timezone = $1; } | tDAYZONE { yy->Timezone = $1 - 60; } | tZONE tDST { yy->Timezone = $1 - 60; } ; day : tDAY { yy->DayOrdinal = 1; yy->DayNumber = $1; } | tDAY ',' { yy->DayOrdinal = 1; yy->DayNumber = $1; } | tUNUMBER tDAY { yy->DayOrdinal = $1; yy->DayNumber = $2; } ; date : tUNUMBER '/' tUNUMBER { yy->Month = $1; yy->Day = $3; } | tUNUMBER '/' tUNUMBER '/' tUNUMBER { /* Interpret as YY->YY/MM/DD if $1 >= 1000, otherwise as MM/DD/YY. The goal in recognizing YY->YY/MM/DD is solely to support legacy machine-generated dates like those in an RCS log listing. If you want portability, use the ISO 8601 format. */ if ($1 >= 1000) { yy->Year = $1; yy->Month = $3; yy->Day = $5; } else { yy->Month = $1; yy->Day = $3; yy->Year = $5; } } | tUNUMBER tSNUMBER tSNUMBER { /* ISO 8601 format. yy->yy-mm-dd. */ yy->Year = $1; yy->Month = -$2; yy->Day = -$3; } | tUNUMBER tMONTH tSNUMBER { /* e.g. 17-JUN-1992. */ yy->Day = $1; yy->Month = $2; yy->Year = -$3; } | tMONTH tUNUMBER { yy->Month = $1; yy->Day = $2; } | tMONTH tUNUMBER ',' tUNUMBER { yy->Month = $1; yy->Day = $2; yy->Year = $4; } | tUNUMBER tMONTH { yy->Month = $2; yy->Day = $1; } | tUNUMBER tMONTH tUNUMBER { yy->Month = $2; yy->Day = $1; yy->Year = $3; } ; rel : relunit tAGO { yy->RelSeconds = -yy->RelSeconds; yy->RelMinutes = -yy->RelMinutes; yy->RelHour = -yy->RelHour; yy->RelDay = -yy->RelDay; yy->RelMonth = -yy->RelMonth; yy->RelYear = -yy->RelYear; } | relunit ; relunit : tUNUMBER tYEAR_UNIT { yy->RelYear += $1 * $2; } | tSNUMBER tYEAR_UNIT { yy->RelYear += $1 * $2; } | tYEAR_UNIT { yy->RelYear++; } | tUNUMBER tMONTH_UNIT { yy->RelMonth += $1 * $2; } | tSNUMBER tMONTH_UNIT { yy->RelMonth += $1 * $2; } | tMONTH_UNIT { yy->RelMonth++; } | tUNUMBER tDAY_UNIT { yy->RelDay += $1 * $2; } | tSNUMBER tDAY_UNIT { yy->RelDay += $1 * $2; } | tDAY_UNIT { yy->RelDay++; } | tUNUMBER tHOUR_UNIT { yy->RelHour += $1 * $2; } | tSNUMBER tHOUR_UNIT { yy->RelHour += $1 * $2; } | tHOUR_UNIT { yy->RelHour++; } | tUNUMBER tMINUTE_UNIT { yy->RelMinutes += $1 * $2; } | tSNUMBER tMINUTE_UNIT { yy->RelMinutes += $1 * $2; } | tMINUTE_UNIT { yy->RelMinutes++; } | tUNUMBER tSEC_UNIT { yy->RelSeconds += $1 * $2; } | tSNUMBER tSEC_UNIT { yy->RelSeconds += $1 * $2; } | tSEC_UNIT { yy->RelSeconds++; } ; number : tUNUMBER { if (yy->HaveTime && yy->HaveDate && !yy->HaveRel) yy->Year = $1; else { if ($1>10000) { yy->HaveDate++; yy->Day= ($1)%100; yy->Month= ($1/100)%100; yy->Year = $1/10000; } else { yy->HaveTime++; if ($1 < 100) { yy->Hour = $1; yy->Minutes = 0; } else { yy->Hour = $1 / 100; yy->Minutes = $1 % 100; } yy->Seconds = 0; yy->Meridian = MER24; } } } ; o_merid : /* NULL */ { $$ = MER24; } | tMERIDIAN { $$ = $1; } ; %% /* Month and day table. */ static TABLE const MonthDayTable[] = { { "january", tMONTH, 1 }, { "february", tMONTH, 2 }, { "march", tMONTH, 3 }, { "april", tMONTH, 4 }, { "may", tMONTH, 5 }, { "june", tMONTH, 6 }, { "july", tMONTH, 7 }, { "august", tMONTH, 8 }, { "september", tMONTH, 9 }, { "sept", tMONTH, 9 }, { "october", tMONTH, 10 }, { "november", tMONTH, 11 }, { "december", tMONTH, 12 }, { "sunday", tDAY, 0 }, { "monday", tDAY, 1 }, { "tuesday", tDAY, 2 }, { "tues", tDAY, 2 }, { "wednesday", tDAY, 3 }, { "wednes", tDAY, 3 }, { "thursday", tDAY, 4 }, { "thur", tDAY, 4 }, { "thurs", tDAY, 4 }, { "friday", tDAY, 5 }, { "saturday", tDAY, 6 }, { NULL, 0, 0 } }; /* Time units table. */ static TABLE const UnitsTable[] = { { "year", tYEAR_UNIT, 1 }, { "month", tMONTH_UNIT, 1 }, { "fortnight", tDAY_UNIT, 14 }, { "week", tDAY_UNIT, 7 }, { "day", tDAY_UNIT, 1 }, { "hour", tHOUR_UNIT, 1 }, { "minute", tMINUTE_UNIT, 1 }, { "min", tMINUTE_UNIT, 1 }, { "second", tSEC_UNIT, 1 }, { "sec", tSEC_UNIT, 1 }, { NULL, 0, 0 } }; /* Assorted relative-time words. */ static TABLE const OtherTable[] = { { "tomorrow", tMINUTE_UNIT, 1 * 24 * 60 }, { "yesterday", tMINUTE_UNIT, -1 * 24 * 60 }, { "today", tMINUTE_UNIT, 0 }, { "now", tMINUTE_UNIT, 0 }, { "last", tUNUMBER, -1 }, { "this", tMINUTE_UNIT, 0 }, { "next", tUNUMBER, 2 }, { "first", tUNUMBER, 1 }, /* { "second", tUNUMBER, 2 }, */ { "third", tUNUMBER, 3 }, { "fourth", tUNUMBER, 4 }, { "fifth", tUNUMBER, 5 }, { "sixth", tUNUMBER, 6 }, { "seventh", tUNUMBER, 7 }, { "eighth", tUNUMBER, 8 }, { "ninth", tUNUMBER, 9 }, { "tenth", tUNUMBER, 10 }, { "eleventh", tUNUMBER, 11 }, { "twelfth", tUNUMBER, 12 }, { "ago", tAGO, 1 }, { NULL, 0, 0 } }; /* The timezone table. */ static TABLE const TimezoneTable[] = { { "gmt", tZONE, HOUR ( 0) }, /* Greenwich Mean */ { "ut", tZONE, HOUR ( 0) }, /* Universal (Coordinated) */ { "utc", tZONE, HOUR ( 0) }, { "wet", tZONE, HOUR ( 0) }, /* Western European */ { "bst", tDAYZONE, HOUR ( 0) }, /* British Summer */ { "wat", tZONE, HOUR ( 1) }, /* West Africa */ { "at", tZONE, HOUR ( 2) }, /* Azores */ { "ast", tZONE, HOUR ( 4) }, /* Atlantic Standard */ { "adt", tDAYZONE, HOUR ( 4) }, /* Atlantic Daylight */ { "est", tZONE, HOUR ( 5) }, /* Eastern Standard */ { "edt", tDAYZONE, HOUR ( 5) }, /* Eastern Daylight */ { "cst", tZONE, HOUR ( 6) }, /* Central Standard */ { "cdt", tDAYZONE, HOUR ( 6) }, /* Central Daylight */ { "mst", tZONE, HOUR ( 7) }, /* Mountain Standard */ { "mdt", tDAYZONE, HOUR ( 7) }, /* Mountain Daylight */ { "pst", tZONE, HOUR ( 8) }, /* Pacific Standard */ { "pdt", tDAYZONE, HOUR ( 8) }, /* Pacific Daylight */ { "yst", tZONE, HOUR ( 9) }, /* Yukon Standard */ { "ydt", tDAYZONE, HOUR ( 9) }, /* Yukon Daylight */ { "hst", tZONE, HOUR (10) }, /* Hawaii Standard */ { "hdt", tDAYZONE, HOUR (10) }, /* Hawaii Daylight */ { "cat", tZONE, HOUR (10) }, /* Central Alaska */ { "ahst", tZONE, HOUR (10) }, /* Alaska-Hawaii Standard */ { "nt", tZONE, HOUR (11) }, /* Nome */ { "idlw", tZONE, HOUR (12) }, /* International Date Line West */ { "cet", tZONE, -HOUR (1) }, /* Central European */ { "met", tZONE, -HOUR (1) }, /* Middle European */ { "mewt", tZONE, -HOUR (1) }, /* Middle European Winter */ { "mest", tDAYZONE, -HOUR (1) }, /* Middle European Summer */ { "mesz", tDAYZONE, -HOUR (1) }, /* Middle European Summer */ { "swt", tZONE, -HOUR (1) }, /* Swedish Winter */ { "sst", tDAYZONE, -HOUR (1) }, /* Swedish Summer */ { "fwt", tZONE, -HOUR (1) }, /* French Winter */ { "fst", tDAYZONE, -HOUR (1) }, /* French Summer */ { "eet", tZONE, -HOUR (2) }, /* Eastern Europe, USSR Zone 1 */ { "bt", tZONE, -HOUR (3) }, /* Baghdad, USSR Zone 2 */ { "zp4", tZONE, -HOUR (4) }, /* USSR Zone 3 */ { "zp5", tZONE, -HOUR (5) }, /* USSR Zone 4 */ { "zp6", tZONE, -HOUR (6) }, /* USSR Zone 5 */ { "wast", tZONE, -HOUR (7) }, /* West Australian Standard */ { "wadt", tDAYZONE, -HOUR (7) }, /* West Australian Daylight */ { "cct", tZONE, -HOUR (8) }, /* China Coast, USSR Zone 7 */ { "jst", tZONE, -HOUR (9) }, /* Japan Standard, USSR Zone 8 */ { "east", tZONE, -HOUR (10) }, /* Eastern Australian Standard */ { "eadt", tDAYZONE, -HOUR (10) }, /* Eastern Australian Daylight */ { "gst", tZONE, -HOUR (10) }, /* Guam Standard, USSR Zone 9 */ { "nzt", tZONE, -HOUR (12) }, /* New Zealand */ { "nzst", tZONE, -HOUR (12) }, /* New Zealand Standard */ { "nzdt", tDAYZONE, -HOUR (12) }, /* New Zealand Daylight */ { "idle", tZONE, -HOUR (12) }, /* International Date Line East */ { NULL, 0, 0 } }; /* Military timezone table. */ static TABLE const MilitaryTable[] = { { "a", tZONE, HOUR ( 1) }, { "b", tZONE, HOUR ( 2) }, { "c", tZONE, HOUR ( 3) }, { "d", tZONE, HOUR ( 4) }, { "e", tZONE, HOUR ( 5) }, { "f", tZONE, HOUR ( 6) }, { "g", tZONE, HOUR ( 7) }, { "h", tZONE, HOUR ( 8) }, { "i", tZONE, HOUR ( 9) }, { "k", tZONE, HOUR ( 10) }, { "l", tZONE, HOUR ( 11) }, { "m", tZONE, HOUR ( 12) }, { "n", tZONE, HOUR (- 1) }, { "o", tZONE, HOUR (- 2) }, { "p", tZONE, HOUR (- 3) }, { "q", tZONE, HOUR (- 4) }, { "r", tZONE, HOUR (- 5) }, { "s", tZONE, HOUR (- 6) }, { "t", tZONE, HOUR (- 7) }, { "u", tZONE, HOUR (- 8) }, { "v", tZONE, HOUR (- 9) }, { "w", tZONE, HOUR (-10) }, { "x", tZONE, HOUR (-11) }, { "y", tZONE, HOUR (-12) }, { "z", tZONE, HOUR ( 0) }, { NULL, 0, 0 } }; /* ARGSUSED */ static int yyerror (const char **yyInput, struct global *yy, char *s) { (void)yyInput; (void)yy; (void)s; return 0; } static int ToHour (int Hours, MERIDIAN Meridian) { switch (Meridian) { case MER24: if (Hours < 0 || Hours > 23) return -1; return Hours; case MERam: if (Hours < 1 || Hours > 12) return -1; if (Hours == 12) Hours = 0; return Hours; case MERpm: if (Hours < 1 || Hours > 12) return -1; if (Hours == 12) Hours = 0; return Hours + 12; default: abort (); } /* NOTREACHED */ } static int ToYear (int Year) { if (Year < 0) Year = -Year; /* XPG4 suggests that years 00-68 map to 2000-2068, and years 69-99 map to 1969-1999. */ if (Year < 69) Year += 2000; else if (Year < 100) Year += 1900; return Year; } static int LookupWord (YYSTYPE *lvalp, char *buff) { register char *p; register char *q; register const TABLE *tp; int i; int abbrev; /* Make it lowercase. */ for (p = buff; *p; p++) if (isupper ((unsigned char)*p)) *p = tolower ((unsigned char)*p); if (strcmp (buff, "am") == 0 || strcmp (buff, "a.m.") == 0) { lvalp->Meridian = MERam; return tMERIDIAN; } if (strcmp (buff, "pm") == 0 || strcmp (buff, "p.m.") == 0) { lvalp->Meridian = MERpm; return tMERIDIAN; } /* See if we have an abbreviation for a month. */ if (strlen (buff) == 3) abbrev = 1; else if (strlen (buff) == 4 && buff[3] == '.') { abbrev = 1; buff[3] = '\0'; } else abbrev = 0; for (tp = MonthDayTable; tp->name; tp++) { if (abbrev) { if (strncmp (buff, tp->name, 3) == 0) { lvalp->Number = tp->value; return tp->type; } } else if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } } for (tp = TimezoneTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } if (strcmp (buff, "dst") == 0) return tDST; for (tp = UnitsTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } /* Strip off any plural and try the units table again. */ i = strlen (buff) - 1; if (buff[i] == 's') { buff[i] = '\0'; for (tp = UnitsTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } buff[i] = 's'; /* Put back for "this" in OtherTable. */ } for (tp = OtherTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } /* Military timezones. */ if (buff[1] == '\0' && isalpha ((unsigned char)*buff)) { for (tp = MilitaryTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } } /* Drop out any periods and try the timezone table again. */ for (i = 0, p = q = buff; *q; q++) if (*q != '.') *p++ = *q; else i++; *p = '\0'; if (i) for (tp = TimezoneTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } return tID; } static int yylex (YYSTYPE *lvalp, const char **yyInput) { register char c; register char *p; char buff[20]; int Count; int sign; for (;;) { while (isspace ((unsigned char)**yyInput)) (*yyInput)++; if (ISDIGIT (c = **yyInput) || c == '-' || c == '+') { if (c == '-' || c == '+') { sign = c == '-' ? -1 : 1; if (!ISDIGIT (*++*yyInput)) /* skip the '-' sign */ continue; } else sign = 0; for (lvalp->Number = 0; ISDIGIT (c = *(*yyInput)++);) lvalp->Number = 10 * lvalp->Number + c - '0'; (*yyInput)--; if (sign < 0) lvalp->Number = -lvalp->Number; return sign ? tSNUMBER : tUNUMBER; } if (isalpha ((unsigned char)c)) { for (p = buff; (c = *(*yyInput)++, isalpha ((unsigned char)c)) || c == '.';) if (p < &buff[sizeof buff - 1]) *p++ = c; *p = '\0'; (*yyInput)--; return LookupWord (lvalp, buff); } if (c != '(') return *(*yyInput)++; Count = 0; do { c = *(*yyInput)++; if (c == '\0') return c; if (c == '(') Count++; else if (c == ')') Count--; } while (Count > 0); } } #define TM_YEAR_ORIGIN 1900 /* Yield A - B, measured in seconds. */ static long difftm (struct tm *a, struct tm *b) { int ay = a->tm_year + (TM_YEAR_ORIGIN - 1); int by = b->tm_year + (TM_YEAR_ORIGIN - 1); long days = ( /* difference in day of year */ a->tm_yday - b->tm_yday /* + intervening leap days */ + ((ay >> 2) - (by >> 2)) - (ay / 100 - by / 100) + ((ay / 100 >> 2) - (by / 100 >> 2)) /* + difference in years * 365 */ + (long) (ay - by) * 365 ); return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour)) + (a->tm_min - b->tm_min)) + (a->tm_sec - b->tm_sec)); } time_t lu_get_date (const char *p, const time_t *now) { struct tm tm, tm0, *tmp; struct global yy; time_t Start; Start = now ? *now : time ((time_t *) NULL); tmp = localtime (&Start); memset (&yy, 0, sizeof(yy)); yy.Year = tmp->tm_year + TM_YEAR_ORIGIN; yy.Month = tmp->tm_mon + 1; yy.Day = tmp->tm_mday; yy.Hour = tmp->tm_hour; yy.Minutes = tmp->tm_min; yy.Seconds = tmp->tm_sec; yy.Meridian = MER24; yy.RelSeconds = 0; yy.RelMinutes = 0; yy.RelHour = 0; yy.RelDay = 0; yy.RelMonth = 0; yy.RelYear = 0; yy.HaveDate = 0; yy.HaveDay = 0; yy.HaveRel = 0; yy.HaveTime = 0; yy.HaveZone = 0; if (yyparse (&p, &yy) || yy.HaveTime > 1 || yy.HaveZone > 1 || yy.HaveDate > 1 || yy.HaveDay > 1) return -1; tm.tm_year = ToYear (yy.Year) - TM_YEAR_ORIGIN + yy.RelYear; tm.tm_mon = yy.Month - 1 + yy.RelMonth; tm.tm_mday = yy.Day + yy.RelDay; if (yy.HaveTime || (yy.HaveRel && !yy.HaveDate && !yy.HaveDay)) { tm.tm_hour = ToHour (yy.Hour, yy.Meridian); if (tm.tm_hour < 0) return -1; tm.tm_min = yy.Minutes; tm.tm_sec = yy.Seconds; } else { tm.tm_hour = tm.tm_min = tm.tm_sec = 0; } tm.tm_hour += yy.RelHour; tm.tm_min += yy.RelMinutes; tm.tm_sec += yy.RelSeconds; tm.tm_isdst = -1; tm0 = tm; Start = mktime (&tm); if (Start == (time_t) -1) { /* Guard against falsely reporting errors near the time_t boundaries when parsing times in other time zones. For example, if the min time_t value is 1970-01-01 00:00:00 UTC and we are 8 hours ahead of UTC, then the min localtime value is 1970-01-01 08:00:00; if we apply mktime to 1970-01-01 00:00:00 we will get an error, so we apply mktime to 1970-01-02 08:00:00 instead and adjust the time zone by 24 hours to compensate. This algorithm assumes that there is no DST transition within a day of the time_t boundaries. */ if (yy.HaveZone) { tm = tm0; if (tm.tm_year <= EPOCH - TM_YEAR_ORIGIN) { tm.tm_mday++; yy.Timezone -= 24 * 60; } else { tm.tm_mday--; yy.Timezone += 24 * 60; } Start = mktime (&tm); } if (Start == (time_t) -1) return Start; } if (yy.HaveDay && !yy.HaveDate) { tm.tm_mday += ((yy.DayNumber - tm.tm_wday + 7) % 7 + 7 * (yy.DayOrdinal - (0 < yy.DayOrdinal))); Start = mktime (&tm); if (Start == (time_t) -1) return Start; } if (yy.HaveZone) { long delta = yy.Timezone * 60L + difftm (&tm, gmtime (&Start)); if ((Start + delta < Start) != (delta < 0)) return -1; /* time_t overflow */ Start += delta; } return Start; } #if defined (TEST) /* ARGSUSED */ int main (ac, av) int ac; char *av[]; { char buff[MAX_BUFF_LEN + 1]; time_t d; (void) printf ("Enter date, or blank line to exit.\n\t> "); (void) fflush (stdout); buff[MAX_BUFF_LEN] = 0; while (fgets (buff, MAX_BUFF_LEN, stdin) && buff[0]) { d = lu_get_date (buff, (time_t *) NULL); if (d == -1) (void) printf ("Bad format - couldn't convert.\n"); else (void) printf ("%s", ctime (&d)); (void) printf ("\t> "); (void) fflush (stdout); } exit (0); /* NOTREACHED */ } #endif /* defined (TEST) */ libuser-0.60~dfsg/lib/entity.c0000644000175000017500000007565512226342567016353 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004, 2005 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include "user_private.h" #include "internal.h" /** * SECTION:entity * @short_description: Functions for manipulating #lu_ent structures. * @include: libuser/error.h * * entity.h declares functions for manipulating #lu_ent * structures, which are used by libuser, its modules, and applications to hold * data about a particular user or group account. */ /** * lu_ent_new: * * Creates a new, empty struct #lu_ent. * * Returns: The created entity, which should be deallocated by lu_ent_free() */ struct lu_ent * lu_ent_new() { struct lu_ent *ent; ent = g_malloc0(sizeof(struct lu_ent)); ent->magic = LU_ENT_MAGIC; ent->cache = lu_string_cache_new(TRUE); ent->current = g_array_new(FALSE, TRUE, sizeof(struct lu_attribute)); ent->pending = g_array_new(FALSE, TRUE, sizeof(struct lu_attribute)); ent->modules = g_value_array_new(1); return ent; } struct lu_ent * lu_ent_new_typed(enum lu_entity_type entity_type) { struct lu_ent *ret; ret = lu_ent_new(); ret->type = entity_type; return ret; } /** * lu_ent_free: * @ent: The entity to free * * Frees an struct #lu_ent, including all strings it owns. */ void lu_ent_free(struct lu_ent *ent) { size_t i; struct lu_attribute *attr; g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); /* Free the cache. */ ent->cache->free(ent->cache); /* Free each current attribute. */ for (i = 0; i < ent->current->len; i++) { attr = &g_array_index(ent->current, struct lu_attribute, i); /* Free the values array in this attribute; the array free * will get the rest. */ g_value_array_free(attr->values); attr->name = 0; attr->values = NULL; } g_array_free(ent->current, TRUE); /* Free each pending attribute. */ for (i = 0; i < ent->pending->len; i++) { attr = &g_array_index(ent->pending, struct lu_attribute, i); /* Free the values array in this attribute; the array free * will get the rest. */ g_value_array_free(attr->values); attr->name = 0; attr->values = NULL; } g_array_free(ent->pending, TRUE); /* Free the module list. */ g_value_array_free(ent->modules); memset(ent, 0, sizeof(struct lu_ent)); g_free(ent); } /* Dump a set of attributes */ static void lu_ent_dump_attributes(GArray *attrs, FILE *fp) { size_t i; for (i = 0; i < attrs->len; i++) { struct lu_attribute *attribute; size_t j; attribute = &g_array_index(attrs, struct lu_attribute, i); for (j = 0; j < attribute->values->n_values; j++) { GValue *value; value = g_value_array_get_nth(attribute->values, j); fprintf(fp, " %s = ", g_quark_to_string(attribute->name)); if (G_VALUE_HOLDS_STRING(value)) fprintf(fp, "`%s'\n", g_value_get_string(value)); else if (G_VALUE_HOLDS_LONG(value)) fprintf(fp, "%ld\n", g_value_get_long(value)); else if (G_VALUE_HOLDS_INT64(value)) fprintf(fp, "%lld\n", (long long)g_value_get_int64(value)); else fprintf(fp, "???\n"); } } } /** * lu_ent_dump: * @ent: The entity to dump * @fp: Destination file * * Dumps a struct #lu_ent to a file in text form, for debugging. */ void lu_ent_dump(struct lu_ent *ent, FILE *fp) { size_t i; g_return_if_fail(ent != NULL); fprintf(fp, "dump of struct lu_ent at %p:\n", ent); fprintf(fp, " magic = %08x\n", ent->magic); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail((ent->type == lu_user) || (ent->type == lu_group)); switch (ent->type) { case lu_invalid: fprintf(fp, " type = invalid\n"); break; case lu_user: fprintf(fp, " type = user\n"); break; case lu_group: fprintf(fp, " type = group\n"); break; default: fprintf(fp, " type = UNKNOWN\n"); break; } /* Print the module list. */ fprintf(fp, " modules = ("); for (i = 0; i < ent->modules->n_values; i++) { GValue *value; value = g_value_array_get_nth(ent->modules, i); if (i > 0) fprintf(fp, ", "); if (G_VALUE_HOLDS_STRING(value)) fprintf(fp, "`%s'", g_value_get_string(value)); else fprintf(fp, "?"); } fprintf(fp, ")\n"); /* Print the current data values. */ lu_ent_dump_attributes(ent->current, fp); fprintf(fp, "\n"); lu_ent_dump_attributes(ent->pending, fp); } /* Add a module to the list of modules kept for this entity. */ void lu_ent_add_module(struct lu_ent *ent, const char *source) { size_t i; g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(ent->modules != NULL); for (i = 0; i < ent->modules->n_values; i++) { GValue *val; val = g_value_array_get_nth(ent->modules, i); /* We only add strings, so there had better be only strings * in this list, otherwise someone is messing with us. */ g_assert(G_VALUE_HOLDS_STRING(val)); if (strcmp(g_value_get_string(val), source) == 0) break; } /* If we fell of the end of the array, then the new value is not * in there, so we should add it. */ if (i >= ent->modules->n_values) { GValue value; /* Initialize a value with the string. */ memset(&value, 0, sizeof(value)); g_value_init(&value, G_TYPE_STRING); g_value_set_string(&value, source); g_value_array_append(ent->modules, &value); g_value_unset(&value); } } /* Clear the list of modules which affect this module, by freeing the array * we use to keep track of them and allocating a new one. */ void lu_ent_clear_modules(struct lu_ent *ent) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_value_array_free(ent->modules); ent->modules = g_value_array_new(1); } /* Remove all attributes from an object. This function takes the address * of whichever list we want cleared. */ static void clear_attribute_list(GArray *dest) { int i; for (i = dest->len - 1; i >= 0; i--) { struct lu_attribute *attr; attr = &g_array_index(dest, struct lu_attribute, i); g_value_array_free(attr->values); attr->values = NULL; g_array_remove_index_fast(dest, i); } } /* Copy all attributes from source to dest, wiping out whatever was already * in the destination array. */ static void copy_attributes(GArray *source, GArray *dest) { size_t i; /* First, clear the destination list of all attributes. */ clear_attribute_list(dest); /* Now copy all of the attributes and their values. */ for (i = 0; i < source->len; i++) { struct lu_attribute *attr, newattr; attr = &g_array_index(source, struct lu_attribute, i); /* Copy the attribute name, then its values, into the holding * area. */ memset(&newattr, 0, sizeof(newattr)); newattr.name = attr->name; newattr.values = g_value_array_copy(attr->values); /* Now append the attribute to the array. */ g_array_append_val(dest, newattr); } } /** * lu_ent_revert: * @ent: an entity * * Replaces all attributes with changes pending by their current values, * forgetting the pending changes. */ void lu_ent_revert(struct lu_ent *entity) { copy_attributes(entity->current, entity->pending); } /** * lu_ent_commit: * @ent: An entity * * Sets pending attribute changes as current values of the entity. */ void lu_ent_commit(struct lu_ent *entity) { copy_attributes(entity->pending, entity->current); } /** * lu_ent_copy: * @source: The entity to copy * @dest: The destination space, must be already allocated by lu_ent_new() * * Copies one struct #lu_ent over another. */ void lu_ent_copy(struct lu_ent *source, struct lu_ent *dest) { g_return_if_fail(source != NULL); g_return_if_fail(dest != NULL); g_return_if_fail(source->magic == LU_ENT_MAGIC); g_return_if_fail(dest->magic == LU_ENT_MAGIC); dest->type = source->type; copy_attributes(source->current, dest->current); copy_attributes(source->pending, dest->pending); g_value_array_free(dest->modules); dest->modules = g_value_array_copy(source->modules); } /* Return a GQark for lower-cased attribute */ static GQuark quark_from_attribute(const char *attribute) { GQuark quark; char *lower; lower = g_ascii_strdown(attribute, -1); quark = g_quark_from_string(lower); g_free(lower); return quark; } static GValueArray * lu_ent_get_int(GArray *list, const char *attribute) { GQuark aquark; size_t i; g_return_val_if_fail(list != NULL, NULL); g_return_val_if_fail(attribute != NULL, NULL); g_return_val_if_fail(strlen(attribute) > 0, NULL); aquark = quark_from_attribute(attribute); for (i = 0; i < list->len; i++) { struct lu_attribute *attr; attr = &g_array_index(list, struct lu_attribute, i); if (attr != NULL) { if (attr->name == aquark) { g_assert(attr->values != NULL); g_assert(attr->values->n_values > 0); return attr->values; } } } return NULL; } /* Return a read-only pointer to the first string value of ATTRIBUTE in LIST if any, or NULL if ATTRIBUTE doesn't exist or on error. */ static const char * lu_ent_get_first_string_int(GArray *list, const char *attribute) { GValueArray *vals; GValue *v; vals = lu_ent_get_int(list, attribute); if (vals == NULL) return NULL; v = g_value_array_get_nth(vals, 0); if (!G_VALUE_HOLDS_STRING(v)) return NULL; return g_value_get_string(v); } /* Return a string representation of the first value of ATTRIBUTE in LIST if any, or NULL if ATTRIBUTE doesn't exist or on error. The caller should call g_free() on the result. */ static char * lu_ent_get_first_value_strdup_int(GArray *list, const char *attribute) { GValueArray *vals; vals = lu_ent_get_int(list, attribute); if (vals == NULL) return NULL; return lu_value_strdup(g_value_array_get_nth(vals, 0)); } /* Return an id_t contents of the first value of ATTRIBUTE in LIST if any, or LU_VALUE_INVALID_ID if ATTRIBUTE doesn't exist or on error. */ static id_t lu_ent_get_first_id_int(GArray *list, const char *attribute) { GValueArray *vals; vals = lu_ent_get_int(list, attribute); if (vals == NULL) return LU_VALUE_INVALID_ID; return lu_value_get_id(g_value_array_get_nth(vals, 0)); } static gboolean lu_ent_has_int(GArray *list, const char *attribute) { g_return_val_if_fail(list != NULL, FALSE); g_return_val_if_fail(attribute != NULL, FALSE); g_return_val_if_fail(strlen(attribute) > 0, FALSE); return (lu_ent_get_int(list, attribute) != NULL) ? TRUE : FALSE; } static void lu_ent_clear_int(GArray *list, const char *attribute) { int i; struct lu_attribute *attr = NULL; GQuark aquark; g_return_if_fail(list != NULL); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); aquark = quark_from_attribute(attribute); for (i = list->len - 1; i >= 0; i--) { attr = &g_array_index(list, struct lu_attribute, i); if (attr->name == aquark) break; } if (i >= 0) { g_value_array_free(attr->values); attr->values = NULL; g_array_remove_index(list, i); } } /* Delete all existing values of ATTR in LIST and return a GValueArray to which new values should be appended. */ static GValueArray * lu_ent_set_prepare(GArray *list, const char *attr) { GValueArray *dest; dest = lu_ent_get_int(list, attr); if (dest == NULL) { struct lu_attribute newattr; memset(&newattr, 0, sizeof(newattr)); newattr.name = quark_from_attribute(attr); newattr.values = g_value_array_new(0); dest = newattr.values; g_array_append_val(list, newattr); } while (dest->n_values > 0) g_value_array_remove(dest, dest->n_values - 1); return dest; } static void lu_ent_set_int(GArray *list, const char *attr, const GValueArray *values) { GValueArray *dest, *copy; g_return_if_fail(list != NULL); g_return_if_fail(attr != NULL); g_return_if_fail(strlen(attr) > 0); if (values->n_values == 0) { lu_ent_clear_int(list, attr); return; } dest = lu_ent_set_prepare(list, attr); copy = g_value_array_copy(values); lu_util_append_values(dest, copy); g_value_array_free(copy); } /* Replace current value of ATTR in LIST with a single string VALUE */ static void lu_ent_set_string_int(GArray *list, const char *attr, const char *value) { GValueArray *dest; GValue v; g_return_if_fail(list != NULL); g_return_if_fail(attr != NULL); g_return_if_fail(strlen(attr) > 0); g_return_if_fail(value != NULL); dest = lu_ent_set_prepare(list, attr); memset(&v, 0, sizeof(v)); g_value_init(&v, G_TYPE_STRING); g_value_set_string(&v, value); g_value_array_append(dest, &v); g_value_unset(&v); } /* Replace current value of ATTR in LIST with a single id_t VALUE */ static void lu_ent_set_id_int(GArray *list, const char *attr, id_t value) { GValueArray *dest; GValue v; g_return_if_fail(list != NULL); g_return_if_fail(attr != NULL); g_return_if_fail(strlen(attr) > 0); g_return_if_fail(value != LU_VALUE_INVALID_ID); dest = lu_ent_set_prepare(list, attr); memset(&v, 0, sizeof(v)); lu_value_init_set_id(&v, value); g_value_array_append(dest, &v); g_value_unset(&v); } /* Replace current value of ATTR in LIST with a single long VALUE */ static void lu_ent_set_long_int(GArray *list, const char *attr, long value) { GValueArray *dest; GValue v; g_return_if_fail(list != NULL); g_return_if_fail(attr != NULL); g_return_if_fail(strlen(attr) > 0); dest = lu_ent_set_prepare(list, attr); memset(&v, 0, sizeof(v)); g_value_init(&v, G_TYPE_LONG); g_value_set_long(&v, value); g_value_array_append(dest, &v); g_value_unset(&v); } static void lu_ent_add_int(GArray *list, const char *attr, const GValue *value) { GValueArray *dest; size_t i; g_return_if_fail(list != NULL); g_return_if_fail(value != NULL); g_return_if_fail(attr != NULL); g_return_if_fail(strlen(attr) > 0); dest = lu_ent_get_int(list, attr); if (dest == NULL) { struct lu_attribute newattr; memset(&newattr, 0, sizeof(newattr)); newattr.name = quark_from_attribute(attr); newattr.values = g_value_array_new(1); dest = newattr.values; g_array_append_val(list, newattr); } for (i = 0; i < dest->n_values; i++) { GValue *current; current = g_value_array_get_nth(dest, i); if (G_VALUE_TYPE(value) == G_VALUE_TYPE(current) && lu_values_equal(value, current)) break; } if (i >= dest->n_values) g_value_array_append(dest, value); } static void lu_ent_clear_all_int(GArray *list) { clear_attribute_list(list); } static void lu_ent_del_int(GArray *list, const char *attr, const GValue *value) { GValueArray *dest; size_t i; g_return_if_fail(list != NULL); g_return_if_fail(value != NULL); g_return_if_fail(attr != NULL); g_return_if_fail(strlen(attr) > 0); dest = lu_ent_get_int(list, attr); if (dest != NULL) { for (i = 0; i < dest->n_values; i++) { GValue *tvalue; tvalue = g_value_array_get_nth(dest, i); if (G_VALUE_TYPE(value) == G_VALUE_TYPE(tvalue) && lu_values_equal(value, tvalue)) break; } if (i < dest->n_values) { g_value_array_remove(dest, i); if (dest->n_values == 0) lu_ent_clear_int(list, attr); } } } static GList * lu_ent_get_attributes_int(GArray *list) { size_t i; GList *ret = NULL; g_return_val_if_fail(list != NULL, NULL); for (i = 0; i < list->len; i++) { struct lu_attribute *attr; attr = &g_array_index(list, struct lu_attribute, i); ret = g_list_prepend(ret, (char*)g_quark_to_string(attr->name)); } return g_list_reverse(ret); } /** * lu_ent_get: * @ent: An entity * @attribute: Attribute name * * Returns values associated with a pending attribute in a struct #lu_ent. * * Returns: a #GValueArray of values, valid at least until they are modified or * deleted. The array is never empty and it should not be freed by the caller. * Returns %NULL if the attribute is not present at all or on error. */ GValueArray * lu_ent_get(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, NULL); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, NULL); g_return_val_if_fail(attribute != NULL, NULL); g_return_val_if_fail(strlen(attribute) > 0, NULL); return lu_ent_get_int(ent->pending, attribute); } /** * lu_ent_get_current: * @ent: An entity * @attribute: Attribute name * * Returns values associated with a current attribute in a struct #lu_ent. * * Returns: a #GValueArray of values, valid at least until they are modified or * deleted. The array is never empty and it should not be freed by the caller. * Returns %NULL if the attribute is not present at all or on error. */ GValueArray * lu_ent_get_current(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, NULL); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, NULL); g_return_val_if_fail(attribute != NULL, NULL); g_return_val_if_fail(strlen(attribute) > 0, NULL); return lu_ent_get_int(ent->current, attribute); } /** * lu_ent_get_first_string: * @ent: An entity * @attribute: Attribute name * * Returns the first string associated with a pending attribute in a struct * #lu_ent. * * Returns: a string pointer valid at least the value is modified or deleted if * the attribute is present and the first value is a string. Returns %NULL if * the attribute is not present, the first value is not a string, or on error. */ const char * lu_ent_get_first_string(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, NULL); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, NULL); g_return_val_if_fail(attribute != NULL, NULL); g_return_val_if_fail(strlen(attribute) > 0, NULL); return lu_ent_get_first_string_int(ent->pending, attribute); } /** * lu_ent_get_first_string_current: * @ent: An entity * @attribute: Attribute name * * Returns the first string associated with a current attribute in a struct * #lu_ent. * * Returns: a string pointer valid at least the value is modified or deleted if * the attribute is present and the first value is a string. Returns %NULL if * the attribute is not present, the first value is not a string, or on error. */ const char * lu_ent_get_first_string_current(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, NULL); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, NULL); g_return_val_if_fail(attribute != NULL, NULL); g_return_val_if_fail(strlen(attribute) > 0, NULL); return lu_ent_get_first_string_int(ent->current, attribute); } /** * lu_ent_get_first_value_strdup: * @ent: An entity * @attribute: Attribute name * * Returns a string representation (as if by lu_value_strdup()) of the first * value associated with a pending attribute in a struct #lu_ent. * * Returns: a string, should be freed by g_free() if the attribute is present. * Returns %NULL if the attribute is not present or on error. */ char * lu_ent_get_first_value_strdup(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, NULL); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, NULL); g_return_val_if_fail(attribute != NULL, NULL); g_return_val_if_fail(strlen(attribute) > 0, NULL); return lu_ent_get_first_value_strdup_int(ent->pending, attribute); } /** * lu_ent_get_first_value_strdup_current: * @ent: An entity * @attribute: Attribute name * * Returns a string representation (as if by lu_value_strdup()) of the first * value associated with a current attribute in a struct #lu_ent. * * Returns: a string, should be freed by g_free() if the attribute is present. * Returns %NULL if the attribute is not present or on error. */ char * lu_ent_get_first_value_strdup_current(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, NULL); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, NULL); g_return_val_if_fail(attribute != NULL, NULL); g_return_val_if_fail(strlen(attribute) > 0, NULL); return lu_ent_get_first_value_strdup_int(ent->current, attribute); } /** * lu_ent_get_first_id: * @ent: An entity * @attribute: Attribute name * * Returns the first #id_t value associated with a pending attribute in a struct * #lu_ent. * * Returns: ID value the attribute is present and can be converted into #id_t. * Returns %LU_VALUE_INVALID_ID if the attribute is not present, the first * value cannot be converted, or on error. */ id_t lu_ent_get_first_id(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, LU_VALUE_INVALID_ID); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, LU_VALUE_INVALID_ID); g_return_val_if_fail(attribute != NULL, LU_VALUE_INVALID_ID); g_return_val_if_fail(strlen(attribute) > 0, LU_VALUE_INVALID_ID); return lu_ent_get_first_id_int(ent->pending, attribute); } /** * lu_ent_get_first_id_current: * @ent: An entity * @attribute: Attribute name * * Returns the first #id_t value associated with a current attribute in a struct * #lu_ent. * * Returns: ID value the attribute is present and can be converted into #id_t. * Returns %LU_VALUE_INVALID_ID if the attribute is not present, the first * value cannot be converted, or on error. */ id_t lu_ent_get_first_id_current(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, LU_VALUE_INVALID_ID); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, LU_VALUE_INVALID_ID); g_return_val_if_fail(attribute != NULL, LU_VALUE_INVALID_ID); g_return_val_if_fail(strlen(attribute) > 0, LU_VALUE_INVALID_ID); return lu_ent_get_first_id_int(ent->current, attribute); } /** * lu_ent_has: * @ent: An entity * @attribute: Attribute name * * Checks if a struct #lu_ent has at least one pending attribute @attribute. * * Returns: %TRUE if @attribute has a value in @ent. */ gboolean lu_ent_has(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, FALSE); g_return_val_if_fail(attribute != NULL, FALSE); g_return_val_if_fail(strlen(attribute) > 0, FALSE); return lu_ent_has_int(ent->pending, attribute); } /** * lu_ent_has_current: * @ent: An entity * @attribute: Attribute name * * Checks if a struct #lu_ent has at least one current attribute @attribute. * * Returns: %TRUE if @attribute has a value in @ent. */ gboolean lu_ent_has_current(struct lu_ent *ent, const char *attribute) { g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, FALSE); g_return_val_if_fail(attribute != NULL, FALSE); g_return_val_if_fail(strlen(attribute) > 0, FALSE); return lu_ent_has_int(ent->current, attribute); } /** * lu_ent_set: * @ent: An entity * @attr: Attribute name * @values: An array of values * * Replaces all pending attributes @attr in a struct #lu_ent by a copy of * @values. If @values is empty, it removes the pending attribute completely. */ void lu_ent_set(struct lu_ent *ent, const char *attribute, const GValueArray *values) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); lu_ent_set_int(ent->pending, attribute, values); } /** * lu_ent_set_current: * @ent: An entity * @attr: Attribute name * @values: An array of values * * Replaces all current attributes @attr in a struct #lu_ent by a copy of * @values. If @values is empty, it removes the pending attribute completely. */ void lu_ent_set_current(struct lu_ent *ent, const char *attribute, const GValueArray *values) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); lu_ent_set_int(ent->current, attribute, values); } /** * lu_ent_set_string: * @ent: An entity * @attr: Attribute name * @value: A string * * Replaces all pending attributes @attr in a struct #lu_ent by a copy of * string @value. */ void lu_ent_set_string(struct lu_ent *ent, const char *attribute, const char *value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); g_return_if_fail(value != NULL); lu_ent_set_string_int(ent->pending, attribute, value); } /** * lu_ent_set_string_current: * @ent: An entity * @attr: Attribute name * @value: A string * * Replaces all current attributes @attr in a struct #lu_ent by a copy of * string @value. */ void lu_ent_set_string_current(struct lu_ent *ent, const char *attribute, const char *value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); g_return_if_fail(value != NULL); lu_ent_set_string_int(ent->current, attribute, value); } /** * lu_ent_set_id: * @ent: An entity * @attr: Attribute name * @value: An #id_t value * * Replaces all pending attributes @attr in a struct #lu_ent by an id_t @value. */ void lu_ent_set_id(struct lu_ent *ent, const char *attribute, id_t value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); g_return_if_fail(value != LU_VALUE_INVALID_ID); lu_ent_set_id_int(ent->pending, attribute, value); } /** * lu_ent_set_id_current: * @ent: An entity * @attr: Attribute name * @value: An #id_t value * * Replaces all current attributes @attr in a struct #lu_ent by an id_t @value. */ void lu_ent_set_id_current(struct lu_ent *ent, const char *attribute, id_t value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); g_return_if_fail(value != LU_VALUE_INVALID_ID); lu_ent_set_id_int(ent->current, attribute, value); } /** * lu_ent_set_long: * @ent: An entity * @attr: Attribute name * @value: A value * * Replaces all pending attributes @attr in a struct #lu_ent by a long @value. */ void lu_ent_set_long(struct lu_ent *ent, const char *attribute, long value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); lu_ent_set_long_int(ent->pending, attribute, value); } /** * lu_ent_set_long_current: * @ent: An entity * @attr: Attribute name * @value: A value * * Replaces all current attributes @attr in a struct #lu_ent by a long @value. */ void lu_ent_set_long_current(struct lu_ent *ent, const char *attribute, long value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); lu_ent_set_long_int(ent->current, attribute, value); } /** * lu_ent_add: * @ent: An entity * @attr: Attribute name * @value: New attribute value * * Appends @value to pending attribute @attr in a struct #lu_ent if @value is * not yet in the list of @attr values. */ void lu_ent_add(struct lu_ent *ent, const char *attribute, const GValue *value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); lu_ent_add_int(ent->pending, attribute, value); } /** * lu_ent_add_current: * @ent: An entity * @attr: Attribute name * @value: New attribute value * * Appends @value to current attribute @attr in a struct #lu_ent if @value is * not yet in the list of @attr values. */ void lu_ent_add_current(struct lu_ent *ent, const char *attribute, const GValue *value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); lu_ent_add_int(ent->current, attribute, value); } /** * lu_ent_clear: * @ent: An entity * @attr: Attribute name * * Removes all values of pending attribute @attribute from a struct #lu_ent. */ void lu_ent_clear(struct lu_ent *ent, const char *attribute) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); lu_ent_clear_int(ent->pending, attribute); } /** * lu_ent_clear_current: * @ent: An entity * @attr: Attribute name * * Removes all values of current attribute @attribute from a struct #lu_ent. */ void lu_ent_clear_current(struct lu_ent *ent, const char *attribute) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); lu_ent_clear_int(ent->current, attribute); } /** * lu_ent_clear_all: * @ent: an entity * * Removes all pending attributes from a struct #lu_ent. */ void lu_ent_clear_all(struct lu_ent *ent) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); lu_ent_clear_all_int(ent->pending); } /** * lu_ent_clear_all_current: * @ent: an entity * * Removes all current attributes from a struct #lu_ent. */ void lu_ent_clear_all_current(struct lu_ent *ent) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); lu_ent_clear_all_int(ent->current); } /** * lu_ent_del: * @ent: An entity * @attr: Attribute name * @value: Attribute value * * Removes a pending attribute @attr value @value from a struct #lu_ent, if * present. */ void lu_ent_del(struct lu_ent *ent, const char *attribute, const GValue *value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); g_return_if_fail(value != NULL); lu_ent_del_int(ent->pending, attribute, value); } /** * lu_ent_del_current: * @ent: An entity * @attr: Attribute name * @value: Attribute value * * Removes a current attribute @attr value @value from a struct #lu_ent, if * present. */ void lu_ent_del_current(struct lu_ent *ent, const char *attribute, const GValue *value) { g_return_if_fail(ent != NULL); g_return_if_fail(ent->magic == LU_ENT_MAGIC); g_return_if_fail(attribute != NULL); g_return_if_fail(strlen(attribute) > 0); g_return_if_fail(value != NULL); lu_ent_del_int(ent->current, attribute, value); } /** * lu_ent_get_attributes: * @ent: An entity * * Returns a list of all pending attributes in a struct #lu_ent. * * Returns: a #GList of attribute names. The list (but not the strings in the * list) should be freed by the caller. */ GList * lu_ent_get_attributes(struct lu_ent *ent) { g_return_val_if_fail(ent != NULL, NULL); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, NULL); return lu_ent_get_attributes_int(ent->pending); } /** * lu_ent_get_attributes_current: * @ent: An entity * * Returns a list of all current attributes in a struct #lu_ent. * * Returns: a #GList of attribute names. The list (but not the strings in the * list) should be freed by the caller. */ GList * lu_ent_get_attributes_current(struct lu_ent *ent) { g_return_val_if_fail(ent != NULL, NULL); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, NULL); return lu_ent_get_attributes_int(ent->current); } libuser-0.60~dfsg/lib/prompt.c0000644000175000017500000001120712226342567016337 0ustar tzafrirtzafrir/* Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include "user.h" #include "user_private.h" /** * SECTION:prompt * @short_description: Sample prompter functions for use with the libuser * library. * @include: libuser/prompt.h * * prompt.h declares two predefined prompter functions which applications can * use instead of providing their own. These should suffice for most * command-line applications. Authors of graphical applications are encouraged * to supply graphical implementations. */ /** * lu_prompt_console: * @prompts: An array of #lu_prompt structures. * @count: The number of elements in the @prompts array. * @callback_data: Ignored. * @error: The location to store error information in the event of an error. * * Prompts the user using a text console. * * Returns: A #gboolean indicating success or failure. */ gboolean lu_prompt_console(struct lu_prompt *prompts, int count, gpointer callback_data, struct lu_error **error) { int i, is_tty; (void)callback_data; LU_ERROR_CHECK(error); if (count > 0) { g_assert(prompts != NULL); } is_tty = isatty(fileno(stdin)); for (i = 0; i < count; i++) { char buf[LINE_MAX], *p; struct termios otermios, ntermios; if (prompts[i].prompt) { g_print("%s", prompts[i].domain ? dgettext(prompts[i].domain, prompts[i].prompt) : prompts[i].prompt); } if (prompts[i].visible && prompts[i].default_value) { g_print(" [%s]: ", prompts[i].default_value); } else { g_print(": "); } prompts[i].value = NULL; prompts[i].free_value = NULL; if (prompts[i].visible == FALSE && is_tty) { if (tcgetattr(fileno(stdin), &otermios) == -1) { lu_error_new(error, lu_error_terminal, _("error reading terminal attributes")); return FALSE; } ntermios = otermios; ntermios.c_lflag &= ~ECHO; if (tcsetattr(fileno(stdin), TCSADRAIN, &ntermios) == -1) { lu_error_new(error, lu_error_terminal, _("error setting terminal attributes")); return FALSE; } } if (fgets(buf, sizeof(buf), stdin) == NULL) { lu_error_new(error, lu_error_terminal, _("error reading from terminal")); return FALSE; } if (prompts[i].visible == FALSE && is_tty) { if (tcsetattr(fileno(stdin), TCSADRAIN, &otermios) == -1) { lu_error_new(error, lu_error_terminal, _("error setting terminal attributes")); return FALSE; } g_print("\n"); } p = strchr(buf, '\r'); if (p != NULL) *p = '\0'; p = strchr(buf, '\n'); if (p != NULL) *p = '\0'; prompts[i].value = (strlen(buf) > 0) ? g_strdup(buf) : (prompts[i].default_value ? g_strdup(prompts[i].default_value) : g_strdup("")); prompts[i].free_value = (void *) g_free; } return TRUE; } /** * lu_prompt_console_quiet: * @prompts: An array of #lu_prompt structures. * @count: The number of elements in the @prompts array. * @callback_data: Ignored. * @error: The location to store error information in the event of an error. * * Prompts the user using a text console. Unlike lu_prompt_console(), this * function will not prompt users for a question for which the calling * application or module supplies a default, and will simply return the * default. * * Returns: A #gboolean indicating success or failure. */ gboolean lu_prompt_console_quiet(struct lu_prompt * prompts, int count, gpointer callback_data, struct lu_error ** error) { int i; gboolean ret = TRUE; LU_ERROR_CHECK(error); if (count > 0) { g_return_val_if_fail(prompts != NULL, FALSE); } for (i = 0; (i < count) && ret; i++) { if (prompts[i].default_value) { prompts[i].value = g_strdup(prompts[i].default_value); prompts[i].free_value = (void *) g_free; } else { ret = ret && lu_prompt_console(&prompts[i], 1, callback_data, error); } } return ret; } libuser-0.60~dfsg/lib/common.c0000644000175000017500000000747312226342567016320 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2008 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include "internal.h" #include "user_private.h" /* Populate the fields of a user structure with non-name, non-ID data. */ gboolean lu_common_user_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)is_system; (void)error; g_return_val_if_fail(name != NULL, FALSE); if (lu_ent_get(ent, LU_USERPASSWORD) == NULL) lu_ent_set_string(ent, LU_USERPASSWORD, LU_COMMON_DEFAULT_PASSWORD); if (lu_ent_get(ent, LU_SHADOWPASSWORD) == NULL) lu_ent_set_string(ent, LU_SHADOWPASSWORD, LU_COMMON_DEFAULT_PASSWORD); if (lu_ent_get(ent, LU_GECOS) == NULL) lu_ent_set_string(ent, LU_GECOS, name); if (lu_ent_get(ent, LU_HOMEDIRECTORY) == NULL && lu_ent_get(ent, LU_DUBIOUS_HOMEDIRECTORY) == NULL) { char *tmp; tmp = g_strdup_printf("/home/%s", name); if (strcmp(name, ".") == 0 || strcmp(name, "..") == 0) lu_ent_set_string(ent, LU_DUBIOUS_HOMEDIRECTORY, tmp); else lu_ent_set_string(ent, LU_HOMEDIRECTORY, tmp); g_free(tmp); } if (lu_ent_get(ent, LU_LOGINSHELL) == NULL) lu_ent_set_string(ent, LU_LOGINSHELL, LU_COMMON_DEFAULT_SHELL); return TRUE; } /* Populate the fields of a group structure with non-name, non-ID data. */ gboolean lu_common_group_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)is_system; (void)error; g_return_val_if_fail(name != NULL, FALSE); if (lu_ent_get(ent, LU_SHADOWPASSWORD) == NULL) lu_ent_set_string(ent, LU_SHADOWPASSWORD, LU_COMMON_DEFAULT_PASSWORD); return TRUE; } /* Populate the fields of a user structure with non-name, non-ID data. */ gboolean lu_common_suser_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error) { (void)module; (void)is_system; (void)error; g_return_val_if_fail(name != NULL, FALSE); if (lu_ent_get(ent, LU_SHADOWPASSWORD) == NULL) lu_ent_set_string(ent, LU_SHADOWPASSWORD, LU_COMMON_DEFAULT_PASSWORD); if (lu_ent_get(ent, LU_SHADOWLASTCHANGE) == NULL) lu_util_update_shadow_last_change(ent); if (lu_ent_get(ent, LU_SHADOWMIN) == NULL) lu_ent_set_long(ent, LU_SHADOWMIN, 0); if (lu_ent_get(ent, LU_SHADOWMAX) == NULL) lu_ent_set_long(ent, LU_SHADOWMAX, 99999); if (lu_ent_get(ent, LU_SHADOWWARNING) == NULL) lu_ent_set_long(ent, LU_SHADOWWARNING, 7); if (lu_ent_get(ent, LU_SHADOWINACTIVE) == NULL) lu_ent_set_long(ent, LU_SHADOWINACTIVE, -1); if (lu_ent_get(ent, LU_SHADOWEXPIRE) == NULL) lu_ent_set_long(ent, LU_SHADOWEXPIRE, -1); if (lu_ent_get(ent, LU_SHADOWFLAG) == NULL) lu_ent_set_long(ent, LU_SHADOWFLAG, -1); return TRUE; } gboolean lu_common_sgroup_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error) { g_return_val_if_fail(name != NULL, FALSE); return lu_common_group_default(module, name, is_system, ent, error); } libuser-0.60~dfsg/lib/internal.h0000644000175000017500000000426512226342567016645 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2005, 2007 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ /* gtkdoc: private_header */ #ifndef internal_h #define internal_h #include #include struct lu_ent; struct lu_error; struct lu_context; /* An internal attribute checked (and removed) only in lu_user_add(), contains a default LU_HOMEDIRECTORY value that we refuse to use. In that case, LU_HOMEDIRECTORY is not set by default, and exists only if the user has explicitly defined it. */ #define LU_DUBIOUS_HOMEDIRECTORY "__pw_dir_invalid!*/\\:" /* Configuration initialization and shutdown. */ gboolean lu_cfg_init(struct lu_context *context, struct lu_error **error) G_GNUC_INTERNAL; void lu_cfg_done(struct lu_context *context) G_GNUC_INTERNAL; /* Set the sources of record for a given entity structure. */ void lu_ent_add_module(struct lu_ent *ent, const char *source) G_GNUC_INTERNAL; void lu_ent_clear_modules(struct lu_ent *ent) G_GNUC_INTERNAL; gboolean lu_modules_load(struct lu_context *ctx, const char *module_list, GValueArray **names, struct lu_error **error) G_GNUC_INTERNAL; int lu_module_unload(gpointer key, gpointer value, gpointer data) G_GNUC_INTERNAL; gint lu_strcasecmp(gconstpointer v1, gconstpointer v2) G_GNUC_INTERNAL; gint lu_strcmp(gconstpointer v1, gconstpointer v2) G_GNUC_INTERNAL; long lu_util_shadow_current_date_or_minus_1(void) G_GNUC_INTERNAL; /* Only for compatibility with shadow. */ time_t lu_get_date(const char *, const time_t *) G_GNUC_INTERNAL; #endif libuser-0.60~dfsg/lib/user.h0000644000175000017500000001520612226342567016004 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2004 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef libuser_user_h #define libuser_user_h #include #include #include "config.h" #include "entity.h" #include "error.h" #include "fs.h" #include "prompt.h" G_BEGIN_DECLS /** * LU_VALUE_INVALID_ID: * * An #id_t value that matches no valid user or group ID. */ /* (id_t)-1 is used by setreuid() to indicate "not a valid ID", so it should be safe to use for error indication. */ #define LU_VALUE_INVALID_ID ((id_t)-1) /** * lu_context: * * An opaque structure manipulated by the library, containing caller-related * state (to allow several independent callers in a single process). */ struct lu_context; #ifndef LU_DISABLE_DEPRECATED /** * lu_context_t: * * An alias for struct #lu_context. * Deprecated: 0.57.3: Use struct #lu_context directly. */ typedef struct lu_context lu_context_t; #endif /* An enumeration which decides whether we want to modify information about * users or groups. We don't support both simultaneously. */ enum lu_entity_type { lu_invalid, lu_user, lu_group, }; #ifndef __GTK_DOC_IGNORE__ #ifndef LU_DISABLE_DEPRECATED typedef enum lu_entity_type lu_entity_type_t; #endif #endif char *lu_value_strdup(const GValue *value); int lu_values_equal(const GValue *a, const GValue *b); void lu_value_init_set_id(GValue *value, id_t id); id_t lu_value_get_id(const GValue *value); gboolean lu_value_init_set_attr_from_string(GValue *value, const char *attr, const char *string, struct lu_error **error); struct lu_context *lu_start(const char *authname, enum lu_entity_type auth_type, const char *modules, const char *create_modules, lu_prompt_fn *prompter, gpointer callback_data, struct lu_error **error); void lu_end(struct lu_context *context); void lu_set_prompter(struct lu_context *context, lu_prompt_fn *prompter, gpointer callback_data); void lu_get_prompter(struct lu_context *context, lu_prompt_fn ** prompter, gpointer *callback_data); gboolean lu_set_modules(struct lu_context *context, const char *list, struct lu_error **error); const char *lu_get_modules(struct lu_context *context); gboolean lu_uses_elevated_privileges (struct lu_context *context); gboolean lu_user_default(struct lu_context *ctx, const char *name, gboolean system_account, struct lu_ent *ent); gboolean lu_group_default(struct lu_context *ctx, const char *name, gboolean system_account, struct lu_ent *ent); gboolean lu_user_lookup_name(struct lu_context *context, const char *name, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_lookup_name(struct lu_context *context, const char *name, struct lu_ent *ent, struct lu_error **error); gboolean lu_user_lookup_id(struct lu_context *context, uid_t uid, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_lookup_id(struct lu_context *context, gid_t gid, struct lu_ent *ent, struct lu_error **error); gboolean lu_user_add(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_add(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_user_modify(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_modify(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_user_delete(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_delete(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_user_lock(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_lock(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_user_unlock(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_unlock(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_user_unlock_nonempty(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_unlock_nonempty(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_user_islocked(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_islocked(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_user_setpass(struct lu_context *context, struct lu_ent *ent, const char *newpass, gboolean crypted, struct lu_error **error); gboolean lu_group_setpass(struct lu_context *context, struct lu_ent *ent, const char *newpass, gboolean crypted, struct lu_error **error); gboolean lu_user_removepass(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); gboolean lu_group_removepass(struct lu_context *context, struct lu_ent *ent, struct lu_error **error); GValueArray *lu_users_enumerate(struct lu_context *context, const char *pattern, struct lu_error **error); GValueArray *lu_groups_enumerate(struct lu_context *context, const char *pattern, struct lu_error **error); GValueArray *lu_users_enumerate_by_group(struct lu_context *context, const char *group, struct lu_error **error); GValueArray *lu_groups_enumerate_by_user(struct lu_context *context, const char *user, struct lu_error **error); GPtrArray *lu_users_enumerate_full(struct lu_context *context, const char *pattern, struct lu_error **error); GPtrArray *lu_groups_enumerate_full(struct lu_context *context, const char *pattern, struct lu_error **error); GPtrArray *lu_users_enumerate_by_group_full(struct lu_context *context, const char *group, struct lu_error **error); GPtrArray *lu_groups_enumerate_by_user_full(struct lu_context *context, const char *user, struct lu_error **error); G_END_DECLS #endif libuser-0.60~dfsg/lib/config.h0000644000175000017500000000227612226342567016276 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef libuser_config_h #define libuser_config_h #include #include G_BEGIN_DECLS struct lu_context; GList *lu_cfg_read(struct lu_context *context, const char *key, const char *default_value); const char *lu_cfg_read_single(struct lu_context *context, const char *key, const char *default_value); GList *lu_cfg_read_keys(struct lu_context *context, const char *parent_key); G_END_DECLS #endif libuser-0.60~dfsg/lib/entity.h0000644000175000017500000002131612226342567016341 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef libuser_entity_h #define libuser_entity_h #include #include #include #include G_BEGIN_DECLS /** * lu_ent: * * An opaque structure used to hold data about a particular user or group * account. * * Each struct lu_ent contains two sets of attributes: pending and current. * The pending attributes are modified by default, the current attributes are * modified by functions ending with _current. * * Each attribute contains a list of values. The list is never empty; removing * the last entry from the list removes the list completely. */ struct lu_ent; #ifndef LU_DISABLE_DEPRECATED /** * lu_ent_t: * * An alias for struct #lu_ent. * Deprecated: 0.57.3: Use struct #lu_ent directly. */ typedef struct lu_ent lu_ent_t; #endif /* Attributes carried by all user structures. */ /** * LU_USERNAME: * * User name, a %G_TYPE_STRING. */ #define LU_USERNAME "pw_name" /** * LU_USERPASSWORD: * * User password, a %G_TYPE_STRING. If shadow passwords are used, this is the * placeholder password. * * Don't modify passwords by changing this attribute directly, use one of the * specialized functions. */ #define LU_USERPASSWORD "pw_passwd" /** * LU_UIDNUMBER: * * User ID, an #id_t. */ #define LU_UIDNUMBER "pw_uid" /** * LU_GIDNUMBER: * * Group ID, an #id_t. */ #define LU_GIDNUMBER "pw_gid" /** * LU_GECOS: * * Usually user's real name, a %G_TYPE_STRING. Often contains user's real name, * office name, office phone, home phone, separated by commas. */ #define LU_GECOS "pw_gecos" /** * LU_HOMEDIRECTORY: * * User's home directory, a %G_TYPE_STRING. */ #define LU_HOMEDIRECTORY "pw_dir" /** * LU_LOGINSHELL: * * User's login shell, a %G_TYPE_STRING. */ #define LU_LOGINSHELL "pw_shell" /* Attributes carried by group structures. */ /** * LU_GROUPNAME: * * Group name, a %G_TYPE_STRING. */ #define LU_GROUPNAME "gr_name" /** * LU_GROUPPASSWORD: * * Group password, a %G_TYPE_STRING. * * Don't modify passwords by changing this attribute directly, use one of the * specialized functions. */ #define LU_GROUPPASSWORD "gr_passwd" /* #define LU_GIDNUMBER "gr_gid" */ /** * LU_MEMBERNAME: * * Group member names; each member is represented by a separate %G_TYPE_STRING * value. */ #define LU_MEMBERNAME "gr_mem" /** * LU_ADMINISTRATORNAME: * * Group administrator names; each administrator is represented by a separate * %G_TYPE_STRING value. */ #define LU_ADMINISTRATORNAME "gr_adm" /* Attributes carried by shadow user structures. */ /** * LU_SHADOWNAME: * * User name, a %G_TYPE_STRING. Note that %LU_SHADOWNAME is not distinct from * %LU_USERNAME. */ #define LU_SHADOWNAME LU_USERNAME /** * LU_SHADOWPASSWORD: * * User password in the shadow file, a %G_TYPE_STRING. * * Don't modify passwords by changing this attribute directly, use one of the * specialized functions. */ #define LU_SHADOWPASSWORD "sp_pwdp" /** * LU_SHADOWLASTCHANGE: * * The number of days since the epoch to the day when the password was last * changed, a %G_TYPE_LONG. * * May be -1 to indicate that the field exists without a value. This should be * handled the same as if the attribute was missing altogether, and consistently * with shadow(5). */ #define LU_SHADOWLASTCHANGE "sp_lstchg" /** * LU_SHADOWMIN: * * Minimum password lifetime in days before it can be changed, a %G_TYPE_LONG. * * May be -1 to indicate that the field exists without a value. This should be * handled the same as if the attribute was missing altogether, and consistently * with shadow(5). */ #define LU_SHADOWMIN "sp_min" /** * LU_SHADOWMAX: * * Maximum password lifetime in days before it must be changed, a %G_TYPE_LONG. * * May be -1 to indicate that the field exists without a value. This should be * handled the same as if the attribute was missing altogether, and consistently * with shadow(5). */ #define LU_SHADOWMAX "sp_max" /** * LU_SHADOWWARNING: * * Days before the password lifetime expires when the user should start to be * warned, a %G_TYPE_LONG. * * May be -1 to indicate that the field exists without a value. This should be * handled the same as if the attribute was missing altogether, and consistently * with shadow(5). */ #define LU_SHADOWWARNING "sp_warn" /** * LU_SHADOWINACTIVE: * * Days after the password lifetime expires when the user account is disabled * (because it is considered inactive), a %G_TYPE_LONG. -1 to disable inactive * account disabling. */ #define LU_SHADOWINACTIVE "sp_inact" /** * LU_SHADOWEXPIRE: * * The number of days since the epoch to the day when the account expires and * is disabled, a %G_TYPE_LONG. -1 to disable account expiration. */ #define LU_SHADOWEXPIRE "sp_expire" /** * LU_SHADOWFLAG: * * A reserved value "for future use", a %G_TYPE_LONG. In most cases the value * is -1. */ #define LU_SHADOWFLAG "sp_flag" /* Additional fields carried by some structures. If they have them, * it's safe to change them. */ /** * LU_COMMONNAME: * * User's real name, a %G_TYPE_STRING. */ #define LU_COMMONNAME "cn" /** * LU_GIVENNAME: * * User's given name, a %G_TYPE_STRING. */ #define LU_GIVENNAME "givenName" /** * LU_SN: * * User's surname, a %G_TYPE_STRING. */ #define LU_SN "sn" /** * LU_ROOMNUMBER: * * User's room number, a %G_TYPE_STRING. */ #define LU_ROOMNUMBER "roomNumber" /** * LU_TELEPHONENUMBER: * * User's telephone number, a %G_TYPE_STRING. */ #define LU_TELEPHONENUMBER "telephoneNumber" /** * LU_HOMEPHONE: * * User's home telephone number, a %G_TYPE_STRING. */ #define LU_HOMEPHONE "homePhone" /** * LU_EMAIL: * * User's email address, a %G_TYPE_STRING. */ #define LU_EMAIL "mail" struct lu_ent *lu_ent_new(void); void lu_ent_free(struct lu_ent *ent); void lu_ent_copy(struct lu_ent *source, struct lu_ent *dest); void lu_ent_revert(struct lu_ent *ent); void lu_ent_commit(struct lu_ent *ent); GValueArray *lu_ent_get_current(struct lu_ent *ent, const char *attribute); const char *lu_ent_get_first_string_current(struct lu_ent *ent, const char *attribute); char *lu_ent_get_first_value_strdup_current(struct lu_ent *ent, const char *attribute); id_t lu_ent_get_first_id_current(struct lu_ent *ent, const char *attribute); gboolean lu_ent_has_current(struct lu_ent *ent, const char *attribute); void lu_ent_set_current(struct lu_ent *ent, const char *attr, const GValueArray *values); void lu_ent_set_string_current(struct lu_ent *ent, const char *attr, const char *value); void lu_ent_set_id_current(struct lu_ent *ent, const char *attr, id_t value); void lu_ent_set_long_current(struct lu_ent *ent, const char *attr, long int value); void lu_ent_add_current(struct lu_ent *ent, const char *attr, const GValue *value); void lu_ent_clear_current(struct lu_ent *ent, const char *attr); void lu_ent_clear_all_current(struct lu_ent *ent); void lu_ent_del_current(struct lu_ent *ent, const char *attr, const GValue *value); GList *lu_ent_get_attributes_current(struct lu_ent *ent); GValueArray *lu_ent_get(struct lu_ent *ent, const char *attribute); const char *lu_ent_get_first_string(struct lu_ent *ent, const char *attribute); char *lu_ent_get_first_value_strdup(struct lu_ent *ent, const char *attribute); id_t lu_ent_get_first_id(struct lu_ent *ent, const char *attribute); gboolean lu_ent_has(struct lu_ent *ent, const char *attribute); void lu_ent_set(struct lu_ent *ent, const char *attr, const GValueArray *values); void lu_ent_set_string(struct lu_ent *ent, const char *attr, const char *value); void lu_ent_set_id(struct lu_ent *ent, const char *attr, id_t value); void lu_ent_set_long(struct lu_ent *ent, const char *attr, long int value); void lu_ent_add(struct lu_ent *ent, const char *attr, const GValue *value); void lu_ent_clear(struct lu_ent *ent, const char *attr); void lu_ent_clear_all(struct lu_ent *ent); void lu_ent_del(struct lu_ent *ent, const char *attr, const GValue *value); GList *lu_ent_get_attributes(struct lu_ent *ent); void lu_ent_dump(struct lu_ent *ent, FILE *fp); G_END_DECLS #endif libuser-0.60~dfsg/lib/scache.c0000644000175000017500000000413012226342567016241 0ustar tzafrirtzafrir/* Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include "user_private.h" #include "internal.h" static char * lu_string_cache_cache(struct lu_string_cache *cache, const char *string) { char *ret; if (string == NULL) { return NULL; } if ((ret = g_tree_lookup(cache->tree, (char *) string)) == NULL) { ret = g_strdup(string); g_tree_insert(cache->tree, ret, ret); } return ret; } static int get_keys(gpointer key, gpointer value, gpointer data) { GList **list = data; (void)value; if (key) { *list = g_list_append(*list, key); } return 0; } static void lu_string_cache_free(struct lu_string_cache *cache) { GList *list = NULL, *i; g_return_if_fail(cache != NULL); g_tree_foreach(cache->tree, get_keys, &list); g_tree_destroy(cache->tree); for (i = list; i; i = g_list_next(i)) { char *tmp; if ((tmp = i->data) != NULL) { memset(tmp, '\0', strlen(tmp)); g_free(tmp); } } g_list_free(list); memset(cache, 0, sizeof(struct lu_string_cache)); g_free(cache); } struct lu_string_cache * lu_string_cache_new(gboolean case_sensitive) { struct lu_string_cache *cache; cache = g_malloc0(sizeof(struct lu_string_cache)); if (case_sensitive) { cache->tree = g_tree_new(lu_strcmp); } else { cache->tree = g_tree_new(lu_strcasecmp); } cache->cache = lu_string_cache_cache; cache->free = lu_string_cache_free; return cache; } libuser-0.60~dfsg/lib/error.c0000644000175000017500000001463312226342567016155 0ustar tzafrirtzafrir/* Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include "user.h" #include "user_private.h" /** * SECTION:error * @short_description: Functions for allocating and manipulating #lu_error * structures. * @include: libuser/error.h * * error.h includes declarations for allocating and * manipulating #lu_error structures. These structures hold error and status * information passed between libuser, its modules, and applications. * * A struct #lu_error contains an error code and a human-readable, possibly * translated error string. The error string uses the encoding specified by * the %LC_CTYPE locale category. */ /** * lu_strerror: * @error: An error * * Converts an #lu_error structure to a string describing the error. If the * @error->string is %NULL, returns a text representation of @error->code. * * Returns: An error string valid at least until @error is freed. */ const char * lu_strerror(struct lu_error *error) { if (error != NULL) { if (error->string != NULL) { return error->string; } switch (error->code) { case lu_success: return _("success"); case lu_warning_config_disabled: return _("module disabled by configuration"); case lu_error_generic: return _("generic error"); case lu_error_privilege: return _("not enough privileges"); case lu_error_access_denied: return _("access denied"); case lu_error_name_bad: return _("bad user/group name"); case lu_error_id_bad: return _("bad user/group id"); case lu_error_name_used: return _("user/group name in use"); case lu_error_id_used: return _("user/group id in use"); case lu_error_terminal: return _("error manipulating terminal attributes"); case lu_error_open: return _("error opening file"); case lu_error_lock: return _("error locking file"); case lu_error_stat: return _("error statting file"); case lu_error_read: return _("error reading file"); case lu_error_write: return _("error writing to file"); case lu_error_search: return _("data not found in file"); case lu_error_init: return _("internal initialization error"); case lu_error_module_load: return _("error loading module"); case lu_error_module_sym: return _("error resolving symbol in module"); case lu_error_module_version: return _("library/module version mismatch"); case lu_error_unlock_empty: return _("unlocking would make the password " "field empty"); case lu_error_invalid_attribute_value: return _("invalid attribute value"); case lu_error_invalid_module_combination: return _("invalid module combination"); case lu_error_homedir_not_owned: return _("user's home directory not owned by " "them"); default: break; } } return _("unknown error"); } /** * lu_error_is_success: * @status: An error code * * Check if the error code held by an error structure is a success code. * * Returns: a #gboolean indicating whether or not the error is a success code. */ gboolean lu_error_is_success(enum lu_status status) { switch (status) { case lu_success: return TRUE; default: return FALSE; } } /** * lu_error_is_warning: * @status: An error code * * Check if the error code held by an error structure is a warning code. * * Returns: a #gboolean indicating whether or not the error is a warning code. */ gboolean lu_error_is_warning(enum lu_status status) { switch (status) { case lu_warning_config_disabled: return TRUE; default: return FALSE; } } /** * lu_error_is_error: * @status: An error code * * Check if the error code held by an error structure is an error code. * * Returns: a #gboolean indicating whether or not the error is an error code. */ gboolean lu_error_is_error(enum lu_status status) { switch (status) { case lu_error_generic: case lu_error_privilege: case lu_error_access_denied: case lu_error_name_bad: case lu_error_id_bad: case lu_error_name_used: case lu_error_id_used: case lu_error_terminal: case lu_error_open: case lu_error_lock: case lu_error_stat: case lu_error_read: case lu_error_write: case lu_error_search: case lu_error_init: case lu_error_module_load: case lu_error_module_sym: case lu_error_module_version: case lu_error_unlock_empty: case lu_error_invalid_attribute_value: case lu_error_invalid_module_combination: case lu_error_homedir_not_owned: return TRUE; default: return FALSE; } } /** * lu_error_new: * @error: A pointer to a struct #lu_error * which will hold the newly-created * error structure. It must point to #NULL before calling this function. * @code: An error code * @fmt: Format string describing the error. If #NULL, a default string is used. * @...: Arguments for @fmt, if necessary * * Creates a new #lu_error structure. */ void lu_error_new(struct lu_error **error, enum lu_status code, const char *fmt, ...) { if (error != NULL) { struct lu_error *ret; g_assert(*error == NULL); ret = g_malloc0(sizeof(struct lu_error)); ret->code = code; if (fmt != NULL) { va_list args; va_start(args, fmt); ret->string = g_strdup_vprintf(fmt, args); va_end(args); } else ret->string = g_strdup(lu_strerror(ret)); *error = ret; } } /** * lu_error_free: * @error: A pointer to a pointer to the structure to be freed. The pointer is * set to %NULL after the error is freed. * * Frees an #lu_error structure. */ void lu_error_free(struct lu_error **error) { if (error != NULL) { g_free((*error)->string); memset(*error, 0, sizeof(**error)); g_free(*error); *error = NULL; } } libuser-0.60~dfsg/lib/user.c0000644000175000017500000017701612226342567016007 0ustar tzafrirtzafrir/* Copyright (C) 2000-2002, 2004, 2005, 2006, 2007 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include "user_private.h" #include "internal.h" /** * SECTION:user * @short_description: Functions for initializing the library, looking up * information, and making changes to the system information store. * @include: libuser/user.h * * user.h contains declarations for functions which start * up and shut down the libuser library, and for functions which perform lookup * queries and modifications of the system information store. */ #define DEFAULT_ID 500 enum lu_dispatch_id { uses_elevated_privileges = 0x0003, user_lookup_name, user_lookup_id, user_default, user_add_prep, user_add, user_mod, user_del, user_lock, user_unlock, user_unlock_nonempty, user_is_locked, user_setpass, user_removepass, users_enumerate, users_enumerate_by_group, users_enumerate_full, group_lookup_name, group_lookup_id, group_default, group_add_prep, group_add, group_mod, group_del, group_lock, group_unlock, group_unlock_nonempty, group_is_locked, group_setpass, group_removepass, groups_enumerate, groups_enumerate_full, groups_enumerate_by_user, }; /** * lu_start: * @authname: Suggested client name to use when connecting to servers, or %NULL * @auth_type: Whether auth_name is a user or a group * @modules: A list of modules to use for queries (separated by whitespace or * commas), or %NULL to use modules specified in the config file * @create_modules: A list of modules to use for entity creation (separated by * whitespace or commas), or %NULL to use modules specified in the config file * @prompter: A function to use for getting information from the user * @callback_data: Data for @prompter * @error: Filled with a #lu_error if an error occurs * * Initializes the libuser library. * * Returns: a context which should be freed by lu_end() on success, %NULL on * failure */ struct lu_context * lu_start(const char *auth_name, enum lu_entity_type auth_type, const char *modules, const char *create_modules, lu_prompt_fn *prompter, gpointer prompter_data, struct lu_error **error) { struct lu_context *ctx; LU_ERROR_CHECK(error); /* Register our message domain with gettext. */ bindtextdomain(PACKAGE, LOCALEDIR); /* Initialize the gtype system if it's not already initialized. */ g_type_init(); /* Allocate space for the context. */ ctx = g_malloc0(sizeof(struct lu_context)); ctx->scache = lu_string_cache_new(TRUE); /* Create a configuration structure. */ if (lu_cfg_init(ctx, error) == FALSE) /* If there's an error, lu_cfg_init() sets it. */ goto err_scache; ctx->auth_name = ctx->scache->cache(ctx->scache, auth_name); ctx->auth_type = auth_type; ctx->prompter = prompter; ctx->prompter_data = prompter_data; ctx->modules = g_tree_new(lu_strcasecmp); /* Read the list of default modules, if the application didn't specify * any that we should be using. */ if (modules == NULL) { modules = lu_cfg_read_single(ctx, "defaults/modules", "files shadow"); } if (create_modules == NULL) { create_modules = lu_cfg_read_single(ctx, "defaults/create_modules", "files shadow"); } /* Load the modules. */ if (!lu_modules_load(ctx, modules, &ctx->module_names, error)) goto err_modules; /* lu_module_load sets errors */ if (!lu_modules_load(ctx, create_modules, &ctx->create_module_names, error)) goto err_module_names; /* lu_module_load sets errors */ return ctx; err_module_names: g_value_array_free(ctx->module_names); g_tree_foreach(ctx->modules, lu_module_unload, NULL); err_modules: g_tree_destroy(ctx->modules); err_scache: ctx->scache->free(ctx->scache); g_free(ctx); return NULL; } /** * lu_end: * @context: a context * * Destroys a libuser library context */ void lu_end(struct lu_context *context) { g_assert(context != NULL); g_tree_foreach(context->modules, lu_module_unload, NULL); g_tree_destroy(context->modules); g_value_array_free(context->create_module_names); g_value_array_free(context->module_names); lu_cfg_done(context); context->scache->free(context->scache); memset(context, 0, sizeof(struct lu_context)); g_free(context); } static const char * extract_name(struct lu_ent *ent) { const char *name; g_return_val_if_fail(ent != NULL, NULL); g_return_val_if_fail((ent->type == lu_user) || (ent->type == lu_group), NULL); name = lu_ent_get_first_string(ent, ent->type == lu_user ? LU_USERNAME : LU_GROUPNAME); if (name == NULL) return NULL; return ent->cache->cache(ent->cache, name); } static gboolean lu_name_allowed(struct lu_ent *ent, struct lu_error **error) { const char *sdata; size_t len, i; g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail((ent->type == lu_user) || (ent->type == lu_group), FALSE); sdata = extract_name(ent); if (sdata == NULL) { lu_error_new(error, lu_error_name_bad, _("name is not set")); return FALSE; } len = strlen(sdata); if (len == 0) { lu_error_new(error, lu_error_name_bad, _("name is too short")); return FALSE; } if (len > UT_NAMESIZE - 1) { lu_error_new(error, lu_error_name_bad, _("name is too long (%zu > %d)"), len, UT_NAMESIZE - 1); return FALSE; } for (i = 0; sdata[i] != '\0'; i++) { if ((sdata[i] & 0x80) != 0) { lu_error_new(error, lu_error_name_bad, _("name contains non-ASCII characters")); return FALSE; } } for (i = 0; sdata[i] != '\0'; i++) { if ((sdata[i] == 0x7f) || (sdata[i] < 0x20)) { lu_error_new(error, lu_error_name_bad, _("name contains control characters")); return FALSE; } } for (i = 0; sdata[i] != '\0'; i++) { if (g_ascii_isspace(sdata[i])) { lu_error_new(error, lu_error_name_bad, _("name contains whitespace")); return FALSE; } } /* SUSv3 (3.426) says "To be portable across ..., the value is composed of characters from the portable filename character set. The hyphen should not be used as the first character of a portable user name. Note: "the value _is_ composed", not "should be" composed. We don't have to allow more. */ if (sdata[0] == '-') { lu_error_new(error, lu_error_name_bad, _("name starts with a hyphen")); return FALSE; } for (i = 0; sdata[i] != '\0'; i++) { if (!((sdata[i] >= 'a' && sdata[i] <= 'z') || (sdata[i] >= 'A' && sdata[i] <= 'Z') || (sdata[i] >= '0' && sdata[i] <= '9') || sdata[i] == '.' || sdata[i] == '-' || sdata[i] == '_' /* Allow trailing $ for samba machine accounts. */ || (sdata[i] == '$' && sdata[i + 1] == '\0'))) { lu_error_new(error, lu_error_name_bad, _("name contains invalid char `%c'"), sdata[i]); return FALSE; } } return TRUE; } static id_t extract_id(struct lu_ent *ent) { g_return_val_if_fail(ent != NULL, LU_VALUE_INVALID_ID); g_return_val_if_fail((ent->type == lu_user) || (ent->type == lu_group), LU_VALUE_INVALID_ID); return lu_ent_get_first_id(ent, ent->type == lu_user ? LU_UIDNUMBER : LU_GIDNUMBER); } static uid_t convert_user_name_to_id(struct lu_context *context, const char *sdata, struct lu_error **error) { struct lu_ent *ent; uid_t ret = LU_VALUE_INVALID_ID; char buf[LINE_MAX * 4]; struct passwd *err, passwd; if ((getpwnam_r(sdata, &passwd, buf, sizeof(buf), &err) == 0) && (err == &passwd)) return passwd.pw_uid; ent = lu_ent_new(); if (lu_user_lookup_name(context, sdata, ent, error) == TRUE) { ret = extract_id(ent); if (ret == LU_VALUE_INVALID_ID) lu_error_new(error, lu_error_generic, _("user %s has no UID"), sdata); } else if (*error == NULL) lu_error_new(error, lu_error_generic, _("user %s not found"), sdata); lu_ent_free(ent); return ret; } static gid_t convert_group_name_to_id(struct lu_context *context, const char *sdata, struct lu_error **error) { struct lu_ent *ent; gid_t ret = LU_VALUE_INVALID_ID; char buf[LINE_MAX * 4]; struct group *err, group; if ((getgrnam_r(sdata, &group, buf, sizeof(buf), &err) == 0) && (err == &group)) return group.gr_gid; ent = lu_ent_new(); if (lu_group_lookup_name(context, sdata, ent, error) == TRUE) { ret = extract_id(ent); if (ret == LU_VALUE_INVALID_ID) lu_error_new(error, lu_error_generic, _("group %s has no GID"), sdata); } else if (*error == NULL) lu_error_new(error, lu_error_generic, _("group %s not found"), sdata); lu_ent_free(ent); return ret; } static gboolean ent_has_name_and_id(struct lu_ent *ent, struct lu_error **error) { const char *name; id_t id; g_return_val_if_fail(ent->type == lu_user || ent->type == lu_group, FALSE); name = extract_name(ent); id = extract_id(ent); if (name != NULL && id != LU_VALUE_INVALID_ID) return TRUE; if (id != LU_VALUE_INVALID_ID) lu_error_new(error, lu_error_generic, ent->type == lu_user ? _("user %jd has no name") : _("group %jd has no name"), (intmax_t)id); else if (name != NULL) lu_error_new(error, lu_error_generic, ent->type == lu_user ? _("user %s has no UID") : _("group %s has no GID"), name); else lu_error_new(error, lu_error_generic, ent->type == lu_user ? _("user has neither a name nor an UID") : _("group has neither a name nor a GID")); return FALSE; } static gboolean lu_refresh_int(struct lu_context *context, struct lu_ent *entity, struct lu_error **error); static gboolean lu_refresh_user(struct lu_context *context, struct lu_ent *entity, struct lu_error **error) { g_return_val_if_fail(entity->type == lu_user, FALSE); return lu_refresh_int(context, entity, error); } static gboolean lu_refresh_group(struct lu_context *context, struct lu_ent *entity, struct lu_error **error) { g_return_val_if_fail(entity->type == lu_group, FALSE); return lu_refresh_int(context, entity, error); } static gboolean run_single(struct lu_context *context, struct lu_module *module, enum lu_dispatch_id id, const char *sdata, id_t ldata, struct lu_ent *entity, gpointer *ret, struct lu_error **error) { GPtrArray *ptrs; size_t i; g_assert(context != NULL); g_assert(module != NULL); LU_ERROR_CHECK(error); switch (id) { case user_lookup_name: g_return_val_if_fail(sdata != NULL, FALSE); g_return_val_if_fail(strlen(sdata) > 0, FALSE); g_return_val_if_fail(entity != NULL, FALSE); if (module->user_lookup_name(module, sdata, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case user_lookup_id: g_return_val_if_fail(entity != NULL, FALSE); if (module->user_lookup_id(module, ldata, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case user_default: g_return_val_if_fail(entity != NULL, FALSE); if (module->user_default(module, sdata, ldata, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case user_add: g_return_val_if_fail(entity != NULL, FALSE); if (module->user_add(module, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case user_add_prep: g_return_val_if_fail(entity != NULL, FALSE); if (lu_name_allowed(entity, error) == FALSE) { return FALSE; } else if (module->user_add_prep(module, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case user_mod: g_return_val_if_fail(entity != NULL, FALSE); if (lu_name_allowed(entity, error) == FALSE) return FALSE; return module->user_mod(module, entity, error); case user_del: g_return_val_if_fail(entity != NULL, FALSE); return module->user_del(module, entity, error); case user_lock: g_return_val_if_fail(entity != NULL, FALSE); return module->user_lock(module, entity, error); case user_unlock: g_return_val_if_fail(entity != NULL, FALSE); return module->user_unlock(module, entity, error); case user_unlock_nonempty: g_return_val_if_fail(entity != NULL, FALSE); return module->user_unlock_nonempty(module, entity, error); case user_is_locked: g_return_val_if_fail(entity != NULL, FALSE); return module->user_is_locked(module, entity, error); case user_setpass: g_return_val_if_fail(entity != NULL, FALSE); g_return_val_if_fail(sdata != NULL, FALSE); return module->user_setpass(module, entity, sdata, error); case user_removepass: g_return_val_if_fail(entity != NULL, FALSE); return module->user_removepass(module, entity, error); case users_enumerate: g_return_val_if_fail(ret != NULL, FALSE); *ret = module->users_enumerate(module, sdata, error); return TRUE; case users_enumerate_by_group: g_return_val_if_fail(sdata != NULL, FALSE); g_return_val_if_fail(strlen(sdata) > 0, FALSE); g_return_val_if_fail(ret != NULL, FALSE); *ret = module->users_enumerate_by_group(module, sdata, ldata, error); return TRUE; case users_enumerate_full: g_return_val_if_fail(ret != NULL, FALSE); *ret = module->users_enumerate_full(module, sdata, error); if (*ret) { ptrs = *ret; for (i = 0; i < ptrs->len; i++) { lu_ent_add_module(g_ptr_array_index(ptrs, i), module->name); } } return TRUE; case group_lookup_name: g_return_val_if_fail(sdata != NULL, FALSE); g_return_val_if_fail(strlen(sdata) > 0, FALSE); g_return_val_if_fail(entity != NULL, FALSE); if (module->group_lookup_name(module, sdata, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case group_lookup_id: g_return_val_if_fail(entity != NULL, FALSE); if (module->group_lookup_id(module, ldata, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case group_default: g_return_val_if_fail(entity != NULL, FALSE); if (module->group_default(module, sdata, ldata, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case group_add: g_return_val_if_fail(entity != NULL, FALSE); if (module->group_add(module, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case group_add_prep: g_return_val_if_fail(entity != NULL, FALSE); if (lu_name_allowed(entity, error) == FALSE) { return FALSE; } else if (module->group_add_prep(module, entity, error)) { lu_ent_add_module(entity, module->name); return TRUE; } return FALSE; case group_mod: g_return_val_if_fail(entity != NULL, FALSE); if (lu_name_allowed(entity, error) == FALSE) return FALSE; return module->group_mod(module, entity, error); case group_del: g_return_val_if_fail(entity != NULL, FALSE); return module->group_del(module, entity, error); case group_lock: g_return_val_if_fail(entity != NULL, FALSE); return module->group_lock(module, entity, error); case group_unlock: g_return_val_if_fail(entity != NULL, FALSE); return module->group_unlock(module, entity, error); case group_unlock_nonempty: g_return_val_if_fail(entity != NULL, FALSE); return module->group_unlock_nonempty(module, entity, error); case group_is_locked: g_return_val_if_fail(entity != NULL, FALSE); return module->group_is_locked(module, entity, error); case group_setpass: g_return_val_if_fail(entity != NULL, FALSE); g_return_val_if_fail(sdata != NULL, FALSE); return module->group_setpass(module, entity, sdata, error); case group_removepass: g_return_val_if_fail(entity != NULL, FALSE); return module->group_removepass(module, entity, error); case groups_enumerate: g_return_val_if_fail(ret != NULL, FALSE); *ret = module->groups_enumerate(module, sdata, error); return TRUE; case groups_enumerate_by_user: g_return_val_if_fail(sdata != NULL, FALSE); g_return_val_if_fail(strlen(sdata) > 0, FALSE); g_return_val_if_fail(ret != NULL, FALSE); *ret = module->groups_enumerate_by_user(module, sdata, ldata, error); return TRUE; case groups_enumerate_full: g_return_val_if_fail(ret != NULL, FALSE); *ret = module->groups_enumerate_full(module, sdata, error); if (*ret) { ptrs = *ret; for (i = 0; i < ptrs->len; i++) { lu_ent_add_module(g_ptr_array_index(ptrs, i), module->name); } } return TRUE; case uses_elevated_privileges: return module->uses_elevated_privileges(module); default: g_assert_not_reached(); /* not reached */ } g_assert_not_reached(); } static gboolean logic_and(gboolean a, gboolean b) { return a && b; } static gboolean logic_or(gboolean a, gboolean b) { return a || b; } static void remove_duplicate_values(GValueArray *array) { size_t i; for (i = 0; i < array->n_values; i++) { size_t j; GValue *ivalue; ivalue = g_value_array_get_nth(array, i); for (j = i + 1; j < array->n_values; j++) { GValue *jvalue; jvalue = g_value_array_get_nth(array, j); if (G_VALUE_TYPE(ivalue) == G_VALUE_TYPE(jvalue) && lu_values_equal(ivalue, jvalue)) { g_value_array_remove(array, j); j--; } } } } static int compare_strings(gconstpointer a, gconstpointer b, gpointer data) { (void)data; return strcmp(a, b); } static GPtrArray * merge_ent_array_duplicates(GPtrArray *array) { GPtrArray *ret; size_t i; GTree *users, *groups; g_return_val_if_fail(array != NULL, NULL); users = g_tree_new_full(compare_strings, NULL, g_free, NULL); groups = g_tree_new_full(compare_strings, NULL, g_free, NULL); /* A structure to hold the new list. */ ret = g_ptr_array_new(); /* Iterate over every entity in the incoming list. */ for (i = 0; i < array->len; i++) { struct lu_ent *current, *saved; char *key; GValueArray *values; GValue *value; GTree *tree; current = g_ptr_array_index(array, i); key = NULL; values = NULL; tree = NULL; /* Get the name of the user or group. */ if (current->type == lu_user) { key = lu_ent_get_first_value_strdup(current, LU_USERNAME); tree = users; } else if (current->type == lu_group) { key = lu_ent_get_first_value_strdup(current, LU_GROUPNAME); tree = groups; } else { g_warning("Unknown entity(%zu) type: %d.\n", i, current->type); g_assert_not_reached(); } /* Check if there's already an entity with that name. */ saved = g_tree_lookup(tree, key); /* If it's not in there, add this one. */ if (saved == NULL) { g_tree_insert(tree, key, current); g_ptr_array_add(ret, current); } else { GList *attributes, *list; const char *attr; size_t j; g_free (key); /* Merge all of its data into the existing one; first, * the current data. */ attributes = lu_ent_get_attributes_current(current); list = attributes; while (attributes != NULL) { attr = (const char *)attributes->data; values = lu_ent_get_current(current, attr); for (j = 0; j < values->n_values; j++) { value = g_value_array_get_nth(values, j); lu_ent_add_current(saved, attr, value); } attributes = g_list_next(attributes); } g_list_free(list); /* Merge the pending data. */ attributes = lu_ent_get_attributes(current); list = attributes; while (attributes != NULL) { attr = (const char *)attributes->data; values = lu_ent_get(current, attr); for (j = 0; j < values->n_values; j++) { value = g_value_array_get_nth(values, j); lu_ent_add(saved, attr, value); } attributes = g_list_next(attributes); } g_list_free(list); /* Now merge the entity's list of modules. */ lu_util_append_values(saved->modules, current->modules); remove_duplicate_values(saved->modules); lu_ent_free(current); } } g_tree_destroy(users); g_tree_destroy(groups); g_ptr_array_free(array, TRUE); return ret; } static gboolean run_list(struct lu_context *context, GValueArray *list, gboolean (*logic_function)(gboolean a, gboolean b), enum lu_dispatch_id id, const char *sdata, id_t ldata, struct lu_ent *entity, gpointer ret, struct lu_error **firsterror) { gboolean success; struct lu_error *lasterror = NULL; size_t i; LU_ERROR_CHECK(firsterror); g_assert(context != NULL); g_assert(context->module_names != NULL); g_assert(list != NULL); g_assert(entity != NULL); g_assert(logic_function != NULL); g_assert((id == user_lookup_name) || (id == user_lookup_id) || (id == user_default) || (id == user_add_prep) || (id == user_add) || (id == user_mod) || (id == user_del) || (id == user_lock) || (id == user_unlock) || (id == user_unlock_nonempty) || (id == user_is_locked) || (id == user_setpass) || (id == user_removepass) || (id == users_enumerate) || (id == users_enumerate_by_group) || (id == users_enumerate_full) || (id == group_lookup_name) || (id == group_lookup_id) || (id == group_default) || (id == group_add_prep) || (id == group_add) || (id == group_mod) || (id == group_del) || (id == group_lock) || (id == group_unlock) || (id == group_unlock_nonempty) || (id == group_is_locked) || (id == group_setpass) || (id == group_removepass) || (id == groups_enumerate) || (id == groups_enumerate_by_user) || (id == groups_enumerate_full) || (id == uses_elevated_privileges)); success = FALSE; for (i = 0; i < list->n_values; i++) { struct lu_module *module; gpointer scratch; GValue *value; gboolean tsuccess; value = g_value_array_get_nth(list, i); module = g_tree_lookup(context->modules, g_value_get_string(value)); g_assert(module != NULL); scratch = NULL; tsuccess = run_single(context, module, id, sdata, ldata, entity, &scratch, &lasterror); if (scratch != NULL) switch (id) { GPtrArray *ptr_array, *tmp_ptr_array; GValueArray *value_array, *tmp_value_array; size_t j; case users_enumerate: case users_enumerate_by_group: case groups_enumerate: case groups_enumerate_by_user: tmp_value_array = scratch; value_array = *(GValueArray **)ret; if (value_array == NULL) { value_array = g_value_array_new(0); } if (tmp_value_array != NULL) { lu_util_append_values(value_array, tmp_value_array); g_value_array_free(tmp_value_array); } remove_duplicate_values(value_array); *(GValueArray **)ret = value_array; break; case users_enumerate_full: case groups_enumerate_full: /* FIXME: do some kind of merging here. */ tmp_ptr_array = scratch; ptr_array = *(GPtrArray **)ret; if (ptr_array == NULL) { ptr_array = g_ptr_array_new(); } if (tmp_ptr_array != NULL) { for (j = 0; j < tmp_ptr_array->len; j++) { struct lu_ent *tmp_ent; tmp_ent = g_ptr_array_index(tmp_ptr_array, j); g_ptr_array_add(ptr_array, tmp_ent); } g_ptr_array_free(tmp_ptr_array, TRUE); } /* remove_duplicate_ptrs(ptr_array); */ *(GPtrArray **)ret = ptr_array; break; case user_lookup_name: case user_lookup_id: case user_default: case user_add_prep: case user_add: case user_mod: case user_del: case group_lookup_name: case group_lookup_id: case group_default: case group_add_prep: case group_add: case group_mod: case group_del: case uses_elevated_privileges: break; default: g_assert_not_reached(); /* never reached */ break; } if (i == 0) { success = tsuccess; } else { success = logic_function(success, tsuccess); } if (*firsterror == NULL) { /* Make this the error we report. */ *firsterror = lasterror; lasterror = NULL; } else if (lasterror != NULL) /* Already have an error, discard. */ lu_error_free(&lasterror); } return success; } static gboolean lu_refresh_int(struct lu_context *context, struct lu_ent *entity, struct lu_error **error) { enum lu_dispatch_id id = 0; const char *sdata; gpointer scratch = NULL; g_return_val_if_fail((entity->type == lu_user) || (entity->type == lu_group), FALSE); if (entity->type == lu_user) { id = user_lookup_name; } else if (entity->type == lu_group) { id = group_lookup_name; } else { g_assert_not_reached(); } sdata = extract_name(entity); if (sdata == NULL) return FALSE; if (run_list(context, entity->modules, logic_and, id, sdata, LU_VALUE_INVALID_ID, entity, &scratch, error)) { lu_ent_revert(entity); return TRUE; } return FALSE; } static gboolean lu_dispatch(struct lu_context *context, enum lu_dispatch_id id, const char *sdata, id_t ldata, struct lu_ent *entity, gpointer ret, struct lu_error **error) { struct lu_ent *tmp; gboolean success; GValueArray *values = NULL; GPtrArray *ptrs = NULL; gpointer scratch = NULL; LU_ERROR_CHECK(error); g_assert(context != NULL); tmp = lu_ent_new(); if (entity != NULL) { lu_ent_copy(entity, tmp); } success = FALSE; switch (id) { case user_lookup_id: case group_lookup_id: /* Make sure data items are right for this call. */ sdata = NULL; g_assert(ldata != LU_VALUE_INVALID_ID); /* Run the list. */ if (run_list(context, context->module_names, logic_or, id, sdata, ldata, tmp, &scratch, error)) { /* Got a match on that ID, convert it to a * name and look it up by name. */ const char *attr = NULL; if (id == user_lookup_id) { attr = LU_USERNAME; id = user_lookup_name; } if (id == group_lookup_id) { attr = LU_GROUPNAME; id = group_lookup_name; } sdata = lu_ent_get_first_string_current(tmp, attr); if (sdata != NULL) sdata = tmp->cache->cache(tmp->cache, sdata); else { /* No values for the right attribute. */ break; } } else { /* No match on that ID. */ break; } /* fall through on successful ID->name conversion */ case user_lookup_name: case group_lookup_name: /* Make sure data items are right for this call. */ g_assert(sdata != NULL); /* Run the list. */ if (run_list(context, context->module_names, logic_or, id, sdata, LU_VALUE_INVALID_ID, tmp, &scratch, error)) { if (entity != NULL) { lu_ent_revert(tmp); lu_ent_copy(tmp, entity); } success = TRUE; } break; case user_default: case group_default: /* Make sure we have both name and boolean here. */ g_return_val_if_fail(sdata != NULL, FALSE); /* Run the checks and preps. */ if (run_list(context, context->create_module_names, logic_and, id, sdata, ldata, tmp, &scratch, error)) { if (entity != NULL) { lu_ent_copy(tmp, entity); } success = TRUE; } break; case user_add_prep: case group_add_prep: /* Make sure we have both name and ID here. */ if (ent_has_name_and_id(tmp, error) == FALSE) break; /* Run the checks and preps. */ if (run_list(context, context->create_module_names, logic_and, id, NULL, LU_VALUE_INVALID_ID, tmp, &scratch, error)) { if (entity != NULL) { lu_ent_copy(tmp, entity); } success = TRUE; } break; case user_add: case group_add: /* Make sure we have both name and ID here. */ if (ent_has_name_and_id(tmp, error) == FALSE) break; /* Add the account. */ if (run_list(context, context->create_module_names, logic_and, id, NULL, LU_VALUE_INVALID_ID, tmp, &scratch, error)) { if (entity != NULL) { lu_ent_copy(tmp, entity); } success = TRUE; } break; case user_mod: case group_mod: /* Make sure we have both name and ID here. */ /* FIXME: this checks current, not pending values */ if (ent_has_name_and_id(tmp, error) == FALSE) break; /* Make the changes. */ g_assert(entity != NULL); if (run_list(context, entity->modules, logic_and, id, NULL, LU_VALUE_INVALID_ID, tmp, &scratch, error)) { lu_ent_commit(tmp); lu_ent_copy(tmp, entity); success = TRUE; } break; case user_del: case user_lock: case user_unlock: case user_unlock_nonempty: case group_del: case group_lock: case group_unlock: case group_unlock_nonempty: /* Make sure we have both name and ID here. */ if (ent_has_name_and_id(tmp, error) == FALSE) break; /* Make the changes. */ g_assert(entity != NULL); if (run_list(context, entity->modules, logic_and, id, NULL, LU_VALUE_INVALID_ID, tmp, &scratch, error)) { lu_ent_revert(tmp); lu_ent_copy(tmp, entity); success = TRUE; } break; case user_setpass: case group_setpass: /* Make sure we have a valid password. */ g_return_val_if_fail(sdata != NULL, FALSE); /* fall through */ case user_removepass: case group_removepass: /* Make the changes. */ g_assert(entity != NULL); if (run_list(context, entity->modules, logic_and, id, sdata, LU_VALUE_INVALID_ID, tmp, &scratch, error)) { lu_ent_revert(tmp); lu_ent_copy(tmp, entity); success = TRUE; } break; case user_is_locked: case group_is_locked: /* Make sure we have both name and ID here. */ if (ent_has_name_and_id(tmp, error) == FALSE) break; /* Run the checks. */ g_assert(entity != NULL); if (run_list(context, entity->modules, logic_or, id, NULL, LU_VALUE_INVALID_ID, tmp, &scratch, error)) { lu_ent_copy(tmp, entity); success = TRUE; } break; case users_enumerate_by_group: case groups_enumerate_by_user: /* Make sure we have both name and ID here. */ g_return_val_if_fail(sdata != NULL, FALSE); if (id == users_enumerate_by_group) ldata = convert_group_name_to_id(context, sdata, error); else if (id == groups_enumerate_by_user) ldata = convert_user_name_to_id(context, sdata, error); else g_assert_not_reached(); if (ldata == LU_VALUE_INVALID_ID) break; /* fall through */ case users_enumerate: case groups_enumerate: /* Get the lists. */ if (run_list(context, context->module_names, logic_or, id, sdata, ldata, tmp, &values, error)) { *(GValueArray **)ret = values; success = TRUE; } break; case users_enumerate_full: case groups_enumerate_full: /* Get the lists. */ if (run_list(context, context->module_names, logic_or, id, sdata, ldata, tmp, &ptrs, error)) { if (ptrs != NULL) { size_t i; for (i = 0; i < ptrs->len; i++) { struct lu_ent *ent; ent = g_ptr_array_index(ptrs, i); lu_ent_revert(ent); } } *(GPtrArray **)ret = ptrs; success = TRUE; } /* Clean up results. */ if (*(GPtrArray **)ret != NULL) { *(GPtrArray **)ret = merge_ent_array_duplicates(*(GPtrArray **)ret); } break; case uses_elevated_privileges: if (run_list(context, context->module_names, logic_or, id, sdata, ldata, tmp, &scratch, error)) { success = TRUE; } break; default: g_assert_not_reached(); break; } lu_ent_free(tmp); if (success) { switch (id) { /* user_lookup_id was converted into user_lookup_name above; this case label is included only for completeness. */ case user_lookup_id: case user_lookup_name: g_assert(entity != NULL); entity->type = lu_user; break; /* group_lookup_id was converted into group_lookup_name above; this case label is included only for completeness. */ case group_lookup_name: case group_lookup_id: g_assert(entity != NULL); entity->type = lu_group; break; default: break; } if ((error != NULL) && (*error != NULL)) { lu_error_free(error); } } return success; } /** * lu_uses_elevated_privileges: * @context: A context * * Checks if any module uses elevated privileges (e.g. modifies files that * normal users can't modify). * * Returns: %TRUE if at least one module uses elevated privileges */ /* FIXME: error status, if any, is not reported to the caller */ gboolean lu_uses_elevated_privileges (struct lu_context *context) { struct lu_error *error = NULL; gboolean ret = lu_dispatch(context, uses_elevated_privileges, NULL, 0, NULL, NULL, &error); if (error != NULL) { lu_error_free(&error); } return ret; } /** * lu_user_lookup_name: * @context: A context * @name: User name * @ent: An entity filled with received information * @error: Filled with a #lu_error if an error occurs * * Looks up an user by name. * * Returns: %TRUE on success. If the user doesn't exist, returns %FALSE without * setting @error. */ gboolean lu_user_lookup_name(struct lu_context * context, const char *name, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(name != NULL, FALSE); return lu_dispatch(context, user_lookup_name, name, 0, ent, NULL, error); } /** * lu_group_lookup_name: * @context: A context * @name: Group name * @ent: An entity filled with received information * @error: Filled with a #lu_error if an error occurs * * Looks up a group by name. * * Returns: %TRUE on success. If the group doesn't exist, returns %FALSE * without setting @error. */ gboolean lu_group_lookup_name(struct lu_context * context, const char *name, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(name != NULL, FALSE); return lu_dispatch(context, group_lookup_name, name, 0, ent, NULL, error); } /** * lu_user_lookup_id: * @context: A context * @uid: User ID * @ent: An entity filled with received information * @error: Filled with a #lu_error if an error occurs * * Looks up an user by UID. * * Returns: %TRUE on success. If the user doesn't exist, returns %FALSE without * setting @error. */ gboolean lu_user_lookup_id(struct lu_context * context, uid_t uid, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); return lu_dispatch(context, user_lookup_id, NULL, uid, ent, NULL, error); } /** * lu_group_lookup_id: * @context: A context * @gid: Group ID * @ent: An entity filled with received information * @error: Filled with a #lu_error if an error occurs * * Looks up a group by GID. * * Returns: %TRUE on success. If the group doesn't exist, returns %FALSE * without setting @error. */ gboolean lu_group_lookup_id(struct lu_context * context, gid_t gid, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); return lu_dispatch(context, group_lookup_id, NULL, gid, ent, NULL, error); } /** * lu_user_add: * @context: A context * @ent: An entity describing the user, on success updated with resulting * account * @error: Filled with a #lu_error if an error occurs * * Creates an user in all modules specified for entity creation. * * Returns: %TRUE on success */ gboolean lu_user_add(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { const char *dubious_home; gboolean ret = FALSE; LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); dubious_home = lu_ent_get_first_string(ent, LU_DUBIOUS_HOMEDIRECTORY); if (dubious_home != NULL) { if (lu_ent_get(ent, LU_HOMEDIRECTORY) == NULL) { lu_error_new(error, lu_error_name_bad, _("Refusing to use dangerous home " "directory `%s' by default"), dubious_home); return FALSE; } /* LU_DUBIOUS_HOMEDIRECTORY is purely internal, make sure it won't get saved anywhere. */ lu_ent_clear(ent, LU_DUBIOUS_HOMEDIRECTORY); } if (lu_dispatch(context, user_add_prep, NULL, LU_VALUE_INVALID_ID, ent, NULL, error)) { ret = lu_dispatch(context, user_add, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_user(context, ent, error); } return ret; } /** * lu_group_add: * @context: A context * @ent: An entity describing the group, on success updated with resulting * account * @error: Filled with a #lu_error if an error occurs * * Creates a group in all modules specified for entity creation. * * Returns: %TRUE on success */ gboolean lu_group_add(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { gboolean ret = FALSE; LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_group, FALSE); if (lu_dispatch(context, group_add_prep, NULL, LU_VALUE_INVALID_ID, ent, NULL, error)) { ret = lu_dispatch(context, group_add, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_group(context, ent, error); } return ret; } /** * lu_user_modify: * @context: A context * @ent: An entity with pending modifications, on success updated with current * information * @error: Filled with a #lu_error if an error occurs * * Modifies an user entity. * * Returns: %TRUE on success */ gboolean lu_user_modify(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); return lu_dispatch(context, user_mod, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_user(context, ent, error); } /** * lu_group_modify: * @context: A context * @ent: An entity with pending modifications, on success updated with current * information * @error: Filled with a #lu_error if an error occurs * * Modifies a group entity. * * Returns: %TRUE on success */ gboolean lu_group_modify(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_group, FALSE); return lu_dispatch(context, group_mod, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_group(context, ent, error); } /** * lu_user_delete: * @context: A context * @ent: An entity describing the user * @error: Filled with a #lu_error if an error occurs * * Deletes an user. * * Returns: %TRUE on success */ gboolean lu_user_delete(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); return lu_dispatch(context, user_del, NULL, LU_VALUE_INVALID_ID, ent, NULL, error); } /** * lu_group_delete: * @context: A context * @ent: An entity describing the group * @error: Filled with a #lu_error if an error occurs * * Deletes a group. * * Returns: %TRUE on success */ gboolean lu_group_delete(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_group, FALSE); return lu_dispatch(context, group_del, NULL, LU_VALUE_INVALID_ID, ent, NULL, error); } /** * lu_user_lock: * @context: A context * @ent: An entity describing the user, on success updated with current * information * @error: Filled with a #lu_error if an error occurs * * Locks an user account. * * Returns: %TRUE on success */ gboolean lu_user_lock(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); return lu_dispatch(context, user_lock, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_user(context, ent, error); } /** * lu_user_unlock: * @context: A context * @ent: An entity describing the user, on success updated with current * information * @error: Filled with a #lu_error if an error occurs * * Unlocks an user account. * * Returns: %TRUE on success */ gboolean lu_user_unlock(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); return lu_dispatch(context, user_unlock, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_user(context, ent, error); } /** * lu_user_unlock_nonempty: * @context: A context * @ent: An entity describing the user, on success updated with current * information * @error: Filled with a #lu_error if an error occurs * * Unlocks an user account. If unlocking the account would result in an empty * password field, it fails with %lu_error_unlock_empty. Note that the * password can still be empty. * * Returns: %TRUE on success */ gboolean lu_user_unlock_nonempty(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); return lu_dispatch(context, user_unlock_nonempty, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_user(context, ent, error); } /** * lu_user_islocked: * @context: A context * @ent: An entity describing the user * @error: Filled with a #lu_error if an error occurs * * Checks if an user account is locked. * * Returns: %TRUE if the account is locked in at least one module */ gboolean lu_user_islocked(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); return lu_dispatch(context, user_is_locked, NULL, LU_VALUE_INVALID_ID, ent, NULL, error); } /** * lu_user_setpass: * @context: A context * @ent: An entity describing the user, on success updated with current * information and %LU_SHADOWLASTCHANGE * @newpass: New password * @crypted: Non-zero if @newpass is already encrypted * @error: Filled with an #lu_error if an error occurs * * Changes an user's password. * * Returns: %TRUE on success */ gboolean lu_user_setpass(struct lu_context * context, struct lu_ent * ent, const char *password, gboolean is_crypted, struct lu_error ** error) { gboolean ret; char *tmp; LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); if (is_crypted) { tmp = g_strconcat(LU_CRYPTED, password, NULL); } else { tmp = g_strdup(password); } ret = lu_dispatch(context, user_setpass, tmp, LU_VALUE_INVALID_ID, ent, NULL, error); g_free(tmp); if (ret) ret = lu_refresh_user(context, ent, error); if (ret) { lu_util_update_shadow_last_change(ent); ret = lu_user_modify(context, ent, error); } return ret; } /** * lu_user_removepass: * @context: A context * @ent: An entity describing the user, on success updated with current * information and %LU_SHADOWLASTCHANGE * @error: Filled with an #lu_error if an error occurs * * Changes an user's password to an empty string. * * Returns: %TRUE on success */ gboolean lu_user_removepass(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { gboolean ret; LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); ret = lu_dispatch(context, user_removepass, NULL, LU_VALUE_INVALID_ID, ent, NULL, error); if (ret) ret = lu_refresh_user(context, ent, error); if (ret) { lu_util_update_shadow_last_change(ent); ret = lu_user_modify(context, ent, error); } return ret; } /** * lu_group_lock: * @context: A context * @ent: An entity describing the group, on success updated with current * information * @error: Filled with a #lu_error if an error occurs * * Locks a group account * * Returns: %TRUE on success */ gboolean lu_group_lock(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_group, FALSE); return lu_dispatch(context, group_lock, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_group(context, ent, error); } /** * lu_group_unlock: * @context: A context * @ent: An entity describing the group, on success updated with current * information * @error: Filled with a #lu_error if an error occurs * * Unlocks a group account. * * Returns: %TRUE on success */ gboolean lu_group_unlock(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_group, FALSE); return lu_dispatch(context, group_unlock, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_group(context, ent, error); } /** * lu_group_unlock_nonempty: * @context: A context * @ent: An entity describing the group, on success updated with current * information * @error: Filled with a #lu_error if an error occurs * * Unlocks a group account. If unlocking the account would result in an empty * password field, it fails with %lu_error_unlock_empty. Note that the * password can still be empty. * * Returns: %TRUE on success */ gboolean lu_group_unlock_nonempty(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_group, FALSE); return lu_dispatch(context, group_unlock_nonempty, NULL, LU_VALUE_INVALID_ID, ent, NULL, error) && lu_refresh_group(context, ent, error); } /** * lu_group_islocked: * @context: A context * @ent: An entity describing the group * @error: Filled with a #lu_error if an error occurs * * Checks if a group account is locked. * * Returns: %TRUE if the account is locked in at least one module */ gboolean lu_group_islocked(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_group, FALSE); return lu_dispatch(context, group_is_locked, NULL, LU_VALUE_INVALID_ID, ent, NULL, error); } /** * lu_group_setpass: * @context: A context * @ent: An entity describing the group, on success updated with current * information and %LU_SHADOWLASTCHANGE * @newpass: New password * @crypted: Non-zero if @newpass is already encrypted * @error: Filled with an #lu_error if an error occurs * * Changes a group password. * * Returns: %TRUE on success */ gboolean lu_group_setpass(struct lu_context * context, struct lu_ent * ent, const char *password, gboolean is_crypted, struct lu_error ** error) { gboolean ret; char *tmp; LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_group, FALSE); if (is_crypted) { tmp = g_strconcat(LU_CRYPTED, password, NULL); } else { tmp = g_strdup(password); } ret = lu_dispatch(context, group_setpass, tmp, LU_VALUE_INVALID_ID, ent, NULL, error); g_free(tmp); if (ret) ret = lu_refresh_group(context, ent, error); return ret; } /** * lu_group_removepass: * @context: A context * @ent: An entity describing the group, on success udpated with current * information and %LU_SHADOWLASTCHANGE * @error: Filled with in #lu_error if an error occurs * * Changes a group password to an empty string. * * Returns: %TRUE on success */ gboolean lu_group_removepass(struct lu_context * context, struct lu_ent * ent, struct lu_error ** error) { gboolean ret; LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_group, FALSE); ret = lu_dispatch(context, group_removepass, NULL, LU_VALUE_INVALID_ID, ent, NULL, error); if (ret) ret = lu_refresh_group(context, ent, error); return ret; } /** * lu_users_enumerate: * @context: A context * @pattern: A glob-like pattern for user name * @error: Filled with a #lu_error if an error occurs * * Returns a list of all users matching a pattern. * * Returns: An array of strings, each representing one user name. The array * should be freed by the caller. */ GValueArray * lu_users_enumerate(struct lu_context * context, const char *pattern, struct lu_error ** error) { GValueArray *ret = NULL; LU_ERROR_CHECK(error); lu_dispatch(context, users_enumerate, pattern, LU_VALUE_INVALID_ID, NULL, &ret, error); return ret; } /** * lu_groups_enumerate: * @context: A context * @pattern: A glob-like pattern for group name * @error: Filled with a #lu_error if an error occurs * * Returns a list of all groups matching a pattern. * * Returns: An array of strings, each representing one group name. The array * should be freed by the caller. */ GValueArray * lu_groups_enumerate(struct lu_context * context, const char *pattern, struct lu_error ** error) { GValueArray *ret = NULL; LU_ERROR_CHECK(error); lu_dispatch(context, groups_enumerate, pattern, LU_VALUE_INVALID_ID, NULL, &ret, error); return ret; } /** * lu_users_enumerate_by_group: * @context: A context * @group: Group name * @error: Filled with a #lu_error if an error occurs * * Returns a list of all members of a group @group. * * Returns: An array of strings, each representing one user name. The array * should be freed by the caller. */ GValueArray * lu_users_enumerate_by_group(struct lu_context * context, const char *group, struct lu_error ** error) { GValueArray *ret = NULL; LU_ERROR_CHECK(error); lu_dispatch(context, users_enumerate_by_group, group, LU_VALUE_INVALID_ID, NULL, &ret, error); return ret; } /** * lu_groups_enumerate_by_user: * @context: A context * @user: User name * @error: Filled with a #lu_error if an error occurs * * Returns a list of all groups containing an user @user. * * Returns: An array of strings, each representing one group name. The array * should be freed by the caller. */ GValueArray * lu_groups_enumerate_by_user(struct lu_context * context, const char *user, struct lu_error ** error) { GValueArray *ret = NULL; LU_ERROR_CHECK(error); lu_dispatch(context, groups_enumerate_by_user, user, LU_VALUE_INVALID_ID, NULL, &ret, error); return ret; } /** * lu_users_enumerate_full: * @context: A context * @pattern: A glob-like pattern for user name * @error: Filled with a #lu_error if an error occurs * * Returns a list of entities, one for each user matching a pattern. * * Returns: A list of pointers to user entities. The entities and the * list should be freed by the caller. */ GPtrArray * lu_users_enumerate_full(struct lu_context * context, const char *pattern, struct lu_error ** error) { GPtrArray *ret = NULL; LU_ERROR_CHECK(error); lu_dispatch(context, users_enumerate_full, pattern, LU_VALUE_INVALID_ID, NULL, &ret, error); return ret; } /** * lu_groups_enumerate_full: * @context: A context * @pattern: A glob-like pattern for group name * @error: Filled with a #lu_error if an error occurs * * Returns a list of entities, one for each group matching a pattern. * * Returns: a list of pointers to group entities. The entities and the * list should be freed by the caller. */ GPtrArray * lu_groups_enumerate_full(struct lu_context * context, const char *pattern, struct lu_error ** error) { GPtrArray *ret = NULL; LU_ERROR_CHECK(error); lu_dispatch(context, groups_enumerate_full, pattern, LU_VALUE_INVALID_ID, NULL, &ret, error); return ret; } /** * lu_users_enumerate_by_group_full: * @context: A context * @group: Group name * @error: Filled with a #lu_error if an error occurs * * Returns a list of entities, one for each member of a group @group. * * Returns: A list of pointers to user entities. The entities and the * list should be freed by the caller. */ GPtrArray * lu_users_enumerate_by_group_full(struct lu_context * context, const char * group, struct lu_error ** error) { GPtrArray *ret = NULL; GValueArray *names; size_t i; LU_ERROR_CHECK(error); /* We may have the membership information stored in one module, but the user information in a different module, so don't just let each module load its own information; only get the list of users, and then look for the users in all modules. */ names = lu_users_enumerate_by_group(context, group, error); if (*error != NULL) return NULL; ret = g_ptr_array_new(); for (i = 0; i < names->n_values; i++) { const char *name; struct lu_error *err2; struct lu_ent *ent; name = g_value_get_string(g_value_array_get_nth(names, i)); ent = lu_ent_new(); err2 = NULL; if (lu_user_lookup_name(context, name, ent, &err2)) g_ptr_array_add(ret, ent); else { lu_ent_free(ent); /* Silently ignore the error and return at least some results. */ if (err2 != NULL) lu_error_free(&err2); } } g_value_array_free(names); return ret; } /** * lu_groups_enumerate_by_user_full: * @context: A context * @user: User name * @error: Filled with a #lu_error if an error occurs * * Returns a list of entities, one for each group containing an user @user. * * Returns: a list of pointers to group entities. The entities and the * list should be freed by the caller. */ GPtrArray * lu_groups_enumerate_by_user_full(struct lu_context * context, const char *user, struct lu_error ** error) { GPtrArray *ret = NULL; GValueArray *names; size_t i; LU_ERROR_CHECK(error); /* We may have the membership information stored in one module, but the group information in a different module, so don't just let each module load its own information; only get the list of groups, and then look for the users in all modules. */ names = lu_groups_enumerate_by_user(context, user, error); if (*error != NULL) return NULL; ret = g_ptr_array_new(); for (i = 0; i < names->n_values; i++) { const char *name; struct lu_error *err2; struct lu_ent *ent; name = g_value_get_string(g_value_array_get_nth(names, i)); ent = lu_ent_new(); err2 = NULL; if (lu_group_lookup_name(context, name, ent, &err2)) g_ptr_array_add(ret, ent); else { lu_ent_free(ent); /* Silently ignore the error and return at least some results. */ if (err2 != NULL) lu_error_free(&err2); } } g_value_array_free(names); return ret; } id_t lu_get_first_unused_id(struct lu_context *ctx, enum lu_entity_type type, id_t id) { struct lu_ent *ent; char buf[LINE_MAX * 4]; g_return_val_if_fail(ctx != NULL, (id_t)-1); ent = lu_ent_new(); if (type == lu_user) { struct lu_error *error = NULL; do { struct passwd pwd, *err; /* There may be read-only sources of user information * on the system, and we want to avoid allocating an ID * that's already in use by a service we can't write * to, so check with NSS first. FIXME: use growing * buffers here. */ if ((getpwuid_r(id, &pwd, buf, sizeof(buf), &err) == 0) && (err == &pwd)) { id++; continue; } if (lu_user_lookup_id(ctx, id, ent, &error)) { lu_ent_free(ent); ent = lu_ent_new(); id++; continue; } if (error) { lu_error_free(&error); } break; } while (id != (id_t)-1); } else if (type == lu_group) { struct lu_error *error = NULL; do { struct group grp, *err; /* There may be read-only sources of user information * on the system, and we want to avoid allocating an ID * that's already in use by a service we can't write * to, so check with NSS first. */ getgrgid_r(id, &grp, buf, sizeof(buf), &err); if (err == &grp) { id++; continue; } if (lu_group_lookup_id(ctx, id, ent, &error)) { lu_ent_free(ent); ent = lu_ent_new(); id++; continue; } if (error) { lu_error_free(&error); } break; } while (id != (id_t)-1); } if (id == (id_t)-1) id = 0; lu_ent_free(ent); return id; } /* Replace all instances of OLD in g_malloc()'ed STRING by NEW. Change LU_HOMEDIRECTORY *KEY to LU_DUBIOUS_HOMEDIRECTORY if the substitution results in a new "." or ".." directory component. */ static char * replace_all(char *string, const char *old, const char *new, const char **key) { char *pos; pos = strstr(string, old); if (pos != NULL) { size_t old_len; old_len = strlen(old); do { char *new_string, *prefix, *p; prefix = g_strndup(string, pos - string); new_string = g_strconcat(prefix, new, pos + old_len, NULL); p = new_string + (pos - string); g_free(prefix); g_free(string); string = new_string; if (strcmp(*key, LU_HOMEDIRECTORY) == 0) { while (p > new_string && p[-1] != '/') p--; if (*p == '.' && (p[1] == '\0' || p[1] == '/' || (p[1] == '.' && (p[2] == '\0' || p[2] == '/')))) /* A new "." or ".." pathname component appeared. */ *key = LU_DUBIOUS_HOMEDIRECTORY; } pos = strstr(string, old); } while (pos != NULL); } return string; } static gboolean lu_default_int(struct lu_context *context, const char *name, enum lu_entity_type type, gboolean is_system, struct lu_ent *ent) { GList *keys, *p; GValue value; char *cfgkey, id_replacement[sizeof (intmax_t) * CHAR_BIT + 1]; char shadow_date_replacement[sizeof (intmax_t) * CHAR_BIT + 1]; const char *top, *idkey, *idkeystring, *val; id_t id = DEFAULT_ID; struct group grp, *err; struct lu_error *error = NULL; gpointer macguffin = NULL; size_t i; g_return_val_if_fail(context != NULL, FALSE); g_return_val_if_fail(name != NULL, FALSE); g_return_val_if_fail(strlen(name) > 0, FALSE); g_return_val_if_fail((type == lu_user) || (type == lu_group), FALSE); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->magic == LU_ENT_MAGIC, FALSE); /* Clear out and initialize the record. */ lu_ent_clear_all(ent); lu_ent_clear_modules(ent); ent->type = type; /* Set the name of the user/group. */ if (ent->type == lu_user) { char buf[LINE_MAX * 4]; lu_ent_set_string(ent, LU_USERNAME, name); /* Additionally, pick a default default group. */ /* FIXME: handle arbitrarily long lines. */ if ((getgrnam_r("users", &grp, buf, sizeof(buf), &err) == 0) && (err == &grp)) lu_ent_set_id(ent, LU_GIDNUMBER, grp.gr_gid); } else if (ent->type == lu_group) lu_ent_set_string(ent, LU_GROUPNAME, name); /* Figure out which part of the configuration we need to iterate over * to initialize the structure. */ if (type == lu_user) { top = "userdefaults"; idkey = LU_UIDNUMBER; idkeystring = G_STRINGIFY_ARG(LU_UIDNUMBER); } else { top = "groupdefaults"; idkey = LU_GIDNUMBER; idkeystring = G_STRINGIFY_ARG(LU_GIDNUMBER); } /* The system flag determines where we will start searching for * unused IDs to assign to this entity. */ if (is_system) { id = 1; } else { cfgkey = g_strconcat(top, "/", idkey, (const gchar *)NULL); val = lu_cfg_read_single(context, cfgkey, NULL); g_free(cfgkey); if (val == NULL) { cfgkey = g_strconcat(top, "/", idkeystring, (const gchar *)NULL); val = lu_cfg_read_single(context, cfgkey, NULL); g_free(cfgkey); } if (val != NULL) { intmax_t imax; char *end; errno = 0; imax = strtoimax(val, &end, 10); if (errno == 0 && *end == 0 && end != val && (id_t)imax == imax) id = imax; else id = DEFAULT_ID; } } /* Search for a free ID. */ id = lu_get_first_unused_id(context, type, id); if (id != 0 && id != (id_t)-1) { /* Add this ID to the entity. */ lu_ent_set_id(ent, idkey, id); sprintf(id_replacement, "%jd", (intmax_t)id); } else /* Otherwise the user must specify an ID. */ id_replacement[0] = 0; sprintf(shadow_date_replacement, "%ld", lu_util_shadow_current_date_or_minus_1()); /* Now iterate to find the rest. */ memset(&value, 0, sizeof(value)); keys = lu_cfg_read_keys(context, top); for (p = keys; p && p->data; p = g_list_next(p)) { static const struct { const char *realkey, *configkey; } keymap[] = { {LU_USERNAME, G_STRINGIFY_ARG(LU_USERNAME)}, {LU_USERPASSWORD, G_STRINGIFY_ARG(LU_USERPASSWORD)}, {LU_UIDNUMBER, G_STRINGIFY_ARG(LU_UIDNUMBER)}, {LU_GIDNUMBER, G_STRINGIFY_ARG(LU_GIDNUMBER)}, {LU_GECOS, G_STRINGIFY_ARG(LU_GECOS)}, {LU_HOMEDIRECTORY, G_STRINGIFY_ARG(LU_HOMEDIRECTORY)}, {LU_LOGINSHELL, G_STRINGIFY_ARG(LU_LOGINSHELL)}, {LU_GROUPNAME, G_STRINGIFY_ARG(LU_GROUPNAME)}, {LU_GROUPPASSWORD, G_STRINGIFY_ARG(LU_GROUPPASSWORD)}, {LU_MEMBERNAME, G_STRINGIFY_ARG(LU_MEMBERNAME)}, {LU_ADMINISTRATORNAME, G_STRINGIFY_ARG(LU_ADMINISTRATORNAME)}, {LU_SHADOWNAME, G_STRINGIFY_ARG(LU_SHADOWNAME)}, {LU_SHADOWPASSWORD, G_STRINGIFY_ARG(LU_SHADOWPASSWORD)}, {LU_SHADOWLASTCHANGE, G_STRINGIFY_ARG(LU_SHADOWLASTCHANGE)}, {LU_SHADOWMIN, G_STRINGIFY_ARG(LU_SHADOWMIN)}, {LU_SHADOWMAX, G_STRINGIFY_ARG(LU_SHADOWMAX)}, {LU_SHADOWWARNING, G_STRINGIFY_ARG(LU_SHADOWWARNING)}, {LU_SHADOWINACTIVE, G_STRINGIFY_ARG(LU_SHADOWINACTIVE)}, {LU_SHADOWEXPIRE, G_STRINGIFY_ARG(LU_SHADOWEXPIRE)}, {LU_SHADOWFLAG, G_STRINGIFY_ARG(LU_SHADOWFLAG)}, {LU_COMMONNAME, G_STRINGIFY_ARG(LU_COMMONNAME)}, {LU_GIVENNAME, G_STRINGIFY_ARG(LU_GIVENNAME)}, {LU_SN, G_STRINGIFY_ARG(LU_SN)}, {LU_ROOMNUMBER, G_STRINGIFY_ARG(LU_ROOMNUMBER)}, {LU_TELEPHONENUMBER, G_STRINGIFY_ARG(LU_TELEPHONENUMBER)}, {LU_HOMEPHONE, G_STRINGIFY_ARG(LU_HOMEPHONE)}, {LU_EMAIL, G_STRINGIFY_ARG(LU_EMAIL)}, }; char *tmp; const char *key; gboolean ok; /* Possibly map the key to an internal name. */ key = p->data; for (i = 0; i < G_N_ELEMENTS(keymap); i++) { if (strcmp(key, keymap[i].configkey) == 0) { key = keymap[i].realkey; break; } } /* Skip over the key which represents the user/group ID, * because we only used it as a starting point. */ if (g_ascii_strcasecmp(idkey, key) == 0) { continue; } /* Generate the key and read the value for the item. */ cfgkey = g_strconcat(top, "/", (const gchar *)p->data, (const gchar *)NULL); val = lu_cfg_read_single(context, cfgkey, NULL); /* Create a copy of the value to mess with. */ g_assert(val != NULL); tmp = g_strdup(val); tmp = replace_all(tmp, "%n", name, &key); tmp = replace_all(tmp, "%d", shadow_date_replacement, &key); if (id_replacement[0] != 0) tmp = replace_all(tmp, "%u", id_replacement, &key); ok = lu_value_init_set_attr_from_string(&value, key, tmp, &error); if (ok == FALSE) { if (error == NULL) { /* Whatever this attribute is, default to a string. */ g_value_init(&value, G_TYPE_STRING); g_value_set_string(&value, tmp); ok = TRUE; } else { g_warning(_("Invalid default value of field " "%s: %s"), cfgkey, lu_strerror(error)); lu_error_free(&error); } } g_free(tmp); g_free(cfgkey); if (ok != FALSE) { /* Add the transformed value. */ lu_ent_clear(ent, key); lu_ent_add(ent, key, &value); g_value_unset(&value); } } if (keys != NULL) { g_list_free(keys); } /* Now let the modules do their thing. */ lu_dispatch(context, (type == lu_user) ? user_default : group_default, name, is_system, ent, &macguffin, &error); if (error != NULL) { lu_error_free(&error); } /* Make the pending set be the same as the current set. */ lu_ent_commit(ent); return TRUE; } /** * lu_user_default: * @ctx: A context * @name: New user name * @system_account: Non-zero if the user is a system user * @ent: An entity * * Fills out an user entity as specified by the config file and modules * to prepare for creation of the user. * * Returns: %TRUE on success */ gboolean lu_user_default(struct lu_context *context, const char *name, gboolean system_account, struct lu_ent *ent) { return lu_default_int(context, name, lu_user, system_account, ent); } /** * lu_group_default: * @ctx: A context * @name: New group name * @system_account: Non-zero if the group is a system group * @ent: An entity * * Fills out a group entity as specified by the config file and modules * to prepare for creation of the group. * * Returns: %TRUE on success */ gboolean lu_group_default(struct lu_context *context, const char *name, gboolean system_account, struct lu_ent *ent) { return lu_default_int(context, name, lu_group, system_account, ent); } libuser-0.60~dfsg/lib/modules.c0000644000175000017500000001522112226342567016466 0ustar tzafrirtzafrir/* Copyright (C) 2000-2002, 2005 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include "user_private.h" #include "internal.h" #define SEPARATORS "\t ," static gboolean load_one_module(struct lu_context *ctx, const char *module_dir, char *module_name, struct lu_error **error) { char *tmp, *symbol, *module_file; GModule *handle; lu_module_init_t module_init; struct lu_module *module; LU_ERROR_CHECK(error); /* Generate the file name. */ tmp = g_strconcat(PACKAGE "_", module_name, NULL); module_file = g_module_build_path(module_dir, tmp); g_free(tmp); /* Open the module. */ handle = g_module_open(module_file, G_MODULE_BIND_LOCAL); if (handle == NULL) { /* If the open failed, we return an error. */ lu_error_new(error, lu_error_module_load, "%s", g_module_error()); goto err_module_file; } /* Determine the name of the module's initialization function and try * to find it. */ symbol = g_strconcat(PACKAGE "_", module_name, "_init", NULL); g_module_symbol(handle, symbol, (gpointer)&module_init); /* If we couldn't find the entry point, error out. */ if (module_init == NULL) { lu_error_new(error, lu_error_module_sym, _("no initialization function %s in `%s'"), symbol, module_file); g_free(symbol); goto err_handle; } g_free(symbol); /* Ask the module to allocate the a module structure and hand it back * to us. */ module = module_init(ctx, error); if (module == NULL) { g_assert(*error != NULL); goto err_handle; } /* Check that the module interface version is right, too. */ if (module->version != LU_MODULE_VERSION) { lu_error_new(error, lu_error_module_version, _("module version mismatch in `%s'"), module_file); /* Don't call module->close, the pointer might not be there */ goto err_handle; } /* For safety's sake, make sure that all functions provided by the * module exist. This can often mean a useless round trip, but it * simplifies the logic of the library greatly. */ #define M(MEMBER) \ do { \ if (module->MEMBER == NULL) { \ lu_error_new(error, lu_error_module_sym, \ _("module `%s' does not define `%s'"), \ module_file, #MEMBER); \ goto err_module; \ } \ } while (0) M(valid_module_combination); M(uses_elevated_privileges); M(user_lookup_name); M(user_lookup_id); M(user_default); M(user_add_prep); M(user_add); M(user_mod); M(user_del); M(user_lock); M(user_unlock); M(user_unlock_nonempty); M(user_is_locked); M(user_setpass); M(user_removepass); M(users_enumerate); M(users_enumerate_by_group); M(users_enumerate_full); M(group_lookup_name); M(group_lookup_id); M(group_default); M(group_add_prep); M(group_add); M(group_mod); M(group_del); M(group_lock); M(group_unlock); M(group_unlock_nonempty); M(group_is_locked); M(group_setpass); M(group_removepass); M(groups_enumerate); M(groups_enumerate_by_user); M(groups_enumerate_full); M(close); #undef M g_free(module_file); /* Initialize the last two fields in the module structure and add it to the module tree. */ module->lu_context = ctx; module->module_handle = handle; module_name = ctx->scache->cache(ctx->scache, module_name); g_tree_insert(ctx->modules, module_name, module); return TRUE; err_module: if (module->close != NULL) module->close(module); err_handle: g_module_close(handle); err_module_file: g_free(module_file); return FALSE; } gboolean lu_modules_load(struct lu_context *ctx, const char *module_list, GValueArray **names, struct lu_error **error) { char *q, *modlist; const char *module_dir; char *module_name; GValueArray *our_names; size_t i; LU_ERROR_CHECK(error); g_assert(ctx != NULL); g_assert(module_list != NULL); g_assert(names != NULL); /* Build a GValueArray for the module names. */ our_names = g_value_array_new(0); /* Figure out where the modules would be. */ module_dir = lu_cfg_read_single(ctx, "defaults/moduledir", MODULEDIR); /* Load the modules. */ modlist = g_strdup(module_list); for (module_name = strtok_r(modlist, SEPARATORS, &q); module_name != NULL; module_name = strtok_r(NULL, SEPARATORS, &q)) { GValue value; /* Only load the module if it's not already loaded. */ if (g_tree_lookup(ctx->modules, module_name) == NULL) { if (load_one_module(ctx, module_dir, module_name, error) == FALSE) { /* The module initializer may report a warning, which is not fatal. */ if (!lu_error_is_warning((*error)->code)) goto error; lu_error_free(error); continue; } } /* Record that we loaded the module. */ memset(&value, 0, sizeof(value)); g_value_init(&value, G_TYPE_STRING); g_value_set_string(&value, module_name); g_value_array_append(our_names, &value); g_value_unset(&value); } for (i = 0; i < our_names->n_values; i++) { GValue *value; struct lu_module *module; value = g_value_array_get_nth(our_names, i); module = g_tree_lookup(ctx->modules, g_value_get_string(value)); g_assert(module != NULL); if (module->valid_module_combination(module, our_names, error) == FALSE) goto error; } g_free(modlist); if (*names != NULL) g_value_array_free(*names); *names = our_names; return TRUE; error: /* Modules loaded before the failure are kept loaded, but the list of used modules does not change. */ g_value_array_free(our_names); g_free(modlist); return FALSE; } /* Unload a given module, implemented as a callback for a GTree where the * module's name is a key, and the module structure is the value. */ int lu_module_unload(gpointer key, gpointer value, gpointer data) { (void)key; (void)data; /* Give the module a chance to clean itself up. */ if (value != NULL) { struct lu_module *module; GModule *handle; module = (struct lu_module *) value; handle = module->module_handle; module->close(module); /* Unload the module. */ if (handle != NULL) g_module_close(handle); } return 0; } libuser-0.60~dfsg/lib/error.h0000644000175000017500000000636712226342567016167 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef libuser_error_h #define libuser_error_h #include #include #include G_BEGIN_DECLS enum lu_status { /* Non-fatal. */ lu_success = 0, lu_warning_config_disabled, /* Fatal. */ lu_error_generic, lu_error_privilege, lu_error_access_denied, /* Data validation errors. */ lu_error_name_bad, lu_error_id_bad, lu_error_name_used, lu_error_id_used, /* Terminal manipulation errors. */ lu_error_terminal, /* File I/O errors. */ lu_error_open, lu_error_lock, lu_error_stat, lu_error_read, lu_error_write, lu_error_search, /* Initialization or module-loading errors. */ lu_error_init, lu_error_module_load, lu_error_module_sym, lu_error_module_version, /* Since 0.53 */ lu_error_unlock_empty, /* Since 0.56 */ lu_error_invalid_attribute_value, /* Since 0.57 */ lu_error_invalid_module_combination, /* Since 0.60 */ lu_error_homedir_not_owned, }; #ifndef __GTK_DOC_IGNORE__ #ifndef LU_DISABLE_DEPRECATED typedef enum lu_status lu_status_t; #endif #endif /** * lu_error: * * Error and status information. */ /* gtk-doc is dumb. */ struct lu_error; struct lu_error { enum lu_status code; char *string; }; #ifndef LU_DISABLE_DEPRECATED /** * lu_error_t: * * An alias for struct #lu_error. * Deprecated: 0.57.3: Use struct #lu_error directly. */ typedef struct lu_error lu_error_t; #endif /** * LU_ERROR_CHECK: * @err_p_p: A pointer to a struct #lu_error * which will be checked. * * Checks that the given pointer to a pointer to a struct does not already * point to a valid #lu_error structure, and calls abort() on failure. This * macro is used by many internal functions to check that an error has not * already occurred when they are invoked. */ #define LU_ERROR_CHECK(err_p_p) \ do { \ struct lu_error **__err = (err_p_p); \ if ((__err == NULL) || (*__err != NULL)) { \ if(__err == NULL) { \ fprintf(stderr, "libuser fatal error: %s() called with NULL " #err_p_p "\n", __FUNCTION__); \ } else \ if(*__err != NULL) { \ fprintf(stderr, "libuser fatal error: %s() called with non-NULL *" #err_p_p "\n", __FUNCTION__); \ } \ abort(); \ } \ } while(0) void lu_error_new(struct lu_error **error, enum lu_status code, const char *fmt, ...) G_GNUC_PRINTF(3, 4); const char *lu_strerror(struct lu_error *error); gboolean lu_error_is_success(enum lu_status status); gboolean lu_error_is_warning(enum lu_status status); gboolean lu_error_is_error(enum lu_status status); void lu_error_free(struct lu_error **error); G_END_DECLS #endif libuser-0.60~dfsg/lib/misc.c0000644000175000017500000002424312226342567015755 0ustar tzafrirtzafrir/* Copyright (C) 2000-2002, 2004 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include "user_private.h" #include "internal.h" /** * SECTION:value * @short_description: Simplified interface to GValue types used in libuser * entities. * @include: libuser/user.h * * Libuser entities store attribute values as #GValue, which allows representing * any possible data type. Only a few types are needed in practice; the only * types applications should hard-code are %G_TYPE_LONG and %G_TYPE_STRING * (%G_TYPE_STRING can usually be used as a fallback for other number types). * * The only currently used data types that are not conveniently supported using * the above types are #uid_t and #gid_t (which can be together represented in * #id_t), because they can support values outside of the range of #glong. * Helper functions are provided to convert values between #id_t and #GValue, * even if the value is stored using %G_TYPE_STRING. The #GValue types used * for storing #id_t values are an internal implementation detail of libuser * and applications should not rely on them. * * Values of each attribute are expected to have a specific type, documented in * the documentation of the specific attribute name. Using other types (e.g. * using %G_TYPE_STRING for %LU_UIDNUMBER) is not allowed and results in * undefined behavior. You can use lu_value_strdup() and * lu_value_init_set_attr_from_string() for conversion between strings and * values appropriate for a specific attribute. */ /** * lu_value_strdup: * @value: #GValue * * Converts @value, of any type used by libuser, to a string. Preferable to * hard-coding checks for expected value types. * * Returns: string, should be freed by g_free() */ char * lu_value_strdup(const GValue *value) { char *ret; if (G_VALUE_HOLDS_STRING(value)) ret = g_value_dup_string(value); else if (G_VALUE_HOLDS_LONG(value)) ret = g_strdup_printf("%ld", g_value_get_long(value)); else if (G_VALUE_HOLDS_INT64(value)) ret = g_strdup_printf("%lld", (long long)g_value_get_int64(value)); else { g_assert_not_reached(); ret = NULL; } return ret; } /** * lu_values_equal: * @a: #GValue * @b: #GValue * * Check whether @a and @b have the same type and value. * * Returns: #TRUE if @a and @b have the same type and value */ int lu_values_equal(const GValue *a, const GValue *b) { g_return_val_if_fail(G_VALUE_TYPE(a) == G_VALUE_TYPE(b), FALSE); if (G_VALUE_HOLDS_STRING(a)) return strcmp(g_value_get_string(a), g_value_get_string(b)) == 0; else if (G_VALUE_HOLDS_LONG(a)) return g_value_get_long(a) == g_value_get_long(b); else if (G_VALUE_HOLDS_INT64(a)) return g_value_get_int64(a) == g_value_get_int64(b); else { g_assert_not_reached(); return FALSE; } } /** * lu_value_init_set_id: * @value: #GValue * @id: User or group ID. * * Initializes a zero-filled (uninitialized) @value with an unspecified type and * sets it to @id. */ void lu_value_init_set_id(GValue *value, id_t id) { /* Don't unnecessarily change behavior when long is enough. Only when long isn't enough, we fail in more interesting ways instead of silently corrupting data. The (intmax_t) casts are needed to handle the (Linux) case when id_t is "unsigned long', otherwise the comparison would be (unsigned long)(long)id == id, which is always true. */ if ((intmax_t)(long)id == (intmax_t)id) { g_value_init(value, G_TYPE_LONG); g_value_set_long(value, id); } else { /* FIXME: check that int64 is enough */ g_value_init(value, G_TYPE_INT64); g_value_set_int64(value, id); } } /** * lu_value_get_id: * @value: #GValue * * Get the contents of @value. @value should be initialized by * lu_value_init_set_id() or use %G_TYPE_LONG or %G_TYPE_STRING. * * If @value does not contain a valid #id_t value, %LU_VALUE_INVALID_ID * is returned. * * Returns: ID value or %LU_VALUE_INVALID_ID */ id_t lu_value_get_id(const GValue *value) { long long val; if (G_VALUE_HOLDS_LONG(value)) val = g_value_get_long(value); else if (G_VALUE_HOLDS_INT64(value)) val = g_value_get_int64(value); else if (G_VALUE_HOLDS_STRING(value)) { const char *src; char *end; src = g_value_get_string(value); errno = 0; val = strtoll(src, &end, 10); if (errno != 0 || *end != 0 || end == src) g_return_val_if_reached(LU_VALUE_INVALID_ID); } else g_return_val_if_reached(LU_VALUE_INVALID_ID); g_return_val_if_fail((id_t)val == val, LU_VALUE_INVALID_ID); g_return_val_if_fail(val != LU_VALUE_INVALID_ID, LU_VALUE_INVALID_ID); return val; } /* Check whether NAME is within LIST, which is a NUL-separated sequence of strings, terminated by double NUL. */ static gboolean attr_in_list(const char *attr, const char *list) { size_t attr_len; attr_len = strlen(attr); while (*list != '\0') { size_t s_len; s_len = strlen(list); if (attr_len == s_len && strcmp(attr, list) == 0) return TRUE; list += s_len + 1; } return FALSE; } /** * lu_value_init_set_attr_from_string: * @value: #GValue * @attr: Attribute name * @string: The string to convert * @error: Filled with a #lu_error if an error occurs, or %NULL if @attr is * unknown * * Initializes a zero-filled (uninitialized) @value for storing a value of * attribute @attr and sets it to the contents of @string. To see whether a * specific type is used for an attribute, see the documentation of that * attribute. * * The error messages returned from this function don't contain the input * string, to allow the caller to output at least partially usable error * message without disclosing the invalid string in * e.g. /etc/shadow, which might be somebody's misplaced * password. * * Returns: %TRUE on success, %FALSE on error or if @attr is unknown */ gboolean lu_value_init_set_attr_from_string(GValue *value, const char *attr, const char *string, struct lu_error **error) { LU_ERROR_CHECK(error); #define A(NAME) NAME "\0" if (attr_in_list(attr, A(LU_USERNAME) A(LU_USERPASSWORD) A(LU_GECOS) A(LU_HOMEDIRECTORY) A(LU_LOGINSHELL) A(LU_GROUPNAME) A(LU_GROUPPASSWORD) A(LU_MEMBERNAME) A(LU_ADMINISTRATORNAME) A(LU_SHADOWNAME) A(LU_SHADOWPASSWORD) A(LU_COMMONNAME) A(LU_GIVENNAME) A(LU_SN) A(LU_ROOMNUMBER) A(LU_TELEPHONENUMBER) A(LU_HOMEPHONE) A(LU_EMAIL))) { g_value_init(value, G_TYPE_STRING); g_value_set_string(value, string); } else if (attr_in_list(attr, A(LU_SHADOWLASTCHANGE) A(LU_SHADOWMIN) A(LU_SHADOWMAX) A(LU_SHADOWWARNING) A(LU_SHADOWINACTIVE) A(LU_SHADOWEXPIRE) A(LU_SHADOWFLAG))) { long l; char *p; errno = 0; l = strtol(string, &p, 10); if (errno != 0 || *p != 0 || p == string) { lu_error_new(error, lu_error_invalid_attribute_value, _("invalid number")); return FALSE; } g_value_init(value, G_TYPE_LONG); g_value_set_long(value, l); } else if (attr_in_list(attr, A(LU_UIDNUMBER) A(LU_GIDNUMBER))) { intmax_t imax; char *p; errno = 0; imax = strtoimax(string, &p, 10); if (errno != 0 || *p != 0 || p == string || (id_t)imax != imax || imax == LU_VALUE_INVALID_ID) { lu_error_new(error, lu_error_invalid_attribute_value, _("invalid ID")); return FALSE; } lu_value_init_set_id(value, imax); } else { *error = NULL; return FALSE; } #undef A return TRUE; } /** * lu_set_prompter: * @context: A context * @prompter: A new function to user for getting information from the user * @callback_data: Data for @prompter * * Changes the prompter function in a context */ void lu_set_prompter(struct lu_context *context, lu_prompt_fn * prompter, gpointer prompter_data) { g_assert(prompter != NULL); context->prompter = prompter; context->prompter_data = prompter_data; } /** * lu_get_prompter: * @context: A context * @prompter: If not %NULL, points to a place where the current prompter * function will be stored * @callback_data: If not %NULL, points to a place where the current prompter * function data will be stored * * Gets current prompter function from a context. */ void lu_get_prompter(struct lu_context *context, lu_prompt_fn **prompter, gpointer *prompter_data) { if (prompter != NULL) { *prompter = context->prompter; } if (prompter_data != NULL) { *prompter_data = context->prompter_data; } } /** * lu_set_modules: * @context: A context * @list: A list of modules (separated by whitespace or commas) * @error: Filled with a #lu_error if an error occurs * * Replaces the current set of modules for queries in @context to @list. * * Returns: %TRUE on success, %FALSE on failure */ gboolean lu_set_modules(struct lu_context * context, const char *list, struct lu_error ** error) { return lu_modules_load(context, list, &context->module_names, error); } /** * lu_get_modules: * @context: A context * * Returns a list of modules for queries in @context. * * Returns: A list of modules separated by spaces, or %NULL if the list of * modules is empty. The list should not be freed by the caller. */ const char * lu_get_modules(struct lu_context *context) { char *tmp = NULL, *ret = NULL; size_t i; for (i = 0; i < context->module_names->n_values; i++) { GValue *value; value = g_value_array_get_nth(context->module_names, i); if (tmp) { char *p; p = g_strconcat(tmp, " ", g_value_get_string(value), NULL); g_free(tmp); tmp = p; } else { tmp = g_value_dup_string(value); } } if (tmp) { ret = context->scache->cache(context->scache, tmp); g_free(tmp); } return ret; } libuser-0.60~dfsg/lib/config.c0000644000175000017500000004716112226342567016273 0ustar tzafrirtzafrir/* Copyright (C) 2000-2002, 2005, 2008 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include "user_private.h" #include "internal.h" /** * SECTION:config * @short_description: Routines for reading configuration information for the * libuser library. * @include: libuser/config.h * * These routines allow an application or module to read configuration data * from the libuser configuration. */ #if defined(HAVE_SECURE_GETENV) # define safe_getenv(string) secure_getenv(string) #elif defined(HAVE___SECURE_GETENV) # define safe_getenv(string) __secure_getenv(string) #else # error Neither secure_getenv not __secure_getenv are available #endif struct config_config { struct lu_string_cache *cache; GTree *sections; /* GList of "struct config_key" for each section */ }; /* A (key, values) pair. */ struct config_key { char *key; GList *values; }; /* Compare two section names */ static int compare_section_names(gconstpointer a, gconstpointer b) { return g_ascii_strcasecmp(a, b); } /* Compare a struct config_key to a string */ static int compare_key_string(gconstpointer xa, gconstpointer b) { const struct config_key *a; a = xa; return g_ascii_strcasecmp(a->key, b); } /* Return TRUE if section/key is defined. */ static gboolean key_defined(struct config_config *config, const char *section, const char *key) { GList *sect; /* NULL (empty list) if not found */ sect = g_tree_lookup(config->sections, section); return g_list_find_custom(sect, key, compare_key_string) != NULL; } /* Add value to section/key (all in config->cache). */ static void key_add_cached(struct config_config *config, char *section, char *key, char *value) { GList *sect, *k; struct config_key *ck; /* NULL (empty list) if not found */ sect = g_tree_lookup(config->sections, section); k = g_list_find_custom(sect, key, compare_key_string); if (k != NULL) ck = k->data; else { ck = g_malloc(sizeof (*ck)); ck->key = key; ck->values = NULL; sect = g_list_append(sect, ck); g_tree_insert(config->sections, section, sect); } if (g_list_index(ck->values, value) == -1) ck->values = g_list_append(ck->values, value); } /* Open a file and read it to memory, appending a terminating '\0'. Return data for g_free (), or NULL on error. */ static char * read_file(const char *filename, struct lu_error **error) { int fd; struct stat st; char *data, *dest; size_t left; /* Try to open the file. */ fd = open(filename, O_RDONLY); if (fd == -1) { lu_error_new(error, lu_error_open, _("could not open configuration file `%s': %s"), filename, strerror(errno)); goto err; } if (fstat(fd, &st) == -1) { lu_error_new(error, lu_error_stat, _("could not stat configuration file `%s': %s"), filename, strerror(errno)); goto err_fd; } /* Read the file's contents in. */ left = st.st_size; assert (sizeof (off_t) >= sizeof (size_t)); if ((off_t)left != st.st_size) { lu_error_new(error, lu_error_generic, _("configuration file `%s' is too large"), filename); goto err_fd; } data = g_malloc(st.st_size + 1); dest = data; while (left != 0) { ssize_t res; res = read(fd, dest, left); if (res == 0) break; if (res == -1) { if (errno == EINTR) continue; lu_error_new(error, lu_error_read, _("could not read configuration file " "`%s': %s"), filename, strerror(errno)); goto err_data; } dest += res; left -= res; } close(fd); *dest = 0; return data; err_data: g_free(data); err_fd: close(fd); err: return NULL; } /* Process a line, and assuming it contains a value, return the key and value * it provides us. If we encounter a section start, change the section. */ static void process_line(char *line, struct lu_string_cache *cache, char **section, char **key, char **value) { char *equals, *p, *tmp; g_return_if_fail(line != NULL); g_return_if_fail(cache != NULL); g_return_if_fail(section != NULL); g_return_if_fail(key != NULL); g_return_if_fail(value != NULL); /* By default, return that we found nothing. */ *key = NULL; *value = NULL; /* Skip initial whitespace. */ while (isspace((unsigned char)*line) && (*line != '\0')) line++; /* If it's a comment, bail. */ if (*line == '#') { return; } /* If it's the beginning of a section, process it and clear the key * and value values. */ if (*line == '[') { line++; p = strchr(line, ']'); if (p) { tmp = g_strndup(line, p - line); *section = cache->cache(cache, tmp); g_free(tmp); } return; } /* If the line contains a value, split the key and the value, trim off * any additional whitespace, and return them. */ equals = strchr(line, '='); if (equals != NULL) { /* Trim any trailing whitespace off the key name. */ for (p = equals; p != line && isspace((unsigned char)p[-1]); p--) ; /* Save the key. */ tmp = g_strndup(line, p - line); *key = cache->cache(cache, tmp); g_free(tmp); /* Skip over any whitespace after the equal sign. */ for (line = equals + 1; isspace((unsigned char)*line) && *line != '\0'; line++) ; /* Trim off any trailing whitespace. */ p = strchr(line, '\0'); while (p != line && isspace((unsigned char)p[-1])) p--; /* Save the value. */ tmp = g_strndup(line, p - line); *value = cache->cache(cache, tmp); g_free(tmp); } } /* Forward declarations */ static gboolean import_login_defs(struct config_config *config, const char *filename, struct lu_error **error); static gboolean import_default_useradd(struct config_config *config, const char *filename, struct lu_error **error); /* Initialize the configuration structure. */ gboolean lu_cfg_init(struct lu_context *context, struct lu_error **error) { const char *filename = SYSCONFDIR "/libuser.conf"; struct config_config *config; char *data, *line, *xstrtok_ptr, *section = NULL; g_assert(context != NULL); /* Allow the LIBUSER_CONF environment variable to override where * we get the configuration file is, but only if we can trust the * environment. */ if ((getuid() == geteuid()) && (getgid() == getegid())) { const char *t; t = safe_getenv("LIBUSER_CONF"); if (t != NULL) filename = t; } data = read_file(filename, error); if (data == NULL) goto err; /* Create a new structure to save the data. */ config = g_malloc0(sizeof(struct config_config)); config->cache = lu_string_cache_new(FALSE); config->sections = g_tree_new(compare_section_names); context->config = config; for (line = strtok_r(data, "\n", &xstrtok_ptr); line != NULL; line = strtok_r(NULL, "\n", &xstrtok_ptr)) { char *key = NULL, *value = NULL; /* See what this line contains. */ process_line(line, config->cache, §ion, &key, &value); if (section && key && value && strlen(section) && strlen(key)) key_add_cached(config, section, key, value); } g_free(data); filename = lu_cfg_read_single(context, "import/login_defs", NULL); if (filename != NULL) { if (import_login_defs(config, filename, error) == FALSE) goto err; } filename = lu_cfg_read_single(context, "import/default_useradd", NULL); if (filename != NULL) { if (import_default_useradd(config, filename, error) == FALSE) goto err; } return TRUE; err: return FALSE; } /* Deallocate xsection */ static gboolean destroy_section (gpointer xkey, gpointer xsection, gpointer data) { GList *section, *key; (void)xkey; (void)data; section = xsection; for (key = section; key != NULL; key = key->next) { struct config_key *ck; ck = key->data; g_list_free(ck->values); g_free(ck); } g_list_free(section); return FALSE; } /* Free a configuration context structure. */ void lu_cfg_done(struct lu_context *context) { struct config_config *config; g_assert(context != NULL); g_assert(context->config != NULL); config = context->config; g_tree_foreach(config->sections, destroy_section, NULL); /* The values in the tree now point to deallocated memory. */ g_tree_destroy(config->sections); config->cache->free(config->cache); g_free(config); context->config = NULL; } /** * lu_cfg_read: * @context: A valid libuser library context. * @key: The value to be read from the configuration. The key should be of the * form "section/key" for most purposes. For example, the #files module uses * keys of the form "files/foo" for all of its configuration data. * @default_value: A default value to be returned in case none are found. Can * be %NULL. * * Reads the list of values for a given key from the configuration space. * * Returns: A #GList of values, formatted as strings. The list must be freed * by calling g_list_free(). */ GList * lu_cfg_read(struct lu_context *context, const char *key, const char *default_value) { struct config_config *config; char *section, *slash; GList *sect, *ret = NULL, *k; g_assert(context != NULL); g_assert(context->config != NULL); g_assert(key != NULL); g_assert(strlen(key) > 0); config = context->config; slash = strchr(key, '/'); if (slash == NULL) goto end; section = g_strndup(key, slash - key); /* NULL (empty list) if not found */ sect = g_tree_lookup(config->sections, section); g_free(section); k = g_list_find_custom(sect, slash + 1, compare_key_string); if (k != NULL) { struct config_key *ck; ck = k->data; ret = g_list_copy(ck->values); } end: /* If we still don't have data, return the default answer. */ if (ret == NULL) { if (default_value != NULL) { char *def; def = context->scache->cache(context->scache, default_value); ret = g_list_append(ret, def); } } return ret; } /** * lu_cfg_read_keys: * @context: A valid libuser library context. * @parent_key: The parent key under which the caller wishes to know which * subkeys are present. * * Read the names of all of the keys in a specified section of the configuration * space. This function is typically used for walking the configuration space. * * Returns: A #GList of string representations of key names. The list must be * freed using g_list_free(). */ GList * lu_cfg_read_keys(struct lu_context * context, const char *parent_key) { struct config_config *config; GList *sect, *ret = NULL; g_assert(context != NULL); g_assert(context->config != NULL); g_assert(parent_key != NULL); g_assert(strlen(parent_key) > 0); config = context->config; /* NULL (empty list) if not found */ for (sect = g_tree_lookup(config->sections, parent_key); sect != NULL; sect = sect->next) { struct config_key *ck; ck = sect->data; ret = g_list_append(ret, ck->key); } return ret; } /** * lu_cfg_read_single: * @context: A valid libuser library context. * @key: The value to be read from the configuration. The key should be of the * form "section/key" for most purposes. For example, the #files module uses * keys of the form "files/foo" for all of its configuration data. * @default_value: A default value to be returned in case none are found. Can * be %NULL. * * Read a single value set for a given key in the configuration space. This is * a convenience function. Additional values, if any, will be ignored. * * Returns: A string representation of one of the values set for the key. This * string must not be freed. */ const char * lu_cfg_read_single(struct lu_context *context, const char *key, const char *default_value) { GList *answers; const char *ret; g_assert(context != NULL); g_assert(context->config != NULL); /* Read the whole list. */ answers = lu_cfg_read(context, key, NULL); if (answers && answers->data) { /* Save the first value, and free the list. */ ret = context->scache->cache(context->scache, answers->data); g_list_free(answers); } else ret = context->scache->cache(context->scache, default_value); return ret; } /* shadow config file compatibility */ /* Add value to section/key. */ static void key_add(struct config_config *config, const char *section, const char *key, const char *value) { struct lu_string_cache *cache; cache = config->cache; key_add_cached(config, cache->cache(cache, section), cache->cache(cache, key), cache->cache(cache, value)); } #define ATTR_DEFINED(CONFIG, SECTION, KEY) \ (key_defined(CONFIG, SECTION, KEY) || key_defined(CONFIG, SECTION, #KEY)) struct handle_login_defs_key_data { struct config_config *config; GHashTable *hash; /* login.defs key (char *) => value (char *) */ }; /* Convert a single /etc/login.defs key to config */ static void handle_login_defs_key(gpointer xkey, gpointer xvalue, gpointer xv) { static const struct conversion { gboolean number; const char *shadow, *section, *key, *key2; } conv[] = { /* ENCRYPT_METHOD values are upper-case, crypt_style values are case-insensitive. */ { FALSE, "ENCRYPT_METHOD", "defaults", "crypt_style", NULL }, { TRUE, "GID_MIN", "groupdefaults", LU_GIDNUMBER, G_STRINGIFY_ARG(LU_GIDNUMBER) }, { FALSE, "MAIL_DIR", "defaults", "mailspooldir", NULL }, { TRUE, "PASS_MAX_DAYS", "userdefaults", LU_SHADOWMAX, G_STRINGIFY_ARG(LU_SHADOWMAX) }, { TRUE, "PASS_MIN_DAYS", "userdefaults", LU_SHADOWMIN, G_STRINGIFY_ARG(LU_SHADOWMIN) }, { TRUE, "PASS_WARN_AGE", "userdefaults", LU_SHADOWWARNING, G_STRINGIFY_ARG(LU_SHADOWWARNING) }, { TRUE, "SHA_CRYPT_MIN_ROUNDS", "defaults", "hash_rounds_min", NULL }, { TRUE, "SHA_CRYPT_MAX_ROUNDS", "defaults", "hash_rounds_max", NULL }, { TRUE, "UID_MIN", "userdefaults", LU_UIDNUMBER, G_STRINGIFY_ARG(LU_UIDNUMBER) }, }; const char *key, *value; struct handle_login_defs_key_data *v; size_t i; value = xvalue; key = xkey; v = xv; /* This is the only case that requires value conversion */ if (strcmp (key, "MD5_CRYPT_ENAB") == 0) { if (g_hash_table_lookup(v->hash, "ENCRYPT_METHOD") == NULL && !key_defined(v->config, "defaults", "crypt_style")) key_add(v->config, "defaults", "crypt_style", g_ascii_strcasecmp(value, "yes") == 0 ? "md5" : "des"); return; } for (i = 0; i < G_N_ELEMENTS(conv); i++) { if (strcmp (key, conv[i].shadow) != 0) continue; if (!key_defined(v->config, conv[i].section, conv[i].key) && (conv[i].key2 == NULL || !key_defined(v->config, conv[i].section, conv[i].key2))) { /* We need roughly 0.3 characters per bit, this just is an obvious upper bound. */ char buf[sizeof(intmax_t) * CHAR_BIT + 1]; if (conv[i].number != 0) { intmax_t num; char *end; errno = 0; num = strtoimax(value, &end, 0); if (errno != 0 || *end != 0 || end == value) break; /* Ignore this invalid value */ snprintf(buf, sizeof(buf), "%jd", num); value = buf; } key_add(v->config, conv[i].section, conv[i].key, value); } break; } /* Unimplemented: CREATE_HOME, GID_MAX, MAIL_FILE, SYSLOG_SG_ENAB, UID_MAX, UMASK, USERDEL_CMD, USERGROUPS_ENAB */ } /* Import data from /etc/login.defs if libuser.conf doesn't specify the values. */ static gboolean import_login_defs(struct config_config *config, const char *filename, struct lu_error **error) { char *data, *line, *xstrtok_ptr; struct handle_login_defs_key_data v; data = read_file(filename, error); if (data == NULL) goto err; v.hash = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); for (line = strtok_r(data, "\n", &xstrtok_ptr); line != NULL; line = strtok_r(NULL, "\n", &xstrtok_ptr)) { char *p, *key, *value; while (*line == ' ' || *line == '\t') line++; if (*line == 0 || *line == '#') continue; p = strpbrk(line, " \t"); if (p == NULL) continue; key = g_strndup(line, p - line); for (line = p; *line == ' ' || *line == '\t' || *line == '"'; line++) ; /* Note that shadow doesn't require that the quotes are either both present or both absent. */ p = strchr(line, '"'); if (p == NULL) { for (p = strchr(line, '\0'); p != line && (p[-1] == ' ' || p[-1] == '\t'); p--) ; } value = g_strndup(line, p - line); /* May replace an older value if there are multiple definitions; that's what shadow does. */ g_hash_table_insert(v.hash, key, value); } g_free(data); v.config = config; g_hash_table_foreach(v.hash, handle_login_defs_key, &v); g_hash_table_destroy(v.hash); return TRUE; err: return FALSE; } /* Convert a single /etc/default/useradd to config */ static void handle_default_useradd_key(gpointer xkey, gpointer xvalue, gpointer xconfig) { const char *key, *value; struct config_config *config; value = xvalue; key = xkey; config = xconfig; if (strcmp(key, "EXPIRE") == 0) { if (!ATTR_DEFINED(config, "userdefaults", LU_SHADOWEXPIRE)) { intmax_t day; char buf[sizeof (day) * CHAR_BIT + 1]; if (*value == 0) day = -1; else { time_t t; t = lu_get_date(value, NULL); if (t == -1) day = -1; else day = (t + (24 * 3600) / 2) / (24 * 3600); } snprintf(buf, sizeof(buf), "%jd", day); key_add(config, "userdefaults", LU_SHADOWEXPIRE, buf); } } else if (strcmp(key, "GROUP") == 0) { if (!ATTR_DEFINED(config, "userdefaults", LU_GIDNUMBER)) { char buf[LINE_MAX * 4]; intmax_t val; char *p; errno = 0; val = strtoimax(value, &p, 10); if (errno != 0 || *p != 0 || p == value || (gid_t)val != val) { struct group grp, *g; getgrnam_r(value, &grp, buf, sizeof(buf), &g); if (g != NULL) value = g->gr_name; /* else ignore the entry */ } key_add(config, "userdefaults", LU_GIDNUMBER, value); } } else if (strcmp(key, "HOME") == 0) { if (!ATTR_DEFINED(config, "userdefaults", LU_HOMEDIRECTORY)) { char *dir; dir = g_strconcat(value, "/%n", NULL); key_add(config, "userdefaults", LU_HOMEDIRECTORY, dir); g_free(dir); } } else if (strcmp(key, "INACTIVE") == 0) { if (!ATTR_DEFINED(config, "userdefaults", LU_SHADOWINACTIVE)) key_add(config, "userdefaults", LU_SHADOWINACTIVE, value); } else if (strcmp(key, "SHELL") == 0) { if (!ATTR_DEFINED(config, "userdefaults", LU_LOGINSHELL)) key_add(config, "userdefaults", LU_LOGINSHELL, value); } else if (strcmp(key, "SKEL") == 0) { if (!key_defined(config, "defaults", "skeleton")) key_add(config, "defaults", "skeleton", value); } } static gboolean import_default_useradd(struct config_config *config, const char *filename, struct lu_error **error) { GHashTable *hash; char *data, *line, *xstrtok_ptr; data = read_file(filename, error); if (data == NULL) goto err; hash = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); for (line = strtok_r(data, "\n", &xstrtok_ptr); line != NULL; line = strtok_r(NULL, "\n", &xstrtok_ptr)) { char *p, *key, *value; p = strchr(line, '='); if (p == NULL) continue; key = g_strndup(line, p - line); value = g_strdup(p + 1); /* May replace an older value if there are multiple definitions; that's what shadow does. */ g_hash_table_insert(hash, key, value); } g_free(data); g_hash_table_foreach(hash, handle_default_useradd_key, config); g_hash_table_destroy(hash); return TRUE; err: return FALSE; } libuser-0.60~dfsg/lib/getdate.c0000644000175000017500000023067012226342602016430 0ustar tzafrirtzafrir/* A Bison parser, made by GNU Bison 2.6.4. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.6.4" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 1 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Substitute the variable and function names. */ #define yyparse lu_gdparse #define yylex lu_gdlex #define yyerror lu_gderror #define yylval lu_gdlval #define yychar lu_gdchar #define yydebug lu_gddebug #define yynerrs lu_gdnerrs /* Copy the first part of user declarations. */ /* Line 358 of yacc.c */ #line 1 "lib/getdate.y" /* ** Originally written by Steven M. Bellovin while ** at the University of North Carolina at Chapel Hill. Later tweaked by ** a couple of people on Usenet. Completely overhauled by Rich $alz ** and Jim Berets in August, 1990; ** ** This grammar has 13 shift/reduce conflicts. ** ** This code is in the public domain and has no copyright. */ #ifdef HAVE_CONFIG_H # include #endif /* Since the code of getdate.y is not included in the Emacs executable itself, there is no need to #define static in this file. Even if the code were included in the Emacs executable, it probably wouldn't do any harm to #undef it here; this will only cause problems if we try to write to a static variable, which I don't think this code needs to do. */ #ifdef emacs # undef static #endif #include #include #include #include #include #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) #include "lib/internal.h" #define EPOCH 1970 #define HOUR(x) ((x) * 60) #define MAX_BUFF_LEN 128 /* size of buffer to read the date into */ /* ** An entry in the lexical lookup table. */ typedef struct _TABLE { const char *name; int type; int value; } TABLE; /* ** Meridian: am, pm, or 24-hour style. */ typedef enum _MERIDIAN { MERam, MERpm, MER24 } MERIDIAN; struct global { int DayOrdinal; int DayNumber; int HaveDate; int HaveDay; int HaveRel; int HaveTime; int HaveZone; int Timezone; int Day; int Hour; int Minutes; int Month; int Seconds; int Year; MERIDIAN Meridian; int RelDay; int RelHour; int RelMinutes; int RelMonth; int RelSeconds; int RelYear; }; union YYSTYPE; static int yylex (union YYSTYPE *lvalp, const char **yyInput); static int yyerror (const char **yyInput, struct global *yy, char *s); static int yyparse (const char **yyInput, struct global *yy); #define YYENABLE_NLS 0 #define YYLTYPE_IS_TRIVIAL 0 /* Line 358 of yacc.c */ #line 167 "lib/getdate.c" # ifndef YY_NULL # if defined __cplusplus && 201103L <= __cplusplus # define YY_NULL nullptr # else # define YY_NULL 0 # endif # endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif #if YYDEBUG extern int lu_gddebug; #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { tAGO = 258, tDAY = 259, tDAY_UNIT = 260, tDAYZONE = 261, tDST = 262, tHOUR_UNIT = 263, tID = 264, tMERIDIAN = 265, tMINUTE_UNIT = 266, tMONTH = 267, tMONTH_UNIT = 268, tSEC_UNIT = 269, tSNUMBER = 270, tUNUMBER = 271, tYEAR_UNIT = 272, tZONE = 273 }; #endif /* Tokens. */ #define tAGO 258 #define tDAY 259 #define tDAY_UNIT 260 #define tDAYZONE 261 #define tDST 262 #define tHOUR_UNIT 263 #define tID 264 #define tMERIDIAN 265 #define tMINUTE_UNIT 266 #define tMONTH 267 #define tMONTH_UNIT 268 #define tSEC_UNIT 269 #define tSNUMBER 270 #define tUNUMBER 271 #define tYEAR_UNIT 272 #define tZONE 273 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 374 of yacc.c */ #line 100 "lib/getdate.y" int Number; enum _MERIDIAN Meridian; /* Line 374 of yacc.c */ #line 249 "lib/getdate.c" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 #endif #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int lu_gdparse (void *YYPARSE_PARAM); #else int lu_gdparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int lu_gdparse (const char **yyInput, struct global *yy); #else int lu_gdparse (); #endif #endif /* ! YYPARSE_PARAM */ /* Copy the second part of user declarations. */ /* Line 377 of yacc.c */ #line 276 "lib/getdate.c" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(Msgid) dgettext ("bison-runtime", Msgid) # endif # endif # ifndef YY_ # define YY_(Msgid) Msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(E) ((void) (E)) #else # define YYUSE(E) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(N) (N) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ /* Use EXIT_SUCCESS as a witness for stdlib.h. */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from SRC to DST. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(Dst, Src, Count) \ __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src))) # else # define YYCOPY(Dst, Src, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (Dst)[yyi] = (Src)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 2 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 50 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 22 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 11 /* YYNRULES -- Number of rules. */ #define YYNRULES 51 /* YYNRULES -- Number of states. */ #define YYNSTATES 61 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 273 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 20, 2, 2, 21, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 19, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint8 yyprhs[] = { 0, 0, 3, 4, 7, 9, 11, 13, 15, 17, 19, 22, 27, 32, 39, 46, 48, 50, 53, 55, 58, 61, 65, 71, 75, 79, 82, 87, 90, 94, 97, 99, 102, 105, 107, 110, 113, 115, 118, 121, 123, 126, 129, 131, 134, 137, 139, 142, 145, 147, 149, 150 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int8 yyrhs[] = { 23, 0, -1, -1, 23, 24, -1, 25, -1, 26, -1, 28, -1, 27, -1, 29, -1, 31, -1, 16, 10, -1, 16, 19, 16, 32, -1, 16, 19, 16, 15, -1, 16, 19, 16, 19, 16, 32, -1, 16, 19, 16, 19, 16, 15, -1, 18, -1, 6, -1, 18, 7, -1, 4, -1, 4, 20, -1, 16, 4, -1, 16, 21, 16, -1, 16, 21, 16, 21, 16, -1, 16, 15, 15, -1, 16, 12, 15, -1, 12, 16, -1, 12, 16, 20, 16, -1, 16, 12, -1, 16, 12, 16, -1, 30, 3, -1, 30, -1, 16, 17, -1, 15, 17, -1, 17, -1, 16, 13, -1, 15, 13, -1, 13, -1, 16, 5, -1, 15, 5, -1, 5, -1, 16, 8, -1, 15, 8, -1, 8, -1, 16, 11, -1, 15, 11, -1, 11, -1, 16, 14, -1, 15, 14, -1, 14, -1, 16, -1, -1, 10, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 118, 118, 119, 122, 125, 128, 131, 134, 137, 140, 146, 152, 161, 167, 179, 182, 186, 191, 195, 199, 205, 209, 227, 233, 239, 243, 248, 252, 259, 267, 270, 273, 276, 279, 282, 285, 288, 291, 294, 297, 300, 303, 306, 309, 312, 315, 318, 321, 326, 360, 363 }; #endif #if YYDEBUG || YYERROR_VERBOSE || 0 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "tAGO", "tDAY", "tDAY_UNIT", "tDAYZONE", "tDST", "tHOUR_UNIT", "tID", "tMERIDIAN", "tMINUTE_UNIT", "tMONTH", "tMONTH_UNIT", "tSEC_UNIT", "tSNUMBER", "tUNUMBER", "tYEAR_UNIT", "tZONE", "':'", "','", "'/'", "$accept", "spec", "item", "time", "zone", "day", "date", "rel", "relunit", "number", "o_merid", YY_NULL }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 58, 44, 47 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint8 yyr1[] = { 0, 22, 23, 23, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 26, 26, 26, 27, 27, 27, 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 31, 32, 32 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 2, 1, 1, 1, 1, 1, 1, 2, 4, 4, 6, 6, 1, 1, 2, 1, 2, 2, 3, 5, 3, 3, 2, 4, 2, 3, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 1, 0, 1 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint8 yydefact[] = { 2, 0, 1, 18, 39, 16, 42, 45, 0, 36, 48, 0, 49, 33, 15, 3, 4, 5, 7, 6, 8, 30, 9, 19, 25, 38, 41, 44, 35, 47, 32, 20, 37, 40, 10, 43, 27, 34, 46, 0, 31, 0, 0, 17, 29, 0, 24, 28, 23, 50, 21, 26, 51, 12, 0, 11, 0, 50, 22, 14, 13 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int8 yydefgoto[] = { -1, 1, 15, 16, 17, 18, 19, 20, 21, 22, 55 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -20 static const yytype_int8 yypact[] = { -20, 0, -20, -19, -20, -20, -20, -20, -13, -20, -20, 30, 15, -20, 14, -20, -20, -20, -20, -20, -20, 19, -20, -20, 4, -20, -20, -20, -20, -20, -20, -20, -20, -20, -20, -20, -6, -20, -20, 16, -20, 17, 23, -20, -20, 24, -20, -20, -20, 27, 28, -20, -20, -20, 29, -20, 32, -8, -20, -20, -20 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int8 yypgoto[] = { -20, -20, -20, -20, -20, -20, -20, -20, -20, -20, -7 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which number is the opposite. If YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -1 static const yytype_uint8 yytable[] = { 2, 23, 52, 24, 3, 4, 5, 59, 6, 46, 47, 7, 8, 9, 10, 11, 12, 13, 14, 31, 32, 43, 44, 33, 45, 34, 35, 36, 37, 38, 39, 48, 40, 49, 41, 25, 42, 52, 26, 50, 51, 27, 53, 28, 29, 57, 54, 30, 58, 56, 60 }; #define yypact_value_is_default(Yystate) \ (!!((Yystate) == (-20))) #define yytable_value_is_error(Yytable_value) \ YYID (0) static const yytype_uint8 yycheck[] = { 0, 20, 10, 16, 4, 5, 6, 15, 8, 15, 16, 11, 12, 13, 14, 15, 16, 17, 18, 4, 5, 7, 3, 8, 20, 10, 11, 12, 13, 14, 15, 15, 17, 16, 19, 5, 21, 10, 8, 16, 16, 11, 15, 13, 14, 16, 19, 17, 16, 21, 57 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { 0, 23, 0, 4, 5, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 24, 25, 26, 27, 28, 29, 30, 31, 20, 16, 5, 8, 11, 13, 14, 17, 4, 5, 8, 10, 11, 12, 13, 14, 15, 17, 19, 21, 7, 3, 20, 15, 16, 15, 16, 16, 16, 10, 15, 19, 32, 21, 16, 16, 15, 32 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (yylen); \ yystate = *yyssp; \ goto yybackup; \ } \ else \ { \ yyerror (yyInput, yy, YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif #define YYRHSLOC(Rhs, K) ((Rhs)[K]) /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (&yylval, YYLEX_PARAM) #else # define YYLEX yylex (&yylval, yyInput) #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value, yyInput, yy); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, const char **yyInput, struct global *yy) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep, yyInput, yy) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; const char **yyInput; struct global *yy; #endif { FILE *yyo = yyoutput; YYUSE (yyo); if (!yyvaluep) return; YYUSE (yyInput); YYUSE (yy); # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, const char **yyInput, struct global *yy) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep, yyInput, yy) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; const char **yyInput; struct global *yy; #endif { if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); else YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep, yyInput, yy); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void yy_stack_print (yybottom, yytop) yytype_int16 *yybottom; yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule, const char **yyInput, struct global *yy) #else static void yy_reduce_print (yyvsp, yyrule, yyInput, yy) YYSTYPE *yyvsp; int yyrule; const char **yyInput; struct global *yy; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) , yyInput, yy); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyvsp, Rule, yyInput, yy); \ } while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = YY_NULL; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, const char **yyInput, struct global *yy) #else static void yydestruct (yymsg, yytype, yyvaluep, yyInput, yy) const char *yymsg; int yytype; YYSTYPE *yyvaluep; const char **yyInput; struct global *yy; #endif { YYUSE (yyvaluep); YYUSE (yyInput); YYUSE (yy); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { default: break; } } /*----------. | yyparse. | `----------*/ #ifdef YYPARSE_PARAM #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void *YYPARSE_PARAM) #else int yyparse (YYPARSE_PARAM) void *YYPARSE_PARAM; #endif #else /* ! YYPARSE_PARAM */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (const char **yyInput, struct global *yy) #else int yyparse (yyInput, yy) const char **yyInput; struct global *yy; #endif #endif { /* The lookahead symbol. */ int yychar; #if defined __GNUC__ && (4 < __GNUC__ + (6 <= __GNUC_MINOR__)) /* Suppress an incorrect diagnostic about yylval being uninitialized. */ # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ _Pragma ("GCC diagnostic pop") #else /* Default value used for initialization, for pacifying older GCCs or non-GCC compilers. */ static YYSTYPE yyval_default; # define YYLVAL_INITIALIZE() (yylval = yyval_default) #endif #ifndef YYLVAL_INITIALIZE # define YYLVAL_INITIALIZE() #endif #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_END #endif /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: `yyss': related to states. `yyvs': related to semantic values. Refer to the stacks through separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken = 0; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; YYLVAL_INITIALIZE (); goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 4: /* Line 1813 of yacc.c */ #line 122 "lib/getdate.y" { yy->HaveTime++; } break; case 5: /* Line 1813 of yacc.c */ #line 125 "lib/getdate.y" { yy->HaveZone++; } break; case 6: /* Line 1813 of yacc.c */ #line 128 "lib/getdate.y" { yy->HaveDate++; } break; case 7: /* Line 1813 of yacc.c */ #line 131 "lib/getdate.y" { yy->HaveDay++; } break; case 8: /* Line 1813 of yacc.c */ #line 134 "lib/getdate.y" { yy->HaveRel++; } break; case 10: /* Line 1813 of yacc.c */ #line 140 "lib/getdate.y" { yy->Hour = (yyvsp[(1) - (2)].Number); yy->Minutes = 0; yy->Seconds = 0; yy->Meridian = (yyvsp[(2) - (2)].Meridian); } break; case 11: /* Line 1813 of yacc.c */ #line 146 "lib/getdate.y" { yy->Hour = (yyvsp[(1) - (4)].Number); yy->Minutes = (yyvsp[(3) - (4)].Number); yy->Seconds = 0; yy->Meridian = (yyvsp[(4) - (4)].Meridian); } break; case 12: /* Line 1813 of yacc.c */ #line 152 "lib/getdate.y" { yy->Hour = (yyvsp[(1) - (4)].Number); yy->Minutes = (yyvsp[(3) - (4)].Number); yy->Meridian = MER24; yy->HaveZone++; yy->Timezone = ((yyvsp[(4) - (4)].Number) < 0 ? -(yyvsp[(4) - (4)].Number) % 100 + (-(yyvsp[(4) - (4)].Number) / 100) * 60 : - ((yyvsp[(4) - (4)].Number) % 100 + ((yyvsp[(4) - (4)].Number) / 100) * 60)); } break; case 13: /* Line 1813 of yacc.c */ #line 161 "lib/getdate.y" { yy->Hour = (yyvsp[(1) - (6)].Number); yy->Minutes = (yyvsp[(3) - (6)].Number); yy->Seconds = (yyvsp[(5) - (6)].Number); yy->Meridian = (yyvsp[(6) - (6)].Meridian); } break; case 14: /* Line 1813 of yacc.c */ #line 167 "lib/getdate.y" { yy->Hour = (yyvsp[(1) - (6)].Number); yy->Minutes = (yyvsp[(3) - (6)].Number); yy->Seconds = (yyvsp[(5) - (6)].Number); yy->Meridian = MER24; yy->HaveZone++; yy->Timezone = ((yyvsp[(6) - (6)].Number) < 0 ? -(yyvsp[(6) - (6)].Number) % 100 + (-(yyvsp[(6) - (6)].Number) / 100) * 60 : - ((yyvsp[(6) - (6)].Number) % 100 + ((yyvsp[(6) - (6)].Number) / 100) * 60)); } break; case 15: /* Line 1813 of yacc.c */ #line 179 "lib/getdate.y" { yy->Timezone = (yyvsp[(1) - (1)].Number); } break; case 16: /* Line 1813 of yacc.c */ #line 182 "lib/getdate.y" { yy->Timezone = (yyvsp[(1) - (1)].Number) - 60; } break; case 17: /* Line 1813 of yacc.c */ #line 186 "lib/getdate.y" { yy->Timezone = (yyvsp[(1) - (2)].Number) - 60; } break; case 18: /* Line 1813 of yacc.c */ #line 191 "lib/getdate.y" { yy->DayOrdinal = 1; yy->DayNumber = (yyvsp[(1) - (1)].Number); } break; case 19: /* Line 1813 of yacc.c */ #line 195 "lib/getdate.y" { yy->DayOrdinal = 1; yy->DayNumber = (yyvsp[(1) - (2)].Number); } break; case 20: /* Line 1813 of yacc.c */ #line 199 "lib/getdate.y" { yy->DayOrdinal = (yyvsp[(1) - (2)].Number); yy->DayNumber = (yyvsp[(2) - (2)].Number); } break; case 21: /* Line 1813 of yacc.c */ #line 205 "lib/getdate.y" { yy->Month = (yyvsp[(1) - (3)].Number); yy->Day = (yyvsp[(3) - (3)].Number); } break; case 22: /* Line 1813 of yacc.c */ #line 209 "lib/getdate.y" { /* Interpret as YY->YY/MM/DD if $1 >= 1000, otherwise as MM/DD/YY. The goal in recognizing YY->YY/MM/DD is solely to support legacy machine-generated dates like those in an RCS log listing. If you want portability, use the ISO 8601 format. */ if ((yyvsp[(1) - (5)].Number) >= 1000) { yy->Year = (yyvsp[(1) - (5)].Number); yy->Month = (yyvsp[(3) - (5)].Number); yy->Day = (yyvsp[(5) - (5)].Number); } else { yy->Month = (yyvsp[(1) - (5)].Number); yy->Day = (yyvsp[(3) - (5)].Number); yy->Year = (yyvsp[(5) - (5)].Number); } } break; case 23: /* Line 1813 of yacc.c */ #line 227 "lib/getdate.y" { /* ISO 8601 format. yy->yy-mm-dd. */ yy->Year = (yyvsp[(1) - (3)].Number); yy->Month = -(yyvsp[(2) - (3)].Number); yy->Day = -(yyvsp[(3) - (3)].Number); } break; case 24: /* Line 1813 of yacc.c */ #line 233 "lib/getdate.y" { /* e.g. 17-JUN-1992. */ yy->Day = (yyvsp[(1) - (3)].Number); yy->Month = (yyvsp[(2) - (3)].Number); yy->Year = -(yyvsp[(3) - (3)].Number); } break; case 25: /* Line 1813 of yacc.c */ #line 239 "lib/getdate.y" { yy->Month = (yyvsp[(1) - (2)].Number); yy->Day = (yyvsp[(2) - (2)].Number); } break; case 26: /* Line 1813 of yacc.c */ #line 243 "lib/getdate.y" { yy->Month = (yyvsp[(1) - (4)].Number); yy->Day = (yyvsp[(2) - (4)].Number); yy->Year = (yyvsp[(4) - (4)].Number); } break; case 27: /* Line 1813 of yacc.c */ #line 248 "lib/getdate.y" { yy->Month = (yyvsp[(2) - (2)].Number); yy->Day = (yyvsp[(1) - (2)].Number); } break; case 28: /* Line 1813 of yacc.c */ #line 252 "lib/getdate.y" { yy->Month = (yyvsp[(2) - (3)].Number); yy->Day = (yyvsp[(1) - (3)].Number); yy->Year = (yyvsp[(3) - (3)].Number); } break; case 29: /* Line 1813 of yacc.c */ #line 259 "lib/getdate.y" { yy->RelSeconds = -yy->RelSeconds; yy->RelMinutes = -yy->RelMinutes; yy->RelHour = -yy->RelHour; yy->RelDay = -yy->RelDay; yy->RelMonth = -yy->RelMonth; yy->RelYear = -yy->RelYear; } break; case 31: /* Line 1813 of yacc.c */ #line 270 "lib/getdate.y" { yy->RelYear += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 32: /* Line 1813 of yacc.c */ #line 273 "lib/getdate.y" { yy->RelYear += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 33: /* Line 1813 of yacc.c */ #line 276 "lib/getdate.y" { yy->RelYear++; } break; case 34: /* Line 1813 of yacc.c */ #line 279 "lib/getdate.y" { yy->RelMonth += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 35: /* Line 1813 of yacc.c */ #line 282 "lib/getdate.y" { yy->RelMonth += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 36: /* Line 1813 of yacc.c */ #line 285 "lib/getdate.y" { yy->RelMonth++; } break; case 37: /* Line 1813 of yacc.c */ #line 288 "lib/getdate.y" { yy->RelDay += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 38: /* Line 1813 of yacc.c */ #line 291 "lib/getdate.y" { yy->RelDay += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 39: /* Line 1813 of yacc.c */ #line 294 "lib/getdate.y" { yy->RelDay++; } break; case 40: /* Line 1813 of yacc.c */ #line 297 "lib/getdate.y" { yy->RelHour += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 41: /* Line 1813 of yacc.c */ #line 300 "lib/getdate.y" { yy->RelHour += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 42: /* Line 1813 of yacc.c */ #line 303 "lib/getdate.y" { yy->RelHour++; } break; case 43: /* Line 1813 of yacc.c */ #line 306 "lib/getdate.y" { yy->RelMinutes += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 44: /* Line 1813 of yacc.c */ #line 309 "lib/getdate.y" { yy->RelMinutes += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 45: /* Line 1813 of yacc.c */ #line 312 "lib/getdate.y" { yy->RelMinutes++; } break; case 46: /* Line 1813 of yacc.c */ #line 315 "lib/getdate.y" { yy->RelSeconds += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 47: /* Line 1813 of yacc.c */ #line 318 "lib/getdate.y" { yy->RelSeconds += (yyvsp[(1) - (2)].Number) * (yyvsp[(2) - (2)].Number); } break; case 48: /* Line 1813 of yacc.c */ #line 321 "lib/getdate.y" { yy->RelSeconds++; } break; case 49: /* Line 1813 of yacc.c */ #line 327 "lib/getdate.y" { if (yy->HaveTime && yy->HaveDate && !yy->HaveRel) yy->Year = (yyvsp[(1) - (1)].Number); else { if ((yyvsp[(1) - (1)].Number)>10000) { yy->HaveDate++; yy->Day= ((yyvsp[(1) - (1)].Number))%100; yy->Month= ((yyvsp[(1) - (1)].Number)/100)%100; yy->Year = (yyvsp[(1) - (1)].Number)/10000; } else { yy->HaveTime++; if ((yyvsp[(1) - (1)].Number) < 100) { yy->Hour = (yyvsp[(1) - (1)].Number); yy->Minutes = 0; } else { yy->Hour = (yyvsp[(1) - (1)].Number) / 100; yy->Minutes = (yyvsp[(1) - (1)].Number) % 100; } yy->Seconds = 0; yy->Meridian = MER24; } } } break; case 50: /* Line 1813 of yacc.c */ #line 360 "lib/getdate.y" { (yyval.Meridian) = MER24; } break; case 51: /* Line 1813 of yacc.c */ #line 364 "lib/getdate.y" { (yyval.Meridian) = (yyvsp[(1) - (1)].Meridian); } break; /* Line 1813 of yacc.c */ #line 2036 "lib/getdate.c" default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*------------------------------------. | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (yyInput, yy, YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (yyInput, yy, yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval, yyInput, yy); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule which action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp, yyInput, yy); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined yyoverflow || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (yyInput, yy, YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval, yyInput, yy); } /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp, yyInput, yy); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif /* Make sure YYID is used. */ return YYID (yyresult); } /* Line 2076 of yacc.c */ #line 369 "lib/getdate.y" /* Month and day table. */ static TABLE const MonthDayTable[] = { { "january", tMONTH, 1 }, { "february", tMONTH, 2 }, { "march", tMONTH, 3 }, { "april", tMONTH, 4 }, { "may", tMONTH, 5 }, { "june", tMONTH, 6 }, { "july", tMONTH, 7 }, { "august", tMONTH, 8 }, { "september", tMONTH, 9 }, { "sept", tMONTH, 9 }, { "october", tMONTH, 10 }, { "november", tMONTH, 11 }, { "december", tMONTH, 12 }, { "sunday", tDAY, 0 }, { "monday", tDAY, 1 }, { "tuesday", tDAY, 2 }, { "tues", tDAY, 2 }, { "wednesday", tDAY, 3 }, { "wednes", tDAY, 3 }, { "thursday", tDAY, 4 }, { "thur", tDAY, 4 }, { "thurs", tDAY, 4 }, { "friday", tDAY, 5 }, { "saturday", tDAY, 6 }, { NULL, 0, 0 } }; /* Time units table. */ static TABLE const UnitsTable[] = { { "year", tYEAR_UNIT, 1 }, { "month", tMONTH_UNIT, 1 }, { "fortnight", tDAY_UNIT, 14 }, { "week", tDAY_UNIT, 7 }, { "day", tDAY_UNIT, 1 }, { "hour", tHOUR_UNIT, 1 }, { "minute", tMINUTE_UNIT, 1 }, { "min", tMINUTE_UNIT, 1 }, { "second", tSEC_UNIT, 1 }, { "sec", tSEC_UNIT, 1 }, { NULL, 0, 0 } }; /* Assorted relative-time words. */ static TABLE const OtherTable[] = { { "tomorrow", tMINUTE_UNIT, 1 * 24 * 60 }, { "yesterday", tMINUTE_UNIT, -1 * 24 * 60 }, { "today", tMINUTE_UNIT, 0 }, { "now", tMINUTE_UNIT, 0 }, { "last", tUNUMBER, -1 }, { "this", tMINUTE_UNIT, 0 }, { "next", tUNUMBER, 2 }, { "first", tUNUMBER, 1 }, /* { "second", tUNUMBER, 2 }, */ { "third", tUNUMBER, 3 }, { "fourth", tUNUMBER, 4 }, { "fifth", tUNUMBER, 5 }, { "sixth", tUNUMBER, 6 }, { "seventh", tUNUMBER, 7 }, { "eighth", tUNUMBER, 8 }, { "ninth", tUNUMBER, 9 }, { "tenth", tUNUMBER, 10 }, { "eleventh", tUNUMBER, 11 }, { "twelfth", tUNUMBER, 12 }, { "ago", tAGO, 1 }, { NULL, 0, 0 } }; /* The timezone table. */ static TABLE const TimezoneTable[] = { { "gmt", tZONE, HOUR ( 0) }, /* Greenwich Mean */ { "ut", tZONE, HOUR ( 0) }, /* Universal (Coordinated) */ { "utc", tZONE, HOUR ( 0) }, { "wet", tZONE, HOUR ( 0) }, /* Western European */ { "bst", tDAYZONE, HOUR ( 0) }, /* British Summer */ { "wat", tZONE, HOUR ( 1) }, /* West Africa */ { "at", tZONE, HOUR ( 2) }, /* Azores */ { "ast", tZONE, HOUR ( 4) }, /* Atlantic Standard */ { "adt", tDAYZONE, HOUR ( 4) }, /* Atlantic Daylight */ { "est", tZONE, HOUR ( 5) }, /* Eastern Standard */ { "edt", tDAYZONE, HOUR ( 5) }, /* Eastern Daylight */ { "cst", tZONE, HOUR ( 6) }, /* Central Standard */ { "cdt", tDAYZONE, HOUR ( 6) }, /* Central Daylight */ { "mst", tZONE, HOUR ( 7) }, /* Mountain Standard */ { "mdt", tDAYZONE, HOUR ( 7) }, /* Mountain Daylight */ { "pst", tZONE, HOUR ( 8) }, /* Pacific Standard */ { "pdt", tDAYZONE, HOUR ( 8) }, /* Pacific Daylight */ { "yst", tZONE, HOUR ( 9) }, /* Yukon Standard */ { "ydt", tDAYZONE, HOUR ( 9) }, /* Yukon Daylight */ { "hst", tZONE, HOUR (10) }, /* Hawaii Standard */ { "hdt", tDAYZONE, HOUR (10) }, /* Hawaii Daylight */ { "cat", tZONE, HOUR (10) }, /* Central Alaska */ { "ahst", tZONE, HOUR (10) }, /* Alaska-Hawaii Standard */ { "nt", tZONE, HOUR (11) }, /* Nome */ { "idlw", tZONE, HOUR (12) }, /* International Date Line West */ { "cet", tZONE, -HOUR (1) }, /* Central European */ { "met", tZONE, -HOUR (1) }, /* Middle European */ { "mewt", tZONE, -HOUR (1) }, /* Middle European Winter */ { "mest", tDAYZONE, -HOUR (1) }, /* Middle European Summer */ { "mesz", tDAYZONE, -HOUR (1) }, /* Middle European Summer */ { "swt", tZONE, -HOUR (1) }, /* Swedish Winter */ { "sst", tDAYZONE, -HOUR (1) }, /* Swedish Summer */ { "fwt", tZONE, -HOUR (1) }, /* French Winter */ { "fst", tDAYZONE, -HOUR (1) }, /* French Summer */ { "eet", tZONE, -HOUR (2) }, /* Eastern Europe, USSR Zone 1 */ { "bt", tZONE, -HOUR (3) }, /* Baghdad, USSR Zone 2 */ { "zp4", tZONE, -HOUR (4) }, /* USSR Zone 3 */ { "zp5", tZONE, -HOUR (5) }, /* USSR Zone 4 */ { "zp6", tZONE, -HOUR (6) }, /* USSR Zone 5 */ { "wast", tZONE, -HOUR (7) }, /* West Australian Standard */ { "wadt", tDAYZONE, -HOUR (7) }, /* West Australian Daylight */ { "cct", tZONE, -HOUR (8) }, /* China Coast, USSR Zone 7 */ { "jst", tZONE, -HOUR (9) }, /* Japan Standard, USSR Zone 8 */ { "east", tZONE, -HOUR (10) }, /* Eastern Australian Standard */ { "eadt", tDAYZONE, -HOUR (10) }, /* Eastern Australian Daylight */ { "gst", tZONE, -HOUR (10) }, /* Guam Standard, USSR Zone 9 */ { "nzt", tZONE, -HOUR (12) }, /* New Zealand */ { "nzst", tZONE, -HOUR (12) }, /* New Zealand Standard */ { "nzdt", tDAYZONE, -HOUR (12) }, /* New Zealand Daylight */ { "idle", tZONE, -HOUR (12) }, /* International Date Line East */ { NULL, 0, 0 } }; /* Military timezone table. */ static TABLE const MilitaryTable[] = { { "a", tZONE, HOUR ( 1) }, { "b", tZONE, HOUR ( 2) }, { "c", tZONE, HOUR ( 3) }, { "d", tZONE, HOUR ( 4) }, { "e", tZONE, HOUR ( 5) }, { "f", tZONE, HOUR ( 6) }, { "g", tZONE, HOUR ( 7) }, { "h", tZONE, HOUR ( 8) }, { "i", tZONE, HOUR ( 9) }, { "k", tZONE, HOUR ( 10) }, { "l", tZONE, HOUR ( 11) }, { "m", tZONE, HOUR ( 12) }, { "n", tZONE, HOUR (- 1) }, { "o", tZONE, HOUR (- 2) }, { "p", tZONE, HOUR (- 3) }, { "q", tZONE, HOUR (- 4) }, { "r", tZONE, HOUR (- 5) }, { "s", tZONE, HOUR (- 6) }, { "t", tZONE, HOUR (- 7) }, { "u", tZONE, HOUR (- 8) }, { "v", tZONE, HOUR (- 9) }, { "w", tZONE, HOUR (-10) }, { "x", tZONE, HOUR (-11) }, { "y", tZONE, HOUR (-12) }, { "z", tZONE, HOUR ( 0) }, { NULL, 0, 0 } }; /* ARGSUSED */ static int yyerror (const char **yyInput, struct global *yy, char *s) { (void)yyInput; (void)yy; (void)s; return 0; } static int ToHour (int Hours, MERIDIAN Meridian) { switch (Meridian) { case MER24: if (Hours < 0 || Hours > 23) return -1; return Hours; case MERam: if (Hours < 1 || Hours > 12) return -1; if (Hours == 12) Hours = 0; return Hours; case MERpm: if (Hours < 1 || Hours > 12) return -1; if (Hours == 12) Hours = 0; return Hours + 12; default: abort (); } /* NOTREACHED */ } static int ToYear (int Year) { if (Year < 0) Year = -Year; /* XPG4 suggests that years 00-68 map to 2000-2068, and years 69-99 map to 1969-1999. */ if (Year < 69) Year += 2000; else if (Year < 100) Year += 1900; return Year; } static int LookupWord (YYSTYPE *lvalp, char *buff) { register char *p; register char *q; register const TABLE *tp; int i; int abbrev; /* Make it lowercase. */ for (p = buff; *p; p++) if (isupper ((unsigned char)*p)) *p = tolower ((unsigned char)*p); if (strcmp (buff, "am") == 0 || strcmp (buff, "a.m.") == 0) { lvalp->Meridian = MERam; return tMERIDIAN; } if (strcmp (buff, "pm") == 0 || strcmp (buff, "p.m.") == 0) { lvalp->Meridian = MERpm; return tMERIDIAN; } /* See if we have an abbreviation for a month. */ if (strlen (buff) == 3) abbrev = 1; else if (strlen (buff) == 4 && buff[3] == '.') { abbrev = 1; buff[3] = '\0'; } else abbrev = 0; for (tp = MonthDayTable; tp->name; tp++) { if (abbrev) { if (strncmp (buff, tp->name, 3) == 0) { lvalp->Number = tp->value; return tp->type; } } else if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } } for (tp = TimezoneTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } if (strcmp (buff, "dst") == 0) return tDST; for (tp = UnitsTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } /* Strip off any plural and try the units table again. */ i = strlen (buff) - 1; if (buff[i] == 's') { buff[i] = '\0'; for (tp = UnitsTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } buff[i] = 's'; /* Put back for "this" in OtherTable. */ } for (tp = OtherTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } /* Military timezones. */ if (buff[1] == '\0' && isalpha ((unsigned char)*buff)) { for (tp = MilitaryTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } } /* Drop out any periods and try the timezone table again. */ for (i = 0, p = q = buff; *q; q++) if (*q != '.') *p++ = *q; else i++; *p = '\0'; if (i) for (tp = TimezoneTable; tp->name; tp++) if (strcmp (buff, tp->name) == 0) { lvalp->Number = tp->value; return tp->type; } return tID; } static int yylex (YYSTYPE *lvalp, const char **yyInput) { register char c; register char *p; char buff[20]; int Count; int sign; for (;;) { while (isspace ((unsigned char)**yyInput)) (*yyInput)++; if (ISDIGIT (c = **yyInput) || c == '-' || c == '+') { if (c == '-' || c == '+') { sign = c == '-' ? -1 : 1; if (!ISDIGIT (*++*yyInput)) /* skip the '-' sign */ continue; } else sign = 0; for (lvalp->Number = 0; ISDIGIT (c = *(*yyInput)++);) lvalp->Number = 10 * lvalp->Number + c - '0'; (*yyInput)--; if (sign < 0) lvalp->Number = -lvalp->Number; return sign ? tSNUMBER : tUNUMBER; } if (isalpha ((unsigned char)c)) { for (p = buff; (c = *(*yyInput)++, isalpha ((unsigned char)c)) || c == '.';) if (p < &buff[sizeof buff - 1]) *p++ = c; *p = '\0'; (*yyInput)--; return LookupWord (lvalp, buff); } if (c != '(') return *(*yyInput)++; Count = 0; do { c = *(*yyInput)++; if (c == '\0') return c; if (c == '(') Count++; else if (c == ')') Count--; } while (Count > 0); } } #define TM_YEAR_ORIGIN 1900 /* Yield A - B, measured in seconds. */ static long difftm (struct tm *a, struct tm *b) { int ay = a->tm_year + (TM_YEAR_ORIGIN - 1); int by = b->tm_year + (TM_YEAR_ORIGIN - 1); long days = ( /* difference in day of year */ a->tm_yday - b->tm_yday /* + intervening leap days */ + ((ay >> 2) - (by >> 2)) - (ay / 100 - by / 100) + ((ay / 100 >> 2) - (by / 100 >> 2)) /* + difference in years * 365 */ + (long) (ay - by) * 365 ); return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour)) + (a->tm_min - b->tm_min)) + (a->tm_sec - b->tm_sec)); } time_t lu_get_date (const char *p, const time_t *now) { struct tm tm, tm0, *tmp; struct global yy; time_t Start; Start = now ? *now : time ((time_t *) NULL); tmp = localtime (&Start); memset (&yy, 0, sizeof(yy)); yy.Year = tmp->tm_year + TM_YEAR_ORIGIN; yy.Month = tmp->tm_mon + 1; yy.Day = tmp->tm_mday; yy.Hour = tmp->tm_hour; yy.Minutes = tmp->tm_min; yy.Seconds = tmp->tm_sec; yy.Meridian = MER24; yy.RelSeconds = 0; yy.RelMinutes = 0; yy.RelHour = 0; yy.RelDay = 0; yy.RelMonth = 0; yy.RelYear = 0; yy.HaveDate = 0; yy.HaveDay = 0; yy.HaveRel = 0; yy.HaveTime = 0; yy.HaveZone = 0; if (yyparse (&p, &yy) || yy.HaveTime > 1 || yy.HaveZone > 1 || yy.HaveDate > 1 || yy.HaveDay > 1) return -1; tm.tm_year = ToYear (yy.Year) - TM_YEAR_ORIGIN + yy.RelYear; tm.tm_mon = yy.Month - 1 + yy.RelMonth; tm.tm_mday = yy.Day + yy.RelDay; if (yy.HaveTime || (yy.HaveRel && !yy.HaveDate && !yy.HaveDay)) { tm.tm_hour = ToHour (yy.Hour, yy.Meridian); if (tm.tm_hour < 0) return -1; tm.tm_min = yy.Minutes; tm.tm_sec = yy.Seconds; } else { tm.tm_hour = tm.tm_min = tm.tm_sec = 0; } tm.tm_hour += yy.RelHour; tm.tm_min += yy.RelMinutes; tm.tm_sec += yy.RelSeconds; tm.tm_isdst = -1; tm0 = tm; Start = mktime (&tm); if (Start == (time_t) -1) { /* Guard against falsely reporting errors near the time_t boundaries when parsing times in other time zones. For example, if the min time_t value is 1970-01-01 00:00:00 UTC and we are 8 hours ahead of UTC, then the min localtime value is 1970-01-01 08:00:00; if we apply mktime to 1970-01-01 00:00:00 we will get an error, so we apply mktime to 1970-01-02 08:00:00 instead and adjust the time zone by 24 hours to compensate. This algorithm assumes that there is no DST transition within a day of the time_t boundaries. */ if (yy.HaveZone) { tm = tm0; if (tm.tm_year <= EPOCH - TM_YEAR_ORIGIN) { tm.tm_mday++; yy.Timezone -= 24 * 60; } else { tm.tm_mday--; yy.Timezone += 24 * 60; } Start = mktime (&tm); } if (Start == (time_t) -1) return Start; } if (yy.HaveDay && !yy.HaveDate) { tm.tm_mday += ((yy.DayNumber - tm.tm_wday + 7) % 7 + 7 * (yy.DayOrdinal - (0 < yy.DayOrdinal))); Start = mktime (&tm); if (Start == (time_t) -1) return Start; } if (yy.HaveZone) { long delta = yy.Timezone * 60L + difftm (&tm, gmtime (&Start)); if ((Start + delta < Start) != (delta < 0)) return -1; /* time_t overflow */ Start += delta; } return Start; } #if defined (TEST) /* ARGSUSED */ int main (ac, av) int ac; char *av[]; { char buff[MAX_BUFF_LEN + 1]; time_t d; (void) printf ("Enter date, or blank line to exit.\n\t> "); (void) fflush (stdout); buff[MAX_BUFF_LEN] = 0; while (fgets (buff, MAX_BUFF_LEN, stdin) && buff[0]) { d = lu_get_date (buff, (time_t *) NULL); if (d == -1) (void) printf ("Bad format - couldn't convert.\n"); else (void) printf ("%s", ctime (&d)); (void) printf ("\t> "); (void) fflush (stdout); } exit (0); /* NOTREACHED */ } #endif /* defined (TEST) */ libuser-0.60~dfsg/lib/fs.h0000644000175000017500000000371412226342567015437 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2012 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef libuser_fs_h #define libuser_fs_h #include #include G_BEGIN_DECLS struct lu_context; struct lu_ent; struct lu_error; gboolean lu_homedir_populate(struct lu_context *ctx, const char *skeleton, const char *directory, uid_t owner, gid_t group, mode_t mode, struct lu_error **error); gboolean lu_homedir_move(const char *oldhome, const char *newhome, struct lu_error **error); gboolean lu_homedir_remove(const char *directory, struct lu_error **error); gboolean lu_homedir_remove_for_user(struct lu_ent *ent, struct lu_error **error); gboolean lu_homedir_remove_for_user_if_owned(struct lu_ent *ent, struct lu_error **error); /** * LU_NSCD_CACHE_PASSWD: * * Name of the NSCD cache containing user data. */ #define LU_NSCD_CACHE_PASSWD "passwd" /** * LU_NSCD_CACHE_GROUP: * * Name of the NSCD cache containing group data. */ #define LU_NSCD_CACHE_GROUP "group" void lu_nscd_flush_cache(const char *table); gboolean lu_mail_spool_create(struct lu_context *ctx, struct lu_ent *ent, struct lu_error **error); gboolean lu_mail_spool_remove(struct lu_context *ctx, struct lu_ent *ent, struct lu_error **error); G_END_DECLS #endif libuser-0.60~dfsg/lib/prompt.h0000644000175000017500000000533512226342567016351 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef libuser_prompt_h #define libuser_prompt_h #include #include G_BEGIN_DECLS /* The type of data passed to a prompter function. The library uses these * when it needs to prompt the user for information. */ struct lu_prompt { /* An invariant string of the form "module/name", which describes the * information being prompted for. The calling application may use * this value as an index into a hash table used to cache answers to * particular queries. */ const char *key; /* The text of a prompt to display. This *may* be translated for the * current locale by a module. */ const char *prompt; /* The text domain which contains this prompt's translations. This * may be the default libuser domain, or a module-specific text domain * which the module which provided this prompt bound for gettext when * it was loaded. */ const char *domain; /* Whether or not the user's response should be echoed to the screen * (in a console app) or visible in an entry field (in a GUI app).*/ gboolean visible; /* A default value, given as a string. This will only contain a * value if the string is visible, but the reverse won't necessarily * be true (default_value -> visible). */ const char *default_value; /* The user's response. This is set by the prompter function. */ char *value; #ifndef __GTK_DOC_IGNORE__ /* A function which can free the user's response. This is set by the * prompter function. If NULL, the response will not be freed, ever. */ void (*free_value) (void *); #endif }; /* A prompter function. */ typedef gboolean (lu_prompt_fn)(struct lu_prompt * prompts, int count, gpointer callback_data, struct lu_error ** error); gboolean lu_prompt_console(struct lu_prompt *prompts, int count, gpointer callback_data, struct lu_error **error); gboolean lu_prompt_console_quiet(struct lu_prompt *prompts, int count, gpointer callback_data, struct lu_error **error); G_END_DECLS #endif libuser-0.60~dfsg/lib/util.c0000644000175000017500000004511312226342567015776 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2007, 2008 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef WITH_SELINUX #include #endif #define LU_DEFAULT_SALT_TYPE "$1$" #define LU_DEFAULT_SALT_LEN 8 #define LU_MAX_LOCK_ATTEMPTS 6 #define LU_LOCK_TIMEOUT 2 #include "user_private.h" #include "internal.h" #define HASH_ROUNDS_MIN 1000 #define HASH_ROUNDS_MAX 999999999 struct lu_lock { int fd; struct flock lock; }; /* A wrapper for strcasecmp(). */ gint lu_strcasecmp(gconstpointer v1, gconstpointer v2) { g_return_val_if_fail(v1 != NULL, 0); g_return_val_if_fail(v2 != NULL, 0); return g_ascii_strcasecmp((char *) v1, (char *) v2); } /* A wrapper for strcmp(). */ gint lu_strcmp(gconstpointer v1, gconstpointer v2) { g_return_val_if_fail(v1 != NULL, 0); g_return_val_if_fail(v2 != NULL, 0); return strcmp((char *) v1, (char *) v2); } /* A list of allowed salt characters, according to SUSv2. */ #define ACCEPTABLE "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \ "abcdefghijklmnopqrstuvwxyz" \ "./0123456789" static gboolean is_acceptable(const char c) { if (c == 0) { return FALSE; } return (strchr(ACCEPTABLE, c) != NULL); } static gboolean fill_urandom(char *output, size_t length) { int fd; size_t got = 0; fd = open("/dev/urandom", O_RDONLY); if (fd == -1) return FALSE; memset(output, '\0', length); while (got < length) { ssize_t len; len = read(fd, output + got, length - got); if (len == -1) { if (errno == EINTR) continue; else { close(fd); return FALSE; } } while (len != 0 && isprint((unsigned char)output[got]) && !isspace((unsigned char)output[got]) && is_acceptable(output[got])) { got++; len--; } } close(fd); return TRUE; } static const struct { const char initial[5]; char separator[2]; size_t salt_length; gboolean sha_rounds; } salt_type_info[] = { {"$1$", "$", 8, FALSE }, /* FIXME: number of rounds, base64 of 128 bits */ {"$2a$", "$", 8, FALSE }, {"$5$", "$", 16, TRUE }, {"$6$", "$", 16, TRUE }, { "", "", 2 }, }; const char * lu_make_crypted(const char *plain, const char *previous) { char salt[2048]; size_t i, len = 0; if (previous == NULL) { previous = LU_DEFAULT_SALT_TYPE; } for (i = 0; i < G_N_ELEMENTS(salt_type_info); i++) { len = strlen(salt_type_info[i].initial); if (strncmp(previous, salt_type_info[i].initial, len) == 0) { break; } } g_assert(i < G_N_ELEMENTS(salt_type_info)); if (salt_type_info[i].sha_rounds != FALSE && strncmp(previous + len, "rounds=", strlen("rounds=")) == 0) { const char *start, *end; start = previous + len + strlen("rounds="); end = strchr(start, '$'); if (end != NULL && end <= start + strlen(G_STRINGIFY(HASH_ROUNDS_MAX))) len = (end + 1) - previous; } g_assert(len + salt_type_info[i].salt_length + strlen(salt_type_info[i].separator) < sizeof(salt)); memcpy(salt, previous, len); if (fill_urandom(salt + len, salt_type_info[i].salt_length) == FALSE) return NULL; strcpy(salt + len + salt_type_info[i].salt_length, salt_type_info[i].separator); return crypt(plain, salt); } static const char * parse_hash_rounds(struct lu_context *context, const char *key, unsigned long *value) { const char *s; s = lu_cfg_read_single(context, key, NULL); if (s != NULL) { char *end; errno = 0; *value = strtoul(s, &end, 10); if (errno != 0 || *end != 0 || end == s) { g_warning("Invalid %s value '%s'", key, s); s = NULL; } } return s; } static unsigned long select_hash_rounds(struct lu_context *context) { const char *min_s, *max_s; unsigned long min, max, rounds; min_s = parse_hash_rounds(context, "defaults/hash_rounds_min", &min); max_s = parse_hash_rounds(context, "defaults/hash_rounds_max", &max); if (min_s == NULL && max_s == NULL) return 0; if (min_s != NULL && max_s != NULL) { if (min <= max) { if (max > HASH_ROUNDS_MAX) /* To avoid overflow in (max + 1) below */ max = HASH_ROUNDS_MAX; rounds = g_random_int_range(min, max + 1); } else rounds = min; } else if (min_s != NULL) rounds = min; else /* max_s != NULL */ rounds = max; if (rounds < HASH_ROUNDS_MIN) rounds = HASH_ROUNDS_MIN; else if (rounds > HASH_ROUNDS_MAX) rounds = HASH_ROUNDS_MAX; return rounds; } char * lu_util_default_salt_specifier(struct lu_context *context) { static const struct { const char *name, *initializer; gboolean sha_rounds; } salt_types[] = { { "des", "", FALSE }, { "md5", "$1$", FALSE }, { "blowfish", "$2a$", FALSE }, { "sha256", "$5$", TRUE }, { "sha512", "$6$", TRUE }, }; const char *salt_type; size_t i; g_return_val_if_fail(context != NULL, g_strdup("")); salt_type = lu_cfg_read_single(context, "defaults/crypt_style", "des"); for (i = 0; i < G_N_ELEMENTS(salt_types); i++) { if (strcasecmp(salt_types[i].name, salt_type) == 0) goto found; } return g_strdup(""); found: if (salt_types[i].sha_rounds != FALSE) { unsigned long rounds; rounds = select_hash_rounds(context); if (rounds != 0) return g_strdup_printf("%srounds=%lu$", salt_types[i].initializer, rounds); } return g_strdup(salt_types[i].initializer); } gpointer lu_util_lock_obtain(int fd, struct lu_error ** error) { int i; int maxtries = LU_MAX_LOCK_ATTEMPTS; int delay = LU_LOCK_TIMEOUT; struct lu_lock *ret; LU_ERROR_CHECK(error); g_assert(fd != -1); ret = g_malloc0(sizeof(*ret)); for (;;) { struct timeval tv; ret->fd = fd; ret->lock.l_type = F_RDLCK; if (write(ret->fd, NULL, 0) == 0) ret->lock.l_type = F_WRLCK; i = fcntl(ret->fd, F_SETLK, &ret->lock); if (i != -1) return ret; if (errno != EINTR && errno != EAGAIN) break; if (maxtries-- <= 0) break; memset(&tv, 0, sizeof(tv)); tv.tv_usec = (delay *= 2); select(0, NULL, NULL, NULL, &tv); } lu_error_new(error, lu_error_lock, _("error locking file: %s"), strerror(errno)); g_free(ret); return NULL; } void lu_util_lock_free(gpointer lock) { struct lu_lock *ret; int i; g_return_if_fail(lock != NULL); ret = (struct lu_lock*) lock; do { ret->lock.l_type = F_UNLCK; i = fcntl(ret->fd, F_SETLK, &ret->lock); } while ((i == -1) && ((errno == EINTR) || (errno == EAGAIN))); g_free(ret); } char * lu_util_line_get_matchingx(int fd, const char *part, int field, struct lu_error **error) { char *contents, *contents_end; struct stat st; off_t offset; char *ret = NULL, *line; gboolean mapped = FALSE; size_t part_len; LU_ERROR_CHECK(error); g_assert(fd != -1); g_assert(part != NULL); g_assert(field > 0); offset = lseek(fd, 0, SEEK_CUR); if (offset == -1) { lu_error_new(error, lu_error_read, NULL); return NULL; } if (fstat(fd, &st) == -1) { lu_error_new(error, lu_error_stat, NULL); return NULL; } contents = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0); if (contents == MAP_FAILED) { contents = g_malloc(st.st_size); if (lseek(fd, 0, SEEK_SET) == -1 || read(fd, contents, st.st_size) != st.st_size || lseek(fd, offset, SEEK_SET) == -1) { lu_error_new(error, lu_error_read, NULL); g_free(contents); return NULL; } } else { mapped = TRUE; } contents_end = contents + st.st_size; part_len = strlen(part); line = contents; for (;;) { char *line_end, *field_start; line_end = memchr(line, '\n', contents_end - line); if (field == 1) field_start = line; else { int i; char *p; field_start = NULL; i = 1; for (p = line; p < contents_end && *p != '\n'; p++) { if (*p == ':') { i++; if (i >= field) { field_start = p + 1; break; } } } } if (field_start != NULL && contents_end - field_start >= part_len) { char *expected_field_end; expected_field_end = field_start + part_len; if (strncmp(field_start, part, part_len) == 0 && (expected_field_end == contents_end || *expected_field_end == ':' || *expected_field_end == '\n')) { if (line_end == NULL) line_end = contents_end; ret = g_strndup(line, line_end - line); break; } } if (line_end == NULL) break; line = line_end + 1; } if (mapped) { munmap(contents, st.st_size); } else { g_free(contents); } return ret; } char * lu_util_line_get_matching1(int fd, const char *part, struct lu_error **error) { LU_ERROR_CHECK(error); return lu_util_line_get_matchingx(fd, part, 1, error); } char * lu_util_line_get_matching3(int fd, const char *part, struct lu_error **error) { LU_ERROR_CHECK(error); return lu_util_line_get_matchingx(fd, part, 3, error); } char * lu_util_field_read(int fd, const char *first, unsigned int field, struct lu_error **error) { struct stat st; char *buf, *buf_end; char *pattern; char *line, *start = NULL; char *ret; size_t len; gboolean mapped = FALSE; LU_ERROR_CHECK(error); g_assert(fd != -1); g_assert(first != NULL); g_assert(strlen(first) != 0); g_assert(field >= 1); if (fstat(fd, &st) == -1) { lu_error_new(error, lu_error_stat, NULL); return NULL; } buf = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0); if (buf == MAP_FAILED) { buf = g_malloc(st.st_size); if (lseek(fd, 0, SEEK_SET) == -1 || read(fd, buf, st.st_size) != st.st_size) { lu_error_new(error, lu_error_read, NULL); g_free(buf); return NULL; } } else { mapped = TRUE; } buf_end = buf + st.st_size; pattern = g_strdup_printf("%s:", first); len = strlen(pattern); line = buf; for (;;) { if (buf_end - line >= len && memcmp (line, pattern, len) == 0) goto found_line; line = memchr(line, '\n', buf_end - line); if (line == NULL) break; line++; } lu_error_new(error, lu_error_search, NULL); ret = NULL; goto err; found_line: /* find the start of the field */ if (field == 1) start = line; else { unsigned i = 1; char *p; start = NULL; for (p = line; p < buf_end && *p != '\n'; p++) { if (*p == ':') { i++; if (i >= field) { start = p + 1; break; } } } } /* find the end of the field */ if (start != NULL) { char *end; end = start; while (end < buf_end && *end != '\n' && *end != ':') end++; g_assert(end == buf_end || *end == '\n' || *end == ':'); ret = g_strndup(start, end - start); } else { ret = g_strdup(""); } err: g_free(pattern); if (mapped) { munmap(buf, st.st_size); } else { g_free(buf); } return ret; } gboolean lu_util_field_write(int fd, const char *first, unsigned int field, const char *value, struct lu_error ** error) { struct stat st; char *buf; char *pattern; char *line, *start = NULL, *end = NULL; gboolean ret = FALSE; unsigned fi = 1; size_t len; LU_ERROR_CHECK(error); g_assert(fd != -1); g_assert(field >= 1); first = first ? : ""; value = value ? : ""; if (fstat(fd, &st) == -1) { lu_error_new(error, lu_error_stat, NULL); return FALSE; } if (lseek(fd, 0, SEEK_SET) == -1) { lu_error_new(error, lu_error_read, NULL); return FALSE; } buf = g_malloc0(st.st_size + 1 + strlen(value) + field); if (read(fd, buf, st.st_size) != st.st_size) { lu_error_new(error, lu_error_read, NULL); return FALSE; } pattern = g_strdup_printf("\n%s:", first); if (strncmp(buf, pattern + 1, strlen(pattern) - 1) == 0) { /* found it on the first line */ line = buf; } else if ((line = strstr(buf, pattern)) != NULL) { /* found it somewhere in the middle */ line++; } if (line == NULL) { lu_error_new(error, lu_error_search, NULL); goto err; } /* find the start of the field */ if (fi == field) start = line; else { char *p; start = NULL; for (p = line; fi < field && *p != '\n' && *p != '\0'; p++) { if (*p == ':') { fi++; if (fi >= field) { start = p + 1; break; } } } } /* find the end of the field */ if (start != NULL) { end = start; while ((*end != '\0') && (*end != '\n') && (*end != ':')) { end++; } } else { lu_error_new(error, lu_error_search, NULL); goto err; } if (start != NULL) { /* insert the text here, after moving the data around */ memmove(start + strlen(value), end, st.st_size - (end - buf) + 1); memcpy(start, value, strlen(value)); } else { /* FIXME: this code currently can't execute */ /* fi contains the number of fields, so the difference between * field and fi is the number of colons we need to add to the * end of the line to create the field */ for (end = line; *end != '\0' && *end != '\n'; end++) ; start = end; memmove(start + strlen(value) + (field - fi), end, st.st_size - (end - buf) + 1); memset(start, ':', field - fi); memcpy(start + (field - fi), value, strlen(value)); } if (lseek(fd, 0, SEEK_SET) == -1) { lu_error_new(error, lu_error_write, NULL); ret = FALSE; goto err; } len = strlen(buf); if (write(fd, buf, len) == -1) { lu_error_new(error, lu_error_write, NULL); ret = FALSE; goto err; } if (ftruncate(fd, len) == -1) { lu_error_new(error, lu_error_write, NULL); ret = FALSE; goto err; } ret = TRUE; err: g_free(pattern); g_free(buf); return ret; } /* Return current date in days since the epoch (suitable for LU_SHADOW*), or -1 if the current date is unknown or obviously implausible (e.g. on a system without a RTC). */ long lu_util_shadow_current_date_or_minus_1(void) { const struct tm *gmt; time_t now; GDate *today, *epoch; long days; now = time(NULL); if (now == (time_t)-1) return -1; gmt = gmtime(&now); today = g_date_new_dmy(gmt->tm_mday, gmt->tm_mon + 1, gmt->tm_year + 1900); epoch = g_date_new_dmy(1, 1, 1970); days = g_date_get_julian(today) - g_date_get_julian(epoch); g_date_free(today); g_date_free(epoch); /* Refuse to return 0 (Jan 1, 1970): it is unquestionably incorrect in the real world, which is not really libuser's concern, but it is also a special case for LU_SHADOWLASTCHANGE (marking the account for forced password change) and LU_SHADOWEXPIRE (forbidden in shadow(5)). In both cases, setting the value to -1 deactivates the real-time-related actions, which is a reasonable thing to do when the only available RTC is incorrect. */ if (days == 0) return -1; return days; } /* Set the shadow last-changed field to today's date. */ void lu_util_update_shadow_last_change(struct lu_ent *ent) { lu_ent_set_long(ent, LU_SHADOWLASTCHANGE, lu_util_shadow_current_date_or_minus_1()); } #ifdef WITH_SELINUX /* Store current fscreate context to ctx. */ gboolean lu_util_fscreate_save(security_context_t *ctx, struct lu_error **error) { *ctx = NULL; if (is_selinux_enabled() > 0 && getfscreatecon(ctx) < 0) { lu_error_new(error, lu_error_generic, _("couldn't get default security context: %s"), strerror(errno)); return FALSE; } return TRUE; } /* Restore fscreate context from ctx, and free it. */ void lu_util_fscreate_restore(security_context_t ctx) { if (is_selinux_enabled() > 0) { (void)setfscreatecon(ctx); if (ctx) freecon(ctx); } } /* Set fscreate context from context of fd. Use path only for diagnostics. */ gboolean lu_util_fscreate_from_fd(int fd, const char *path, struct lu_error **error) { if (is_selinux_enabled() > 0) { security_context_t ctx; if (fgetfilecon(fd, &ctx) < 0) { lu_error_new(error, lu_error_stat, _("couldn't get security context of " "`%s': %s"), path, strerror(errno)); return FALSE; } if (setfscreatecon(ctx) < 0) { lu_error_new(error, lu_error_generic, _("couldn't set default security context " "to `%s': %s"), ctx, strerror(errno)); freecon(ctx); return FALSE; } freecon(ctx); } return TRUE; } /* Set fscreate context from context of file. */ gboolean lu_util_fscreate_from_file(const char *file, struct lu_error **error) { if (is_selinux_enabled() > 0) { security_context_t ctx; if (getfilecon(file, &ctx) < 0) { lu_error_new(error, lu_error_stat, _("couldn't get security context of " "`%s': %s"), file, strerror(errno)); return FALSE; } if (setfscreatecon(ctx) < 0) { lu_error_new(error, lu_error_generic, _("couldn't set default security context " "to `%s': %s"), ctx, strerror(errno)); freecon(ctx); return FALSE; } freecon(ctx); } return TRUE; } /* Set fscreate context from context of file, not resolving it if it is a symlink. */ gboolean lu_util_fscreate_from_lfile(const char *file, struct lu_error **error) { if (is_selinux_enabled() > 0) { security_context_t ctx; if (lgetfilecon(file, &ctx) < 0) { lu_error_new(error, lu_error_stat, _("couldn't get security context of " "`%s': %s"), file, strerror(errno)); return FALSE; } if (setfscreatecon(ctx) < 0) { lu_error_new(error, lu_error_generic, _("couldn't set default security context " "to `%s': %s"), ctx, strerror(errno)); freecon(ctx); return FALSE; } freecon(ctx); } return TRUE; } /* Set fscreate context for creating a file at path, with file type specified by mode. */ gboolean lu_util_fscreate_for_path(const char *path, mode_t mode, struct lu_error **error) { if (is_selinux_enabled() > 0) { security_context_t ctx; if (matchpathcon(path, mode, &ctx) < 0) { if (errno == ENOENT) ctx = NULL; else { lu_error_new(error, lu_error_stat, _("couldn't determine security " "context for `%s': %s"), path, strerror(errno)); return FALSE; } } if (setfscreatecon(ctx) < 0) { lu_error_new(error, lu_error_generic, _("couldn't set default security context " "to `%s': %s"), ctx != NULL ? ctx : "<>", strerror(errno)); freecon(ctx); return FALSE; } freecon(ctx); } return TRUE; } #endif /* Append a copy of VALUES to DEST */ void lu_util_append_values(GValueArray *dest, GValueArray *values) { size_t i; for (i = 0; i < values->n_values; i++) g_value_array_append(dest, g_value_array_get_nth(values, i)); } libuser-0.60~dfsg/lib/user_private.h0000644000175000017500000003303012226342567017531 0ustar tzafrirtzafrir/* * Copyright (C) 2000-2002, 2007 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ /* * The interfaces defined in this file are in even more flux than the others, * because this is where the module interface is defined. If you include it * in your code, bad things can happen. */ #ifndef libuser_user_private_h #define libuser_user_private_h #include #include #include #include #include #include #ifdef WITH_SELINUX #include #endif #include "user.h" G_BEGIN_DECLS #define LU_ENT_MAGIC 0x00000006 #define LU_MODULE_VERSION 0x000e0000 #define _(String) dgettext(PACKAGE_NAME, String) #define N_(String) String /* A crypt hash is at least 64 bits of data, encoded 6 bits per printable * character, and we assume that all crypt algorithms generate strings at * least this long. */ #define LU_CRYPTED "{CRYPT}" #define LU_CRYPT_SIZE howmany(64,6) #define LU_CRYPT_INVALID(String) \ ((strlen(String) > 0) && \ (String[0] != '!') && \ (strlen(String) < LU_CRYPT_SIZE)) #define LU_COMMON_DEFAULT_PASSWORD "!!" #define LU_COMMON_DEFAULT_SHADOW_PASSWORD "x" #define LU_COMMON_DEFAULT_SHELL "/bin/bash" /* Well-known module names */ #define LU_MODULE_NAME_FILES "files" #define LU_MODULE_NAME_LDAP "ldap" #define LU_MODULE_NAME_SHADOW "shadow" /* A string cache structure. Useful for side-stepping most issues with * whether or not returned strings should be freed. */ struct lu_string_cache { GTree *tree; char *(*cache) (struct lu_string_cache *, const char *); void (*free) (struct lu_string_cache *); }; /* A function to create a new cache. */ struct lu_string_cache *lu_string_cache_new(gboolean case_sensitive); struct lu_attribute { GQuark name; GValueArray *values; }; /* An entity structure. */ struct lu_ent { u_int32_t magic; enum lu_entity_type type; /* User or group? */ struct lu_string_cache *cache; /* String cache for attribute values, typically case-sensitive. */ GArray *current, *pending; /* Current and pending attribute names and values, stored as a GArray of lu_attribute structures. */ GValueArray *modules; /* Names of modules this user's info was looked up in or initialized using. */ }; /* A context structure. */ struct lu_context { struct lu_string_cache *scache; /* A string cache. */ char *auth_name; /* Suggested client name to use when connecting to servers, for convenience purposes only. */ enum lu_entity_type auth_type; /* Whether auth_name is a user or group. */ void *config; /* Opaque config structure used by the lu_cfg family of functions. */ lu_prompt_fn *prompter; /* Pointer to the prompter function. */ gpointer prompter_data; /* Application-specific data to be passed to the prompter function. */ GValueArray *module_names; /* Names of loaded modules. */ GValueArray *create_module_names; /* Names of modules to use to create accounts -- usually a subset of all modules. */ GTree *modules; /* A tree, keyed by module name, of module structures. */ }; /* A module structure. */ struct lu_module { u_int32_t version; /* Should be LU_MODULE_VERSION. */ GModule *module_handle; /* Pointer to the module data kept by GModule. */ struct lu_string_cache *scache; /* A string cache. */ const char *name; /* Name of the module. */ struct lu_context *lu_context; /* Context the module was opened in. */ void *module_context; /* Module-private data. */ /* Check if the current list of module combinations (array of module names) is valid. Note that this can be called several times during the lifetime of the module (probably at least twice, for "modules" and "create_modules"). */ gboolean(*valid_module_combination) (struct lu_module *module, GValueArray *names, struct lu_error **error); /* A function for telling if the module makes use of elevated * privileges (i.e., modifying files which normal users can't. */ gboolean(*uses_elevated_privileges) (struct lu_module * module); /* Functions for looking up users by name or ID. */ gboolean(*user_lookup_name) (struct lu_module * module, const char *name, struct lu_ent * ent, struct lu_error ** error); gboolean(*user_lookup_id) (struct lu_module * module, uid_t uid, struct lu_ent * ent, struct lu_error ** error); /* Populate a user entry with default information. */ gboolean(*user_default) (struct lu_module * module, const char *name, gboolean is_system, struct lu_ent * ent, struct lu_error ** error); /* Make last-minute preparations for adding an account (default * part two, as it might have been called). */ gboolean(*user_add_prep) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Create the account. */ gboolean(*user_add) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Modify the account, making the data store reflect any pending * data changes. */ gboolean(*user_mod) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Remove the account. */ gboolean(*user_del) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Lock, unlock, check the status, or set the password on the account * of the user. */ gboolean(*user_lock) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); gboolean(*user_unlock) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); gboolean(*user_unlock_nonempty) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); gboolean(*user_is_locked) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); gboolean(*user_setpass) (struct lu_module * module, struct lu_ent * ent, const char *newpass, struct lu_error ** error); gboolean(*user_removepass) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Search for users, returning the names of all users, just the names * of users in a given group, or all users with their data. */ GValueArray* (*users_enumerate) (struct lu_module * module, const char *pattern, struct lu_error ** error); GValueArray* (*users_enumerate_by_group) (struct lu_module * module, const char *group, gid_t gid, struct lu_error ** error); GPtrArray* (*users_enumerate_full) (struct lu_module * module, const char *pattern, struct lu_error ** error); /* Search for a group by name or ID. */ gboolean(*group_lookup_name) (struct lu_module * module, const char *name, struct lu_ent * ent, struct lu_error ** error); gboolean(*group_lookup_id) (struct lu_module * module, gid_t gid, struct lu_ent * ent, struct lu_error ** error); /* Populate a group with sensible defaults. */ gboolean(*group_default) (struct lu_module * module, const char *name, gboolean is_system, struct lu_ent * ent, struct lu_error ** error); /* Prepare to add a group (default part two, possibly). */ gboolean(*group_add_prep) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Add the group to the data stores. */ gboolean(*group_add) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Modify the group entry, committing any pending changes. */ gboolean(*group_mod) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Delete the group. */ gboolean(*group_del) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Lock, unlock, check if locked, or set the password for a group. */ gboolean(*group_lock) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); gboolean(*group_unlock) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); gboolean(*group_unlock_nonempty) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); gboolean(*group_is_locked) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); gboolean(*group_setpass) (struct lu_module * module, struct lu_ent * ent, const char *newpass, struct lu_error ** error); gboolean(*group_removepass) (struct lu_module * module, struct lu_ent * ent, struct lu_error ** error); /* Look up all group names, just the groups a particular user is in, * or all groups, with full information. */ GValueArray* (*groups_enumerate) (struct lu_module * module, const char *pattern, struct lu_error ** error); GValueArray* (*groups_enumerate_by_user) (struct lu_module * module, const char *user, uid_t uid, struct lu_error ** error); GPtrArray* (*groups_enumerate_full) (struct lu_module * module, const char *pattern, struct lu_error ** error); /* Clean up any data this module has, and unload it. */ gboolean(*close) (struct lu_module * module); }; /* The type of the initialization function a module exports for the library * to use when initializing it. Should fit "lu_%s_init", where the string * is the name of the module being loaded (and this should match the "name" * attribute of the module structure). */ #define LU_MODULE_INIT(_fn) extern struct lu_module *\ _fn (struct lu_context * context, struct lu_error ** error); typedef struct lu_module *(*lu_module_init_t) (struct lu_context * context, struct lu_error ** error); struct lu_ent *lu_ent_new_typed(enum lu_entity_type entity_type); /* Common code expected to be used by some modules. */ gboolean lu_common_user_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error); gboolean lu_common_group_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error); gboolean lu_common_suser_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error); gboolean lu_common_sgroup_default(struct lu_module *module, const char *name, gboolean is_system, struct lu_ent *ent, struct lu_error **error); /* Generate a crypted password. */ const char *lu_make_crypted(const char *plain, const char *previous); char *lu_util_default_salt_specifier(struct lu_context *context); /* Handle SELinux fscreate context. Note that modules built WITH_SELINUX are intentionally not compatible with libuser built !WITH_SELINUX. */ #ifdef WITH_SELINUX typedef security_context_t lu_security_context_t; gboolean lu_util_fscreate_save(security_context_t *ctx, struct lu_error **error); void lu_util_fscreate_restore(security_context_t ctx); gboolean lu_util_fscreate_from_fd(int fd, const char *path, struct lu_error **error); gboolean lu_util_fscreate_from_file(const char *file, struct lu_error **error); gboolean lu_util_fscreate_from_lfile(const char *file, struct lu_error **error); gboolean lu_util_fscreate_for_path(const char *path, mode_t mode, struct lu_error **error); #else typedef char lu_security_context_t; /* "Something" */ #define lu_util_fscreate_save(CTX, ERROR) ((void)(CTX), (void)(ERROR), TRUE) #define lu_util_fscreate_restore(CTX) ((void)(CTX)) #define lu_util_fscreate_from_fd(FD, PATH, ERROR) \ ((void)(FD), (void)(PATH), (void)(ERROR), TRUE) #define lu_util_fscreate_from_file(FILE, ERROR) \ ((void)(FILE), (void)(ERROR), TRUE) #define lu_util_fscreate_from_lfile(FILE, ERROR) \ ((void)(FILE), (void)(ERROR), TRUE) #define lu_util_fscreate_for_path(PATH, MODE, ERROR) \ ((void)(PATH), (void)(MODE), (void)(ERROR), TRUE) #endif /* Lock a file. */ gpointer lu_util_lock_obtain(int fd, struct lu_error **error); void lu_util_lock_free(gpointer lock); /* Manipulate a colon-delimited flat text file. */ char *lu_util_line_get_matching1(int fd, const char *firstpart, struct lu_error **error); char *lu_util_line_get_matching3(int fd, const char *thirdpart, struct lu_error **error); char *lu_util_line_get_matchingx(int fd, const char *part, int field, struct lu_error **error); char *lu_util_field_read(int fd, const char *first, unsigned int field, struct lu_error **error); gboolean lu_util_field_write(int fd, const char *first, unsigned int field, const char *value, struct lu_error **error); void lu_util_update_shadow_last_change(struct lu_ent *ent); /* Find the first unused ID of the given type, searching starting at "id". */ id_t lu_get_first_unused_id(struct lu_context *ctx, enum lu_entity_type type, id_t id); /* Append a copy of VALUES to DEST */ void lu_util_append_values(GValueArray *dest, GValueArray *values); G_END_DECLS #endif libuser-0.60~dfsg/lib/fs.c0000644000175000017500000010176012226342567015432 0ustar tzafrirtzafrir/* Copyright (C) 2000-2002, 2004, 2005, 2006, 2007, 2012 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "error.h" #include "fs.h" #include "user.h" #include "user_private.h" /** * SECTION:fs * @short_description: Utilities for modifying the file system and other * aspects of user/group management. * @include: libuser/fs.h * * These routines allow an application to work with home directories, mail * spools and nscd caches. */ /* Return current umask value */ static mode_t current_umask(void) { mode_t value; value = umask(S_IRWXU | S_IRWXG | S_IRWXO); umask(value); return value; } /* What should the ownership and permissions of the copied files be? */ struct copy_access_options { /* Preserve ownership and permissions of the original unmodified; otherwise, use matchpathcon() for SELinux contexts and apply the following fields.. */ gboolean preserve_source; uid_t uid; /* UID to use for the copy if !preserve_source. */ /* GID to use for the copy if !preserve_source and original is owned by GID 0. */ gid_t gid; mode_t umask; /* umask to apply to modes if !preserve_source */ }; /* Return an UID appropriate for a copy of ST given OPTIONS. */ static uid_t uid_for_copy(const struct copy_access_options *options, const struct stat *st) { if (options->preserve_source) return st->st_uid; return options->uid; } /* Return a GID appropriate for a copy of ST given OPTIONS. */ static gid_t gid_for_copy(const struct copy_access_options *options, const struct stat *st) { if (options->preserve_source) return st->st_gid; if (st->st_gid != 0) /* Skeleton wants us to us a different group */ return st->st_gid; return options->gid; } /* Return a mode_t value appropriate for a copy of ST given OPTIONS. */ static mode_t mode_for_copy(const struct copy_access_options *options, const struct stat *st) { if (options->preserve_source) return st->st_mode; return st->st_mode & ~options->umask; } /* Copy symlink SYMLINK_NAME in SRC_DIR_FD, which corresponds to SRC_PATH, to SYMLINK_NAME in DEST_DIR_FD, which corresponds to DEST_PATH. Use ACCESS_OPTIONS. Use SRC_STAT for data about SRC_PATH. On return from this function, SELinux fscreate context is unspecified. Note that SRC_PATH should only be used for error messages, not to access the files; if the user is still logged in, a directory in the path may be replaced by a symbolic link, redirecting the access outside of SRC_DIR_FD/SYMLINK_NAME. Likewise for DEST_*. */ static gboolean copy_symlink(int src_dir_fd, const char *src_path, int dest_dir_fd, const char *dest_path, const char *symlink_name, const struct stat *src_stat, const struct copy_access_options *access_options, struct lu_error **error) { char buf[PATH_MAX]; ssize_t len; struct timespec timebuf[2]; LU_ERROR_CHECK(error); /* In the worst case here, we end up with a wrong SELinux context for a symbolic link due to a path name lookup race. That's unfortunate, but symlink contents are more or less public anyway... (A possible improvement would be to use Linux-only O_PATH to open src_path first, then see if it is a symlink, and "upgrade" to an O_RDONLY if not. But O_PATH is available only in Linux >= 2.6.39.) The symlinkat()/fchownat()/utimensat() calls are also not safe against an user meddling; we might be able to ensure the fchownat()/utimensat() are done on the same file using O_PATH again, but symlinkat()/the rest is definitely unatomic. Rely on having an unwritable the parent directory, same as in the mkdirat()/openat() case of lu_homedir_copy_and_close(). */ if (access_options->preserve_source) { if (!lu_util_fscreate_from_lfile(src_path, error)) return FALSE; } else if (!lu_util_fscreate_for_path(dest_path, src_stat->st_mode & S_IFMT, error)) return FALSE; len = readlinkat(src_dir_fd, symlink_name, buf, sizeof(buf) - 1); if (len == -1) { lu_error_new(error, lu_error_generic, _("Error reading `%s': %s"), src_path, strerror(errno)); return FALSE; } buf[len] = '\0'; if (symlinkat(buf, dest_dir_fd, symlink_name) == -1) { lu_error_new(error, lu_error_generic, _("Error creating `%s': %s"), dest_path, strerror(errno)); return FALSE; } if (fchownat(dest_dir_fd, symlink_name, uid_for_copy(access_options, src_stat), gid_for_copy(access_options, src_stat), AT_SYMLINK_NOFOLLOW) == -1 && errno != EPERM && errno != EOPNOTSUPP) { lu_error_new(error, lu_error_generic, _("Error changing owner of `%s': %s"), dest_path, strerror(errno)); return FALSE; } timebuf[0] = src_stat->st_atim; timebuf[1] = src_stat->st_mtim; utimensat(dest_dir_fd, symlink_name, timebuf, AT_SYMLINK_NOFOLLOW); return TRUE; } /* Copy SRC_FD, which corresponds to SRC_PATH, to DEST_NAME in DEST_DIR_FD, which corresponds to DEST_PATH. Use ACCESS_OPTIONS. Use SRC_STAT for data about SRC_PATH. On return from this function, SELinux fscreate context is unspecified. Note that SRC_PATH should only be used for error messages, not to access the files; if the user is still logged in, a directory in the path may be replaced by a symbolic link, redirecting the access outside of SRC_FD. Likewise for DEST_*. */ static gboolean copy_regular_file(int src_fd, const char *src_path, int dest_dir_fd, const char *dest_name, const char *dest_path, const struct stat *src_stat, const struct copy_access_options *access_options, struct lu_error **error) { int dest_fd; struct timespec timebuf[2]; gboolean ret = FALSE; LU_ERROR_CHECK(error); if (access_options->preserve_source) { if (!lu_util_fscreate_from_fd(src_fd, src_path, error)) return FALSE; } else if (!lu_util_fscreate_for_path(dest_path, src_stat->st_mode & S_IFMT, error)) return FALSE; /* Start with absolutely restrictive permissions; the original file may be e.g. a hardlink to /etc/shadow. */ dest_fd = openat(dest_dir_fd, dest_name, O_EXCL | O_CREAT | O_WRONLY | O_NOFOLLOW, 0); if (dest_fd == -1) { lu_error_new(error, lu_error_open, _("Error writing `%s': %s"), dest_path, strerror(errno)); return FALSE; } /* Now just copy the data. */ for (;;) { unsigned char buf[BUFSIZ]; ssize_t left; unsigned char *p; left = read(src_fd, &buf, sizeof(buf)); if (left == -1) { if (errno == EINTR) continue; lu_error_new(error, lu_error_read, _("Error reading `%s': %s"), src_path, strerror(errno)); goto err_dest_fd; } if (left == 0) break; p = buf; while (left > 0) { ssize_t out; out = write(dest_fd, p, left); if (out == -1) { if (errno == EINTR) continue; lu_error_new(error, lu_error_write, _("Error writing `%s': %s"), dest_path, strerror(errno)); goto err_dest_fd; } p += out; left -= out; } } /* Set the ownership; permissions are still restrictive. */ if (fchown(dest_fd, uid_for_copy(access_options, src_stat), gid_for_copy(access_options, src_stat)) == -1 && errno != EPERM) { lu_error_new(error, lu_error_generic, _("Error changing owner of `%s': %s"), dest_path, strerror(errno)); goto err_dest_fd; } /* Set the desired mode. Do this explicitly to preserve S_ISGID and other bits. Do this after chown, because chown is permitted to reset these bits. */ if (fchmod(dest_fd, mode_for_copy(access_options, src_stat)) == -1) { lu_error_new(error, lu_error_generic, _("Error setting mode of `%s': %s"), dest_path, strerror(errno)); goto err_dest_fd; } timebuf[0] = src_stat->st_atim; timebuf[1] = src_stat->st_mtim; futimens(dest_fd, timebuf); ret = TRUE; /* Fall through */ err_dest_fd: close(dest_fd); return ret; } /* Forward declaration. */ static gboolean lu_copy_dir_and_close(int src_dir_fd, GString *src_path_buf, int dest_parent_fd, const char *dest_dir_name, GString *dest_path_buf, const struct stat *src_dir_stat, const struct copy_access_options *access_options, struct lu_error **error); /* Copy ENT_NAME in SRC_DIR_FD, which corresponds to SRC_PATH_BUF, to DEST_DIR_FD, which corresponds to DEST_PATH_BUF. Use ACCESS_OPTIONS. On return from this function, SELinux fscreate context is unspecified. This function may temporarily modify SRC_PATH_BUF and DEST_PATH_BUF, but they will be unchanged on return. Note that SRC_PATH_BUF should only be used for error messages, not to access the files; if the user is still logged in, a directory in the path may be replaced by a symbolic link, redirecting the access outside of SRC_DIR_FD. Likewise for DEST_*. */ static gboolean copy_dir_entry(int src_dir_fd, GString *src_path_buf, int dest_dir_fd, GString *dest_path_buf, const char *ent_name, const struct copy_access_options *access_options, struct lu_error **error) { struct stat st; int ifd; gboolean ret = FALSE; LU_ERROR_CHECK(error); /* Open the input entry first, then we can fstat() it and be certain that it is still the same file. O_NONBLOCK protects us against FIFOs and perhaps side-effects of the open() of a device file if there ever was one here, and doesn't matter for regular files or directories. */ ifd = openat(src_dir_fd, ent_name, O_RDONLY | O_CLOEXEC | O_NOFOLLOW | O_NONBLOCK); if (ifd == -1) { int saved_errno; saved_errno = errno; if (errno != ELOOP || fstatat(src_dir_fd, ent_name, &st, AT_SYMLINK_NOFOLLOW) != 0 || !S_ISLNK(st.st_mode)) { lu_error_new(error, lu_error_open, _("Error opening `%s': %s"), src_path_buf->str, strerror(saved_errno)); return FALSE; } return copy_symlink(src_dir_fd, src_path_buf->str, dest_dir_fd, dest_path_buf->str, ent_name, &st, access_options, error); } if (fstat(ifd, &st) != 0) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), src_path_buf->str, strerror(errno)); goto err_ifd; } g_assert(!S_ISLNK(st.st_mode)); if (S_ISDIR(st.st_mode)) { ret = lu_copy_dir_and_close(ifd, src_path_buf, dest_dir_fd, ent_name, dest_path_buf, &st, access_options, error); ifd = -1; } else if (S_ISREG(st.st_mode)) ret = copy_regular_file(ifd, src_path_buf->str, dest_dir_fd, ent_name, dest_path_buf->str, &st, access_options, error); else /* Note that we don't copy device specials. */ ret = TRUE; /* Fall through */ err_ifd: if (ifd != -1) close(ifd); return ret; } /* Copy SRC_DIR_FD, which corresponds to SRC_PATH_BUF, to DEST_DIR_NAME under DEST_PARENT_FD, which corresponds to DEST_PATH_BUF. Use ACCESS_OPTIONS. Use SRC_DIR_STAT for data about SRC_PATH_BUF. In every case, even on error, close SRC_DIR_FD. DEST_PARENT_FD may be AT_FDCWD. On return from this function, SELinux fscreate context is unspecified. This function may temporarily modify SRC_PATH_BUF and DEST_PATH_BUF, but they will be unchanged on return. Note that SRC_PATH_BUF should only be used for error messages, not to access the files; if the user is still logged in, a directory in the path may be replaced by a symbolic link, redirecting the access outside of SRC_PARENT_FD/SRC_DIR_NAME. Likewise for DEST_*. */ static gboolean lu_copy_dir_and_close(int src_dir_fd, GString *src_path_buf, int dest_parent_fd, const char *dest_dir_name, GString *dest_path_buf, const struct stat *src_dir_stat, const struct copy_access_options *access_options, struct lu_error **error) { size_t orig_src_path_buf_len, orig_dest_path_buf_len; struct dirent *ent; DIR *dir; int dest_dir_fd; struct timespec timebuf[2]; gboolean ret = FALSE; LU_ERROR_CHECK(error); orig_src_path_buf_len = src_path_buf->len; orig_dest_path_buf_len = dest_path_buf->len; if (*dest_path_buf->str != '/') { lu_error_new(error, lu_error_generic, _("Home directory path `%s' is not absolute"), dest_path_buf->str); goto err_src_dir_fd; } dir = fdopendir(src_dir_fd); if (dir == NULL) { lu_error_new(error, lu_error_generic, _("Error reading `%s': %s"), src_path_buf->str, strerror(errno)); goto err_src_dir_fd; } if (access_options->preserve_source) { if (!lu_util_fscreate_from_fd(src_dir_fd, src_path_buf->str, error)) goto err_dir; } else if (!lu_util_fscreate_for_path(dest_path_buf->str, src_dir_stat->st_mode & S_IFMT, error)) goto err_dir; /* Create the directory. It starts owned by us (presumbaly root), with fairly restrictive permissions that still allow us to use the directory. */ if (mkdirat(dest_parent_fd, dest_dir_name, S_IRWXU) == -1) { lu_error_new(error, lu_error_generic, _("Error creating `%s': %s"), dest_path_buf->str, strerror(errno)); goto err_dir; } /* FIXME: O_SEARCH would be ideal here, but Linux doesn't currently provide it. */ dest_dir_fd = openat(dest_parent_fd, dest_dir_name, O_RDONLY | O_CLOEXEC | O_DIRECTORY | O_NOFOLLOW); if (dest_dir_fd == -1) { lu_error_new(error, lu_error_open, _("Error opening `%s': %s"), dest_path_buf->str, strerror(errno)); goto err_dir; } /* The openat() after mkdirat() is not 100% safe; we may be modifying ownership/permissions of another user's directory that was moved to dest_dir_name in the mean time! (Although why there would exist an another user's directory, assuming lack hardlinks of directories, is not clear.) There's no way to do this completely atomically; so, rely on permissions of the parent directory (write access to parent is required to rename directories). This holds for the top-level directory, and for the others we achieve this by creating them root-owned and S_IRWXU, and only applying the original ownership and permissions after finishing other work. See also the comment in copy_symlink(). */ while ((ent = readdir(dir)) != NULL) { if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; /* Build the path of the source file or directory and its corresponding member in the new tree. */ g_string_append_c(src_path_buf, '/'); g_string_append(src_path_buf, ent->d_name); g_string_append_c(dest_path_buf, '/'); g_string_append(dest_path_buf, ent->d_name); if (!copy_dir_entry(src_dir_fd, src_path_buf, dest_dir_fd, dest_path_buf, ent->d_name, access_options, error)) goto err_dest_dir_fd; g_string_truncate(src_path_buf, orig_src_path_buf_len); g_string_truncate(dest_path_buf, orig_dest_path_buf_len); } /* Set the ownership on the directory. Permissions are still fairly restrictive. */ if (fchown(dest_dir_fd, uid_for_copy(access_options, src_dir_stat), gid_for_copy(access_options, src_dir_stat)) == -1 && errno != EPERM) { lu_error_new(error, lu_error_generic, _("Error changing owner of `%s': %s"), dest_path_buf->str, strerror(errno)); goto err_dest_dir_fd; } /* Set the desired mode. Do this explicitly to preserve S_ISGID and other bits. Do this after chown, because chown is permitted to reset these bits. */ if (fchmod(dest_dir_fd, mode_for_copy(access_options, src_dir_stat)) == -1) { lu_error_new(error, lu_error_generic, _("Error setting mode of `%s': %s"), dest_path_buf->str, strerror(errno)); goto err_dest_dir_fd; } timebuf[0] = src_dir_stat->st_atim; timebuf[1] = src_dir_stat->st_mtim; futimens(dest_dir_fd, timebuf); ret = TRUE; /* Fall through */ err_dest_dir_fd: close(dest_dir_fd); err_dir: closedir(dir); src_dir_fd = -1; err_src_dir_fd: if (src_dir_fd != -1) close(src_dir_fd); g_string_truncate(src_path_buf, orig_src_path_buf_len); g_string_truncate(dest_path_buf, orig_dest_path_buf_len); return ret; } /* Copy SRC_DIR to DEST_DIR. Use ACCESS_OPTIONS. Return TRUE on error. To be secure, neither SRC_DIR nor DEST_DIR should contain any user-controlled parent directories in the path. SRC_DIR may be an user-owned directory, or even a symlink, but its parent should not be user-writable (so that the user can't replace it with a symlink or change the symlink). */ static gboolean lu_homedir_copy(const char *src_dir, const char *dest_dir, const struct copy_access_options *access_options, struct lu_error **error) { lu_security_context_t fscreate; int fd; struct stat st; GString *src_path_buf, *dest_path_buf; gboolean ret; LU_ERROR_CHECK(error); ret = FALSE; if (!lu_util_fscreate_save(&fscreate, error)) goto err; fd = open(src_dir, O_RDONLY | O_CLOEXEC | O_DIRECTORY); if (fd == -1) { lu_error_new(error, lu_error_open, _("Error opening `%s': %s"), src_dir, strerror(errno)); goto err_fscreate; } if (fstat(fd, &st) == -1) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), src_dir, strerror(errno)); goto err_fd; } src_path_buf = g_string_new(src_dir); dest_path_buf = g_string_new(dest_dir); ret = lu_copy_dir_and_close(fd, src_path_buf, AT_FDCWD, dest_dir, dest_path_buf, &st, access_options, error); g_string_free(dest_path_buf, TRUE); g_string_free(src_path_buf, TRUE); goto err_fscreate; err_fd: close(fd); err_fscreate: lu_util_fscreate_restore(fscreate); err: return ret; } /** * lu_homedir_populate: * @ctx: A context * @skeleton: Path to a "skeleton" directory, or %NULL for the system default * @directory: The home directory to populate * @owner: UID to use for contents of the new home directory * @group: GID to use for contents of the new home directory that have GID set * to 0 in the skeleton director * @mode: Mode to use for the top-level directory, also affected by umask * @error: Filled with #lu_error if an error occurs * * Creates a new home directory for an user. * * If you want to use this in a hostile environment, ensure that no untrusted * user has write permission to any parent of @skeleton or @directory. Usually * /home is only writable by root, which is safe. * * Returns: %TRUE on success */ gboolean lu_homedir_populate(struct lu_context *ctx, const char *skeleton, const char *directory, uid_t owner, gid_t group, mode_t mode, struct lu_error **error) { struct copy_access_options access_options; LU_ERROR_CHECK(error); g_return_val_if_fail(ctx != NULL, FALSE); g_return_val_if_fail(directory != NULL, FALSE); if (skeleton == NULL) skeleton = lu_cfg_read_single(ctx, "defaults/skeleton", "/etc/skel"); access_options.preserve_source = FALSE; access_options.uid = owner; access_options.gid = group; access_options.umask = current_umask(); if (!lu_homedir_copy(skeleton, directory, &access_options, error)) return FALSE; /* Now reconfigure the toplevel directory as desired. The directory thus might have incorrect owner/permissions for a while; this is OK because the contents are public anyway (every users sees them on first access), and write access is not allowed because the skeleton is not writable. */ /* Set the ownership on the top-level directory manually again, lu_homedir_copy() would have preserved st.st_gid if it were not root for some reason; our API promises to use precisely "owner" and "group". */ if (chown(directory, owner, group) == -1 && errno != EPERM) { lu_error_new(error, lu_error_generic, _("Error changing owner of `%s': %s"), directory, strerror(errno)); return FALSE; } /* Set modes as required instead of preserving st.st_mode. Do this after chown, because chown is permitted to reset these bits. */ if (chmod(directory, mode & ~access_options.umask) == -1) { lu_error_new(error, lu_error_generic, _("Error setting mode of `%s': %s"), directory, strerror(errno)); return FALSE; } return TRUE; } /* Recursively remove directory DIR_NAME under PARENT_FD, which corresponds to PATH_BUF. Before doing anything, if REQUIRED_TOPLEVEL_UID is not LU_VALUE_INVALID_ID, make sure that DIR_NAME is owned by that UID, or fail with lu_error_homedir_not_owned. Return TRUE on sucess. PARENT_FD may be AT_FDCWD. This function may temporarily modify PATH_BUF, but it will be unchanged on return. Note that PATH_BUF should only be used for error messages, not to access the files; if the user is still logged in, a directory in the path may be replaced by a symbolic link, redirecting the access outside of PARENT_FD/DIR_NAME. */ static gboolean remove_subdirectory(int parent_fd, const char *dir_name, GString *path_buf, uid_t required_toplevel_uid, struct lu_error **error) { size_t orig_path_buf_len; int dir_fd; struct dirent *ent; DIR *dir; LU_ERROR_CHECK(error); orig_path_buf_len = path_buf->len; dir_fd = openat(parent_fd, dir_name, O_RDONLY | O_CLOEXEC | O_DIRECTORY | O_NOFOLLOW); if (dir_fd == -1) { lu_error_new(error, lu_error_open, _("Error opening `%s': %s"), path_buf->str, strerror(errno)); return FALSE; } if (required_toplevel_uid != LU_VALUE_INVALID_ID) { struct stat st; if (fstat(dir_fd, &st) == -1) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), path_buf->str, strerror(errno)); goto err_dir_fd; } if (st.st_uid != required_toplevel_uid) { lu_error_new(error, lu_error_homedir_not_owned, _("`%s' is not owned by UID `%d'"), path_buf->str, required_toplevel_uid); goto err_dir_fd; } } dir = fdopendir(dir_fd); if (dir == NULL) { lu_error_new(error, lu_error_open, _("Error opening `%s': %s"), path_buf->str, strerror(errno)); goto err_dir_fd; } /* Iterate over all of its contents. */ while ((ent = readdir(dir)) != NULL) { struct stat st; /* Skip over the self and parent hard links. */ if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; /* Generate the full path of the next victim. */ g_string_append_c(path_buf, '/'); g_string_append(path_buf, ent->d_name); /* What we do next depends on whether or not the next item to remove is a directory. */ if (fstatat(dir_fd, ent->d_name, &st, AT_SYMLINK_NOFOLLOW) == -1) { lu_error_new(error, lu_error_stat, _("couldn't stat `%s': %s"), path_buf->str, strerror(errno)); goto err_dir; } if (S_ISDIR(st.st_mode)) { /* We descend into subdirectories... */ if (remove_subdirectory(dir_fd, ent->d_name, path_buf, LU_VALUE_INVALID_ID, error) == FALSE) goto err_dir; } else { /* ... and unlink everything else. */ if (unlinkat(dir_fd, ent->d_name, 0) == -1) { lu_error_new(error, lu_error_generic, _("Error removing `%s': %s"), path_buf->str, strerror(errno)); goto err_dir; } } g_string_truncate(path_buf, orig_path_buf_len); } closedir(dir); /* As a final step, remove the directory itself. */ if (unlinkat(parent_fd, dir_name, AT_REMOVEDIR) == -1) { lu_error_new(error, lu_error_generic, _("Error removing `%s': %s"), path_buf->str, strerror(errno)); return FALSE; } return TRUE; err_dir: closedir(dir); g_string_truncate(path_buf, orig_path_buf_len); return FALSE; err_dir_fd: close(dir_fd); return FALSE; } /** * lu_homedir_remove: * @directory: Path to the root of the directory tree * @error: Filled with #lu_error if an error occurs * * Recursively removes a user's home (or really, any) directory. * * If you want to use this in a hostile environment, ensure that no untrusted * user has write permission to any parent of @directory. * * Returns: %TRUE on success */ gboolean lu_homedir_remove(const char *directory, struct lu_error ** error) { gboolean ret; GString *path_buf; LU_ERROR_CHECK(error); g_return_val_if_fail(directory != NULL, FALSE); path_buf = g_string_new(directory); ret = remove_subdirectory(AT_FDCWD, directory, path_buf, LU_VALUE_INVALID_ID, error); g_string_free(path_buf, TRUE); return ret; } /* Recursively remove the home directory of user ENT if the top-level directory is owned by REQUIRED_TOPLEVEL_UID or if REQUIRED_TOPLEVEL_UID is LU_VALUE_INVALID_ID. Otherwise fail with lu_error_homedir_not_owned. Return TRUE on sucess. If you want to use this in a hostile environment, ensure that no untrusted user has write permission to any parent of ENT's home directory. */ static gboolean homedir_remove_for_user(struct lu_ent *ent, uid_t required_toplevel_uid, struct lu_error **error) { gboolean ret; const char *home; GString *path_buf; LU_ERROR_CHECK(error); g_assert(ent->type == lu_user); home = lu_ent_get_first_string(ent, LU_HOMEDIRECTORY); if (home == NULL) { lu_error_new(error, lu_error_generic, _("user object had no %s attribute"), LU_HOMEDIRECTORY); return FALSE; } path_buf = g_string_new(home); ret = remove_subdirectory(AT_FDCWD, home, path_buf, required_toplevel_uid, error); g_string_free(path_buf, TRUE); return ret; } /** * lu_homedir_remove_for_user: * @ent: An entity describing the user * @error: Filled with #lu_error if an error occurs * * Recursively removes the home directory of user @ent. * * If you want to use this in a hostile environment, ensure that no untrusted * user has write permission to any parent of @ent's home directory. * * Returns: %TRUE on success */ gboolean lu_homedir_remove_for_user(struct lu_ent *ent, struct lu_error **error) { LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); return homedir_remove_for_user(ent, LU_VALUE_INVALID_ID, error); } /** * lu_homedir_remove_for_user_if_owned: * @ent: An entity describing the user * @error: Filled with #lu_error if an error occurs * * Recursively removes the home directory of user @ent, only if the directory * is owned by @ent. Otherwise fails with %lu_error_homedir_not_owned. * * If you want to use this in a hostile environment, ensure that no untrusted * user has write permission to any parent of @ent's home directory. * * Returns: %TRUE on success */ gboolean lu_homedir_remove_for_user_if_owned(struct lu_ent *ent, struct lu_error **error) { uid_t uid; LU_ERROR_CHECK(error); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); uid = lu_ent_get_first_id(ent, LU_UIDNUMBER); if (uid == LU_VALUE_INVALID_ID) { lu_error_new(error, lu_error_generic, _("user object had no %s attribute"), LU_UIDNUMBER); return FALSE; } return homedir_remove_for_user(ent, uid, error); } /** * lu_homedir_move: * @oldhome: Path to the old home directory * @newhome: Path to the new home directory * @error: Filled with #lu_error if an error occurs * * Moves user's home directory to @newhome. * * Currently implemented by first creating a copy, then deleting the original, * expect this to take a long time. * * If you want to use this in a hostile environment, ensure that no untrusted * user has write permission to any parent of @oldhome or @newhome. Usually * /home is only writable by root, which is safe; user's write permission to * @oldhome itself is OK. * * Returns: %TRUE on success */ gboolean lu_homedir_move(const char *oldhome, const char *newhome, struct lu_error ** error) { struct copy_access_options access_options; LU_ERROR_CHECK(error); g_return_val_if_fail(oldhome != NULL, FALSE); g_return_val_if_fail(newhome != NULL, FALSE); access_options.preserve_source = TRUE; if (!lu_homedir_copy(oldhome, newhome, &access_options, error)) return FALSE; return lu_homedir_remove(oldhome, error); } /** * lu_nscd_flush_cache: * @table: Name of the relevant nscd table * * Flushes the specified nscd cache to make the changes performed by other * libuser functions immediately visible. */ void lu_nscd_flush_cache (const char *table) { static char *const envp[] = { NULL }; g_return_if_fail(table != NULL); posix_spawn_file_actions_t fa; char *argv[4]; pid_t pid; if (posix_spawn_file_actions_init(&fa) != 0 || posix_spawn_file_actions_addopen(&fa, STDERR_FILENO, "/dev/null", O_RDWR, 0) != 0) return; argv[0] = NSCD; argv[1] = "-i"; argv[2] = (char *)table; argv[3] = NULL; if (posix_spawn(&pid, argv[0], &fa, NULL, argv, envp) != 0) return; posix_spawn_file_actions_destroy(&fa); /* Wait for the spawned process to exit */ while (waitpid(pid, NULL, 0) == -1 && errno == EINTR) ; /* Nothing */ } /* Return mail spool path for an USER. Returns: A path for g_free (), or NULL on error */ static char * mail_spool_path(struct lu_context *ctx, struct lu_ent *ent, struct lu_error **error) { const char *spooldir; char *p, *username; LU_ERROR_CHECK(error); /* Now get the user's login. */ username = lu_ent_get_first_value_strdup(ent, LU_USERNAME); if (username == NULL) { lu_error_new(error, lu_error_name_bad, _("Missing user name")); return NULL; } /* Get the location of the spool directory. */ spooldir = lu_cfg_read_single(ctx, "defaults/mailspooldir", "/var/mail"); p = g_strconcat(spooldir, "/", username, (const gchar *)NULL); g_free(username); return p; } /** * lu_mail_spool_create: * @ctx: A context * @ent: An entity representing the relevant user * @error: Filled with #lu_error if an error occurs * * Creates a mail spool for the specified user. * * Returns: %TRUE on success */ gboolean lu_mail_spool_create(struct lu_context *ctx, struct lu_ent *ent, struct lu_error **error) { uid_t uid; gid_t gid; char *spool_path; struct lu_ent *groupEnt; struct lu_error *err2; int fd; LU_ERROR_CHECK(error); g_return_val_if_fail(ctx != NULL, FALSE); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); spool_path = mail_spool_path(ctx, ent, error); if (spool_path == NULL) goto err; /* Find the GID of the owner of the file. */ gid = LU_VALUE_INVALID_ID; groupEnt = lu_ent_new(); err2 = NULL; if (lu_group_lookup_name(ctx, "mail", groupEnt, &err2)) gid = lu_ent_get_first_id(groupEnt, LU_GIDNUMBER); if (err2 != NULL) lu_error_free(&err2); lu_ent_free(groupEnt); /* Er, okay. Check with libc. */ if (gid == LU_VALUE_INVALID_ID) { struct group grp, *err; char buf[LINE_MAX * 4]; if ((getgrnam_r("mail", &grp, buf, sizeof(buf), &err) == 0) && (err == &grp)) { gid = grp.gr_gid; } } /* Aiieee. Use the user's group. */ if (gid == LU_VALUE_INVALID_ID) gid = lu_ent_get_first_id(ent, LU_GIDNUMBER); if (gid == LU_VALUE_INVALID_ID) { lu_error_new(error, lu_error_generic, _("Cannot determine GID to use for mail spool")); goto err_spool_path; } /* Now get the user's UID. */ uid = lu_ent_get_first_id(ent, LU_UIDNUMBER); if (uid == LU_VALUE_INVALID_ID) { lu_error_new(error, lu_error_generic, _("Cannot determine UID to use for mail spool")); goto err_spool_path; } fd = open(spool_path, O_WRONLY | O_CREAT, 0); if (fd == -1) { lu_error_new(error, lu_error_open, _("couldn't open `%s': %s"), spool_path, strerror(errno)); goto err_spool_path; } if (fchown(fd, uid, gid) == -1) { lu_error_new(error, lu_error_generic, _("Error changing owner of `%s': %s"), spool_path, strerror(errno)); goto err_fd; } if (fchmod(fd, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP) == -1) { lu_error_new(error, lu_error_generic, _("Error changing mode of `%s': %s"), spool_path, strerror(errno)); goto err_fd; } close(fd); g_free(spool_path); return TRUE; err_fd: close(fd); err_spool_path: g_free(spool_path); err: return FALSE; } /** * lu_mail_spool_remove: * @ctx: A context * @ent: An entity representing the relevant user * @error: Filled with #lu_error if an error occurs * * Creates a mail spool for the specified user. * * Returns: %TRUE on success */ gboolean lu_mail_spool_remove(struct lu_context *ctx, struct lu_ent *ent, struct lu_error **error) { char *p; LU_ERROR_CHECK(error); g_return_val_if_fail(ctx != NULL, FALSE); g_return_val_if_fail(ent != NULL, FALSE); g_return_val_if_fail(ent->type == lu_user, FALSE); p = mail_spool_path(ctx, ent, error); if (p == NULL) return FALSE; if (unlink(p) != 0 && errno != ENOENT) { lu_error_new(error, lu_error_generic, _("Error removing `%s': %s"), p, strerror (errno)); g_free(p); return FALSE; } g_free(p); return TRUE; } libuser-0.60~dfsg/admin/0000755000175000017500000000000012226342602015161 5ustar tzafrirtzafrirlibuser-0.60~dfsg/admin/install-sh0000755000175000017500000003325512157551763017212 0ustar tzafrirtzafrir#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-11-20.07; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: libuser-0.60~dfsg/admin/ltmain.sh0000644000175000017500000105152212153313341017004 0ustar tzafrirtzafrir # libtool (GNU libtool) 2.4.2 # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, # or obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Usage: $progname [OPTION]... [MODE-ARG]... # # Provide generalized library-building support services. # # --config show all configuration variables # --debug enable verbose shell tracing # -n, --dry-run display commands without modifying any files # --features display basic configuration information and exit # --mode=MODE use operation mode MODE # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --no-quiet, --no-silent # print informational messages (default) # --no-warn don't display warning messages # --tag=TAG use configuration variables from tag TAG # -v, --verbose print more informational messages than default # --no-verbose don't print the extra informational messages # --version print version information # -h, --help, --help-all print short, long, or detailed help message # # MODE must be one of the following: # # clean remove files from the build directory # compile compile a source file into a libtool object # execute automatically set library path, then run a program # finish complete the installation of libtool libraries # install install libraries or executables # link create a library or an executable # uninstall remove libraries from an installed directory # # MODE-ARGS vary depending on the MODE. When passed as first option, # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. # Try `$progname --help --mode=MODE' for a more detailed description of MODE. # # When reporting a bug, please describe a test case to reproduce it and # include the following information: # # host-triplet: $host # shell: $SHELL # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) # $progname: (GNU libtool) 2.4.2 # automake: $automake_version # autoconf: $autoconf_version # # Report bugs to . # GNU libtool home page: . # General help using GNU software: . PROGRAM=libtool PACKAGE=libtool VERSION=2.4.2 TIMESTAMP="" package_revision=1.3337 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # NLS nuisances: We save the old values to restore during execute mode. lt_user_locale= lt_safe_locale= for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var $lt_var=C export $lt_var lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" fi" done LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL $lt_unset CDPATH # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" : ${CP="cp -f"} test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. exit_status=$EXIT_SUCCESS # Make sure IFS has a sensible default lt_nl=' ' IFS=" $lt_nl" dirname="s,/[^/]*$,," basename="s,^.*/,," # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_dirname may be replaced by extended shell implementation # func_basename file func_basename () { func_basename_result=`$ECHO "${1}" | $SED "$basename"` } # func_basename may be replaced by extended shell implementation # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` } # func_dirname_and_basename may be replaced by extended shell implementation # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # func_strip_suffix prefix name func_stripname () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname may be replaced by extended shell implementation # These SED scripts presuppose an absolute path with a trailing slash. pathcar='s,^/\([^/]*\).*$,\1,' pathcdr='s,^/[^/]*,,' removedotparts=':dotsl s@/\./@/@g t dotsl s,/\.$,/,' collapseslashes='s@/\{1,\}@/@g' finalslash='s,/*$,/,' # func_normal_abspath PATH # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. # value returned in "$func_normal_abspath_result" func_normal_abspath () { # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` while :; do # Processed it all yet? if test "$func_normal_abspath_tpath" = / ; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result" ; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_relative_path SRCDIR DSTDIR # generates a relative path from SRCDIR to DSTDIR, with a trailing # slash if non-empty, suitable for immediately appending a filename # without needing to append a separator. # value returned in "$func_relative_path_result" func_relative_path () { func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=${func_dirname_result} if test "x$func_relative_path_tlibdir" = x ; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test "x$func_stripname_result" != x ; then func_relative_path_result=${func_relative_path_result}/${func_stripname_result} fi # Normalisation. If bindir is libdir, return empty string, # else relative path ending with a slash; either way, target # file name can be directly appended. if test ! -z "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result/" func_relative_path_result=$func_stripname_result fi } # The name of this program: func_dirname_and_basename "$progpath" progname=$func_basename_result # Make sure we have an absolute path for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=$func_dirname_result progdir=`cd "$progdir" && pwd` progpath="$progdir/$progname" ;; *) save_IFS="$IFS" IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break done IFS="$save_IFS" test -n "$progdir" || progdir=`pwd` progpath="$progdir/$progname" ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([`"$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' # Sed substitution that converts a w32 file name or path # which contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-`\' parameter expansions in output of double_quote_subst that were # `\'-ed in input to the same. If an odd number of `\' preceded a '$' # in input to double_quote_subst, that '$' was protected from expansion. # Since each input `\' is now two `\'s, look for any number of runs of # four `\'s followed by two `\'s and then a '$'. `\' that '$'. bs='\\' bs2='\\\\' bs4='\\\\\\\\' dollar='\$' sed_double_backslash="\ s/$bs4/&\\ /g s/^$bs2$dollar/$bs&/ s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g s/\n//g" # Standard options: opt_dry_run=false opt_help=false opt_quiet=false opt_verbose=false opt_warning=: # func_echo arg... # Echo program name prefixed message, along with the current mode # name if it has been set yet. func_echo () { $ECHO "$progname: ${opt_mode+$opt_mode: }$*" } # func_verbose arg... # Echo program name prefixed message in verbose mode only. func_verbose () { $opt_verbose && func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_error arg... # Echo program name prefixed message to standard error. func_error () { $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 } # func_warning arg... # Echo program name prefixed warning message to standard error. func_warning () { $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 # bash bug again: : } # func_fatal_error arg... # Echo program name prefixed message to standard error, and exit. func_fatal_error () { func_error ${1+"$@"} exit $EXIT_FAILURE } # func_fatal_help arg... # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { func_error ${1+"$@"} func_fatal_error "$help" } help="Try \`$progname --help' for more information." ## default # func_grep expression filename # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $GREP "$1" "$2" >/dev/null 2>&1 } # func_mkdir_p directory-path # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { my_directory_path="$1" my_dir_list= if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then # Protect directory names starting with `-' case $my_directory_path in -*) my_directory_path="./$my_directory_path" ;; esac # While some portion of DIR does not yet exist... while test ! -d "$my_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. my_dir_list="$my_directory_path:$my_dir_list" # If the last portion added has no slash in it, the list is done case $my_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` done my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` save_mkdir_p_IFS="$IFS"; IFS=':' for my_dir in $my_dir_list; do IFS="$save_mkdir_p_IFS" # mkdir can fail with a `File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$my_dir" 2>/dev/null || : done IFS="$save_mkdir_p_IFS" # Bail out if we (or some other process) failed to create a directory. test -d "$my_directory_path" || \ func_fatal_error "Failed to create \`$1'" fi } # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$opt_dry_run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $MKDIR "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || \ func_fatal_error "cannot create temporary directory \`$my_tmpdir'" fi $ECHO "$my_tmpdir" } # func_quote_for_eval arg # Aesthetically quote ARG to be evaled later. # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT # is double-quoted, suitable for a subsequent eval, whereas # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters # which are still active within double quotes backslashified. func_quote_for_eval () { case $1 in *[\\\`\"\$]*) func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; *) func_quote_for_eval_unquoted_result="$1" ;; esac case $func_quote_for_eval_unquoted_result in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and and variable # expansion for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" ;; *) func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" esac } # func_quote_for_expand arg # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { case $1 in *[\\\`\"]*) my_arg=`$ECHO "$1" | $SED \ -e "$double_quote_subst" -e "$sed_double_backslash"` ;; *) my_arg="$1" ;; esac case $my_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") my_arg="\"$my_arg\"" ;; esac func_quote_for_expand_result="$my_arg" } # func_show_eval cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$my_cmd" my_status=$? if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_show_eval_locale cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$lt_user_locale $my_cmd" my_status=$? eval "$lt_safe_locale" if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_tr_sh # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_version # Echo version message to standard output and exit. func_version () { $opt_debug $SED -n '/(C)/!b go :more /\./!{ N s/\n# / / b more } :go /^# '$PROGRAM' (GNU /,/# warranty; / { s/^# // s/^# *$// s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ p }' < "$progpath" exit $? } # func_usage # Echo short help message to standard output and exit. func_usage () { $opt_debug $SED -n '/^# Usage:/,/^# *.*--help/ { s/^# // s/^# *$// s/\$progname/'$progname'/ p }' < "$progpath" echo $ECHO "run \`$progname --help | more' for full usage" exit $? } # func_help [NOEXIT] # Echo long help message to standard output and exit, # unless 'noexit' is passed as argument. func_help () { $opt_debug $SED -n '/^# Usage:/,/# Report bugs to/ { :print s/^# // s/^# *$// s*\$progname*'$progname'* s*\$host*'"$host"'* s*\$SHELL*'"$SHELL"'* s*\$LTCC*'"$LTCC"'* s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ p d } /^# .* home page:/b print /^# General help using/b print ' < "$progpath" ret=$? if test -z "$1"; then exit $ret fi } # func_missing_arg argname # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $opt_debug func_error "missing argument for $1." exit_cmd=exit } # func_split_short_opt shortopt # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. func_split_short_opt () { my_sed_short_opt='1s/^\(..\).*$/\1/;q' my_sed_short_rest='1s/^..\(.*\)$/\1/;q' func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` } # func_split_short_opt may be replaced by extended shell implementation # func_split_long_opt longopt # Set func_split_long_opt_name and func_split_long_opt_arg shell # variables after splitting LONGOPT at the `=' sign. func_split_long_opt () { my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' my_sed_long_arg='1s/^--[^=]*=//' func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` } # func_split_long_opt may be replaced by extended shell implementation exit_cmd=: magic="%%%MAGIC variable%%%" magic_exe="%%%MAGIC EXE variable%%%" # Global variables. nonopt= preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "${1}=\$${1}\${2}" } # func_append may be replaced by extended shell implementation # func_append_quoted var value # Quote VALUE and append to the end of shell variable VAR, separated # by a space. func_append_quoted () { func_quote_for_eval "${2}" eval "${1}=\$${1}\\ \$func_quote_for_eval_result" } # func_append_quoted may be replaced by extended shell implementation # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "${@}"` } # func_arith may be replaced by extended shell implementation # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` } # func_len may be replaced by extended shell implementation # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` } # func_lo2o may be replaced by extended shell implementation # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` } # func_xform may be replaced by extended shell implementation # func_fatal_configuration arg... # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_error ${1+"$@"} func_error "See the $PACKAGE documentation for more information." func_fatal_error "Fatal configuration error." } # func_config # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # Display the features supported by this script. func_features () { echo "host: $host" if test "$build_libtool_libs" = yes; then echo "enable shared libraries" else echo "disable shared libraries" fi if test "$build_old_libs" = yes; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag tagname # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname="$1" re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf="/$re_begincf/,/$re_endcf/p" # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Option defaults: opt_debug=: opt_dry_run=false opt_config=false opt_preserve_dup_deps=false opt_features=false opt_finish=false opt_help=false opt_help_all=false opt_silent=: opt_warning=: opt_verbose=: opt_silent=false opt_verbose=false # Parse options once, thoroughly. This comes as soon as possible in the # script to make things like `--version' happen as quickly as we can. { # this just eases exit handling while test $# -gt 0; do opt="$1" shift case $opt in --debug|-x) opt_debug='set -x' func_echo "enabling shell trace mode" $opt_debug ;; --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) opt_config=: func_config ;; --dlopen|-dlopen) optarg="$1" opt_dlopen="${opt_dlopen+$opt_dlopen }$optarg" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) opt_features=: func_features ;; --finish) opt_finish=: set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help_all=: opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_mode="$optarg" case $optarg in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_silent=false func_append preserve_args " $opt" ;; --no-warning|--no-warn) opt_warning=false func_append preserve_args " $opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $opt" ;; --silent|--quiet) opt_silent=: func_append preserve_args " $opt" opt_verbose=false ;; --verbose|-v) opt_verbose=: func_append preserve_args " $opt" opt_silent=false ;; --tag) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_tag="$optarg" func_append preserve_args " $opt $optarg" func_enable_tag "$optarg" shift ;; -\?|-h) func_usage ;; --help) func_help ;; --version) func_version ;; # Separate optargs to long options: --*=*) func_split_long_opt "$opt" set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-n*|-v*) func_split_short_opt "$opt" set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognized option \`$opt'" ;; *) set dummy "$opt" ${1+"$@"}; shift; break ;; esac done # Validate options: # save first non-option argument if test "$#" -gt 0; then nonopt="$opt" shift fi # preserve --debug test "$opt_debug" = : || func_append preserve_args " --debug" case $host in *cygwin* | *mingw* | *pw32* | *cegcc*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then func_fatal_configuration "not configured to build any kind of library" fi # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test "$opt_mode" != execute; then func_error "unrecognized option \`-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$progname --help --mode=$opt_mode' for more information." } # Bail if the options were screwed $exit_cmd $EXIT_FAILURE } ## ----------- ## ## Main. ## ## ----------- ## # func_lalib_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null \ | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_unsafe_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if `file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case "$lalib_p_line" in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test "$lalib_p" = yes } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { func_lalib_p "$1" } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $opt_debug save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$save_ifs eval cmd=\"$cmd\" func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. func_source () { $opt_debug case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case "$lt_sysroot:$1" in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result="=$func_stripname_result" ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $opt_debug if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with \`--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=${1} if test "$build_libtool_libs" = yes; then write_lobj=\'${2}\' else write_lobj=none fi if test "$build_old_libs" = yes; then write_oldobj=\'${3}\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$lt_sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $opt_debug # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result="" if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result" ; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $opt_debug if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $opt_debug # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $opt_debug if test -z "$2" && test -n "$1" ; then func_error "Could not determine host file name corresponding to" func_error " \`$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result="$1" fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $opt_debug if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " \`$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result="$3" fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $opt_debug case $4 in $1 ) func_to_host_path_result="$3$func_to_host_path_result" ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via `$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $opt_debug $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $opt_debug case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result="$1" } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result="$func_convert_core_msys_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via `$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $opt_debug if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd="func_convert_path_${func_stripname_result}" fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $opt_debug func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result="$1" } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_msys_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_mode_compile arg... func_mode_compile () { $opt_debug # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify \`-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" func_append_quoted lastarg "$arg" done IFS="$save_ifs" func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with \`-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj="$func_basename_result" } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from \`$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name \`$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname="$func_basename_result" xdir="$func_dirname_result" lobj=${xdir}$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test "$build_libtool_libs" = yes; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test "$suppress_opt" = yes; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test "$need_locks" != no; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test "$opt_mode" = compile && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a \`.o' file suitable for static linking -static only build a \`.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode \`$opt_mode'" ;; esac echo $ECHO "Try \`$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test "$opt_help" = :; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | sed -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | sed '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $opt_debug # The first argument is the command name. cmd="$nonopt" test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "\`$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "\`$file' was not linked with \`-export-dynamic'" continue fi func_dirname "$file" "" "." dir="$func_dirname_result" if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir="$func_dirname_result" ;; *) func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file="$progdir/$program" elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if test "X$opt_dry_run" = Xfalse; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS fi } test "$opt_mode" = execute && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $opt_debug libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "\`$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument \`$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and \`=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_silent && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the \`-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the \`$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the \`$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test "$opt_mode" = finish && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $opt_debug # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac; then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test "x$prev" = x-m && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the \`$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else func_dirname_and_basename "$dest" "" "." destdir="$func_dirname_result" destname="$func_basename_result" # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "\`$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "\`$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir="$func_dirname_result" func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking \`$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname="$1" shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme="$stripme" case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme="" ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib="$destdir/$realname" func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name="$func_basename_result" instname="$dir/$name"i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest="$destfile" destfile= ;; *) func_fatal_help "cannot copy a libtool object to \`$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script \`$wrapper'" finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then func_warning "\`$lib' has not been installed in \`$libdir'" finalize=no fi done relink_command= func_source "$wrapper" outputname= if test "$fast_install" = no && test -n "$relink_command"; then $opt_dry_run || { if test "$finalize" = yes; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file="$func_basename_result" outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_silent || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink \`$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file="$outputname" else func_warning "cannot relink \`$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name="$func_basename_result" # Set up the ranlib parameters. oldlib="$destdir/$name" func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run \`$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test "$opt_mode" = install && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $opt_debug my_outputname="$1" my_originator="$2" my_pic_p="${3-no}" my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms="${my_outputname}S.c" else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${my_outputname}.nm" func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then func_verbose "generating symbol list for \`$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $opt_dry_run || { $RM $export_symbols eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from \`$dlprefile'" func_basename "$dlprefile" name="$func_basename_result" case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename="" if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname" ; then func_basename "$dlprefile_dlname" dlprefile_dlbasename="$func_basename_result" else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename" ; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[]; LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = {\ { \"$my_originator\", (void *) 0 }," case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) if test "X$my_pic_p" != Xno; then pic_flag_for_symtable=" $pic_flag" fi ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' # Transform the symbol file into the correct name. symfileobj="$output_objdir/${my_outputname}S.$objext" case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for \`$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $opt_debug win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $opt_debug sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $opt_debug match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive which possess that section. Heuristic: eliminate # all those which have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $opt_debug if func_cygming_gnu_implib_p "$1" ; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1" ; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result="" fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $opt_debug f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" if test "$lock_old_archive_extraction" = yes; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test "$lock_old_archive_extraction" = yes; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $opt_debug my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib="$func_basename_result" my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`basename "$darwin_archive"` darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory in which it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ which is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options which match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include /* declarations of non-ANSI functions */ #if defined(__MINGW32__) # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined(__CYGWIN__) # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined (other platforms) ... */ #endif /* portability defines, excluding path handling macros */ #if defined(_MSC_VER) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC # ifndef _INTPTR_T_DEFINED # define _INTPTR_T_DEFINED # define intptr_t int # endif #elif defined(__MINGW32__) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined(__CYGWIN__) # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined (other platforms) ... */ #endif #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) #if defined(LT_DEBUGWRAPPER) static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (strcmp (str, pat) == 0) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else int len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { int orig_value_len = strlen (orig_value); int add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ int len = strlen (new_value); while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[len-1] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $opt_debug case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_mode_link arg... func_mode_link () { $opt_debug case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # which system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll which has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=no prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module="${wl}-single_module" func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir="$arg" prev= continue ;; dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" test -f "$arg" \ || func_fatal_error "symbol file \`$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file \`$arg' does not exist" fi arg=$save_arg prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds="$arg" prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "\`-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between \`-L' and \`$1'" else func_fatal_error "need path for \`-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of \`$dir'" dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "\`-no-install' is ignored for $host" func_warning "assuming \`-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-flto*|-fwhopr*|-fuse-linker-plugin) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test "$prev" = dlfiles; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the \`$prevarg' option requires an argument" if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname="$func_basename_result" libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" func_dirname "$output" "/" "" output_objdir="$func_dirname_result$objdir" func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps ; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test "$linkmode,$pass" = "lib,link"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs="$tmp_deplibs" fi if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs="$dlprefiles" fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then func_warning "\`-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no func_dirname "$lib" "" "." ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l *.ltframework) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "\`-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." else echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "\`$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir="$func_dirname_result" dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test "$prefer_static_libs" = yes || test "$prefer_static_libs,$installed" = "built,no"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib="$l" done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of \`$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir="$ladir" fi ;; esac func_basename "$lib" laname="$func_basename_result" # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library \`$lib' was moved." dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$lt_sysroot$libdir" absdir="$lt_sysroot$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later func_append notinst_path " $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir" && test "$linkmode" = prog; then func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" fi case "$host" in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath:" in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test "$installed" = no; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule="" for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule="$dlpremoduletest" break fi done if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then echo if test "$linkmode" = prog; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname="$1" shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc*) func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" func_basename "$soroot" soname="$func_basename_result" func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from \`$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for \`$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$opt_mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we can not # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null ; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library" ; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add="$dir/$old_library" fi elif test -n "$old_library"; then add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$absdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$opt_mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system can not link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs="$temp_deplibs" fi func_append newlib_search_path " $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path="$deplib" ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of \`$dir'" absdir="$dir" fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl" ; then depdepl="$absdir/$objdir/$depdepl" darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" path= fi fi ;; *) path="-L$absdir/$objdir" ;; esac else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "\`$deplib' seems to be moved" path="-L$absdir" fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test "$pass" = link; then if test "$linkmode" = "prog"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" fi if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "\`-R' is ignored for archives" test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "\`-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "\`-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test "$module" = no && \ func_fatal_help "libtool library \`$output' must begin with \`lib'" if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test "$dlself" != no && \ func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test "$#" -gt 1 && \ func_warning "ignoring multiple \`-rpath's for a libtool library" install_libdir="$1" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "\`-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 shift IFS="$save_ifs" test -n "$7" && \ func_fatal_help "too many parameters to \`-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$1" number_minor="$2" number_revision="$3" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|qnx|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; esac ;; no) current="$1" revision="$2" age="$3" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT \`$current' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION \`$revision' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE \`$age' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE \`$age' is greater than the current interface number \`$current'" func_fatal_error "\`$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current" ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring:${iface}.0" done # Make executables depend on our current version. func_append verstring ":${current}.0" ;; qnx) major=".$current" versuffix=".$current" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; *) func_fatal_configuration "unknown library version type \`$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi func_generate_dlsyms "$libname" "$libname" "yes" func_append libobjs " $symfileobj" test "X$libobjs" = "X " && libobjs= if test "$opt_mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test "X$deplibs_check_method" = "Xnone"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then # Remove ${wl} instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$opt_mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname="$1" shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols="$output_objdir/$libname.uexp" func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile if test "x`$SED 1q $export_symbols`" != xEXPORTS; then # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols="$export_symbols" export_symbols= always_export_symbols=yes fi fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd1 in $cmds; do IFS="$save_ifs" # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test "$try_normal_branch" = yes \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=${output_objdir}/${output_la}.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test "$compiler_needs_object" = yes && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then output=${output_objdir}/${output_la}.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then output=${output_objdir}/${output_la}.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test "$compiler_needs_object" = yes; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-${k}.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test "X$objlist" = X || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-${k}.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\${concat_cmds}$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi if ${skipped_export-false}; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi fi test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi if ${skipped_export-false}; then if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi fi libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "\`-R' is ignored for objects" test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for objects" test -n "$release" && \ func_warning "\`-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object \`$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` else gentop="$output_objdir/${obj}x" func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" # Create the old-style object. reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for programs" test -n "$release" && \ func_warning "\`-release' is ignored for programs" test "$preload" = yes \ && test "$dlopen_support" = unknown \ && test "$dlopen_self" = unknown \ && test "$dlopen_self_static" = unknown && \ func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test "$tagname" = CXX ; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " ${wl}-bind_at_load" func_append finalize_command " ${wl}-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs="$new_libs" func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" "no" # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=yes case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=no ;; *cygwin* | *mingw* ) if test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; *) if test "$need_relink" = no || test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; esac if test "$wrappers_required" = no; then # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.${objext}"; then func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' fi exit $exit_status fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" func_warning "this platform does not like uninstalled shared libraries" func_warning "\`$output' will be relinked during installation" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host" ; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" if test "$preload" = yes && test -f "$symfileobj"; then func_append oldobjs " $symfileobj" fi fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase="$func_basename_result" case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name="$func_basename_result" func_resolve_sysroot "$deplib" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles="$newdlprefiles" fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test "x$bindir" != x ; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that can not go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } { test "$opt_mode" = link || test "$opt_mode" = relink; } && func_mode_link ${1+"$@"} # func_mode_uninstall arg... func_mode_uninstall () { $opt_debug RM="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) func_append RM " $arg"; rmforce=yes ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir="$func_dirname_result" if test "X$dir" = X.; then odir="$objdir" else odir="$dir/$objdir" fi func_basename "$file" name="$func_basename_result" test "$opt_mode" = uninstall && odir="$dir" # Remember odir for removal later, being careful to avoid duplicates if test "$opt_mode" = clean; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case "$opt_mode" in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test "$pic_object" != none; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test "$non_pic_object" != none; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test "$opt_mode" = clean ; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name" ; then func_append rmfiles " $odir/lt-${noexename}.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && func_mode_uninstall ${1+"$@"} test -z "$opt_mode" && { help="$generic_help" func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode \`$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: # vi:sw=2 libuser-0.60~dfsg/admin/ylwrap0000755000175000017500000001553612157551763016454 0ustar tzafrirtzafrir#! /bin/sh # ylwrap - wrapper for lex/yacc invocations. scriptversion=2012-12-21.17; # UTC # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . get_dirname () { case $1 in */*|*\\*) printf '%s\n' "$1" | sed -e 's|\([\\/]\)[^\\/]*$|\1|';; # Otherwise, we want the empty string (not "."). esac } # guard FILE # ---------- # The CPP macro used to guard inclusion of FILE. guard() { printf '%s\n' "$1" \ | sed \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \ -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g' \ -e 's/__*/_/g' } # quote_for_sed [STRING] # ---------------------- # Return STRING (or stdin) quoted to be used as a sed pattern. quote_for_sed () { case $# in 0) cat;; 1) printf '%s\n' "$1";; esac \ | sed -e 's|[][\\.*]|\\&|g' } case "$1" in '') echo "$0: No files given. Try '$0 --help' for more information." 1>&2 exit 1 ;; --basedir) basedir=$2 shift 2 ;; -h|--h*) cat <<\EOF Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]... Wrapper for lex/yacc invocations, renaming files as desired. INPUT is the input file OUTPUT is one file PROG generates DESIRED is the file we actually want instead of OUTPUT PROGRAM is program to run ARGS are passed to PROG Any number of OUTPUT,DESIRED pairs may be used. Report bugs to . EOF exit $? ;; -v|--v*) echo "ylwrap $scriptversion" exit $? ;; esac # The input. input="$1" shift # We'll later need for a correct munging of "#line" directives. input_sub_rx=`get_dirname "$input" | quote_for_sed` case "$input" in [\\/]* | ?:[\\/]*) # Absolute path; do nothing. ;; *) # Relative path. Make it absolute. input="`pwd`/$input" ;; esac input_rx=`get_dirname "$input" | quote_for_sed` # Since DOS filename conventions don't allow two dots, # the DOS version of Bison writes out y_tab.c instead of y.tab.c # and y_tab.h instead of y.tab.h. Test to see if this is the case. y_tab_nodot=false if test -f y_tab.c || test -f y_tab.h; then y_tab_nodot=true fi # The parser itself, the first file, is the destination of the .y.c # rule in the Makefile. parser=$1 # A sed program to s/FROM/TO/g for all the FROM/TO so that, for # instance, we rename #include "y.tab.h" into #include "parse.h" # during the conversion from y.tab.c to parse.c. sed_fix_filenames= # Also rename header guards, as Bison 2.7 for instance uses its header # guard in its implementation file. sed_fix_header_guards= while test "$#" -ne 0; do if test "$1" = "--"; then shift break fi from=$1 # Handle y_tab.c and y_tab.h output by DOS if $y_tab_nodot; then case $from in "y.tab.c") from=y_tab.c;; "y.tab.h") from=y_tab.h;; esac fi shift to=$1 shift sed_fix_filenames="${sed_fix_filenames}s|"`quote_for_sed "$from"`"|$to|g;" sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;" done # The program to run. prog="$1" shift # Make any relative path in $prog absolute. case "$prog" in [\\/]* | ?:[\\/]*) ;; *[\\/]*) prog="`pwd`/$prog" ;; esac # FIXME: add hostname here for parallel makes that run commands on # other machines. But that might take us over the 14-char limit. dirname=ylwrap$$ do_exit="cd '`pwd`' && rm -rf $dirname > /dev/null 2>&1;"' (exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 mkdir $dirname || exit 1 cd $dirname case $# in 0) "$prog" "$input" ;; *) "$prog" "$@" "$input" ;; esac ret=$? if test $ret -eq 0; then for from in * do to=`printf '%s\n' "$from" | sed "$sed_fix_filenames"` if test -f "$from"; then # If $2 is an absolute path name, then just use that, # otherwise prepend '../'. case $to in [\\/]* | ?:[\\/]*) target=$to;; *) target="../$to";; esac # Do not overwrite unchanged header files to avoid useless # recompilations. Always update the parser itself: it is the # destination of the .y.c rule in the Makefile. Divert the # output of all other files to a temporary file so we can # compare them to existing versions. if test $from != $parser; then realtarget="$target" target=tmp-`printf '%s\n' "$target" | sed 's|.*[\\/]||g'` fi # Munge "#line" or "#" directives. Don't let the resulting # debug information point at an absolute srcdir. Use the real # output file name, not yy.lex.c for instance. Adjust the # include guards too. sed -e "/^#/!b" \ -e "s|$input_rx|$input_sub_rx|" \ -e "$sed_fix_filenames" \ -e "$sed_fix_header_guards" \ "$from" >"$target" || ret=$? # Check whether files must be updated. if test "$from" != "$parser"; then if test -f "$realtarget" && cmp -s "$realtarget" "$target"; then echo "$to is unchanged" rm -f "$target" else echo "updating $to" mv -f "$target" "$realtarget" fi fi else # A missing file is only an error for the parser. This is a # blatant hack to let us support using "yacc -d". If -d is not # specified, don't fail when the header file is "missing". if test "$from" = "$parser"; then ret=1 fi fi done fi # Remove the directory. cd .. rm -rf $dirname exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: libuser-0.60~dfsg/admin/compile0000755000175000017500000001624512157551763016564 0ustar tzafrirtzafrir#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2013 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: libuser-0.60~dfsg/admin/test-driver0000755000175000017500000000761112157551763017401 0ustar tzafrirtzafrir#! /bin/sh # test-driver - basic testsuite driver script. scriptversion=2012-06-27.10; # UTC # Copyright (C) 2011-2013 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u usage_error () { echo "$0: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat <$log_file 2>&1 estatus=$? if test $enable_hard_errors = no && test $estatus -eq 99; then estatus=1 fi case $estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac # Report outcome to console. echo "${col}${res}${std}: $test_name" # Register the test result, and other relevant metadata. echo ":test-result: $res" > $trs_file echo ":global-test-result: $res" >> $trs_file echo ":recheck: $recheck" >> $trs_file echo ":copy-in-global-log: $gcopy" >> $trs_file # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: libuser-0.60~dfsg/admin/ar-lib0000755000175000017500000001330212157551763016271 0ustar tzafrirtzafrir#! /bin/sh # Wrapper for Microsoft lib.exe me=ar-lib scriptversion=2012-03-01.08; # UTC # Copyright (C) 2010-2013 Free Software Foundation, Inc. # Written by Peter Rosin . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # func_error message func_error () { echo "$me: $1" 1>&2 exit 1 } file_conv= # func_file_conv build_file # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv in mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin) file=`cygpath -m "$file" || echo "$file"` ;; wine) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_at_file at_file operation archive # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE # for each of them. # When interpreting the content of the @FILE, do NOT use func_file_conv, # since the user would need to supply preconverted file names to # binutils ar, at least for MinGW. func_at_file () { operation=$2 archive=$3 at_file_contents=`cat "$1"` eval set x "$at_file_contents" shift for member do $AR -NOLOGO $operation:"$member" "$archive" || exit $? done } case $1 in '') func_error "no command. Try '$0 --help' for more information." ;; -h | --h*) cat <. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches with a ChangeLog entry to config-patches@gnu.org. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 \ | or1k | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i386-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or1k-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: libuser-0.60~dfsg/admin/config.guess0000755000175000017500000013036112157551763017522 0ustar tzafrirtzafrir#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2013 Free Software Foundation, Inc. timestamp='2013-06-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches with a ChangeLog entry to config-patches@gnu.org. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright 1992-2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval $set_cc_for_build cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` ;; esac # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="gnulibc1" ; fi echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; or1k:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; or32:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-${LIBC} exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; x86_64:Haiku:*:*) echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown eval $set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: libuser-0.60~dfsg/admin/missing0000755000175000017500000001533112157551763016600 0ustar tzafrirtzafrir#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2012-06-26.16; # UTC # Copyright (C) 1996-2013 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'automa4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: libuser-0.60~dfsg/admin/config.rpath0000755000175000017500000004443512226342570017507 0ustar tzafrirtzafrir#! /bin/sh # Output a system dependent set of variables, describing how to set the # run time search path of shared libraries in an executable. # # Copyright 1996-2013 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally by Gordon Matzigkeit , 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld # should be set by the caller. # # The set of defined variables is at the end of this script. # Known limitations: # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer # than 256 bytes, otherwise the compiler driver will dump core. The only # known workaround is to choose shorter directory names for the build # directory and/or the installation directory. # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a shrext=.so host="$1" host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` # Code taken from libtool.m4's _LT_CC_BASENAME. for cc_temp in $CC""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` # Code taken from libtool.m4's _LT_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; mingw* | cygwin* | pw32* | os2* | cegcc*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in ecc*) wl='-Wl,' ;; icc* | ifort*) wl='-Wl,' ;; lf95*) wl='-Wl,' ;; nagfor*) wl='-Wl,-Wl,,' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) wl='-Wl,' ;; ccc*) wl='-Wl,' ;; xl* | bgxl* | bgf* | mpixl*) wl='-Wl,' ;; como) wl='-lopt=' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ F* | *Sun*Fortran*) wl= ;; *Sun\ C*) wl='-Wl,' ;; esac ;; esac ;; newsos6) ;; *nto* | *qnx*) ;; osf3* | osf4* | osf5*) wl='-Wl,' ;; rdos*) ;; solaris*) case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) wl='-Qoption ld ' ;; *) wl='-Wl,' ;; esac ;; sunos4*) wl='-Qoption ld ' ;; sysv4 | sysv4.2uw2* | sysv4.3*) wl='-Wl,' ;; sysv4*MP*) ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) wl='-Wl,' ;; unicos*) wl='-Wl,' ;; uts4*) ;; esac fi # Code taken from libtool.m4's _LT_LINKER_SHLIBS. hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no case "$host_os" in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. # Unlike libtool, we use -rpath here, not --rpath, since the documented # option of GNU ld is called -rpath, not --rpath. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' case "$host_os" in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no fi ;; amigaos*) case "$host_cpu" in powerpc) ;; m68k) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then : else ld_shlibs=no fi ;; haiku*) ;; interix[3-9]*) hardcode_direct=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; netbsd*) ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' else ld_shlibs=no fi ;; esac ;; sunos4*) hardcode_direct=yes ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then hardcode_libdir_flag_spec= fi else case "$host_os" in aix3*) # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac fi hardcode_direct=yes hardcode_libdir_separator=':' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac fi # Begin _LT_AC_SYS_LIBPATH_AIX. echo 'int main () { return 0; }' > conftest.c ${CC} ${LDFLAGS} conftest.c -o conftest aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` fi if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib" fi rm -f conftest.c conftest # End _LT_AC_SYS_LIBPATH_AIX. if test "$aix_use_runtimelinking" = yes; then hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' else hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" fi fi ;; amigaos*) case "$host_cpu" in powerpc) ;; m68k) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' libext=lib ;; darwin* | rhapsody*) hardcode_direct=no if { case $cc_basename in ifort*) true;; *) test "$GCC" = yes;; esac; }; then : else ld_shlibs=no fi ;; dgux*) hardcode_libdir_flag_spec='-L$libdir' ;; freebsd2.2*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; freebsd2*) hardcode_direct=yes hardcode_minus_L=yes ;; freebsd* | dragonfly*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; hpux9*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; hpux10*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no ;; *) hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; netbsd*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; newsos6) hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then hardcode_libdir_flag_spec='${wl}-rpath,$libdir' else case "$host_os" in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) hardcode_libdir_flag_spec='-R$libdir' ;; *) hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; osf3*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) if test "$GCC" = yes; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else # Both cc and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) hardcode_libdir_flag_spec='-R$libdir' ;; sunos4*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes ;; sysv4) case $host_vendor in sni) hardcode_direct=yes # is this really true??? ;; siemens) hardcode_direct=no ;; motorola) hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac ;; sysv4.3*) ;; sysv4*MP*) if test -d /usr/nec; then ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) ;; sysv5* | sco3.2v5* | sco5v6*) hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' ;; uts4*) hardcode_libdir_flag_spec='-L$libdir' ;; *) ld_shlibs=no ;; esac fi # Check dynamic linker characteristics # Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER. # Unlike libtool.m4, here we don't care about _all_ names of the library, but # only about the one the linker finds when passed -lNAME. This is the last # element of library_names_spec in libtool.m4, or possibly two of them if the # linker has special search rules. library_names_spec= # the last element of library_names_spec in libtool.m4 libname_spec='lib$name' case "$host_os" in aix3*) library_names_spec='$libname.a' ;; aix[4-9]*) library_names_spec='$libname$shrext' ;; amigaos*) case "$host_cpu" in powerpc*) library_names_spec='$libname$shrext' ;; m68k) library_names_spec='$libname.a' ;; esac ;; beos*) library_names_spec='$libname$shrext' ;; bsdi[45]*) library_names_spec='$libname$shrext' ;; cygwin* | mingw* | pw32* | cegcc*) shrext=.dll library_names_spec='$libname.dll.a $libname.lib' ;; darwin* | rhapsody*) shrext=.dylib library_names_spec='$libname$shrext' ;; dgux*) library_names_spec='$libname$shrext' ;; freebsd* | dragonfly*) case "$host_os" in freebsd[123]*) library_names_spec='$libname$shrext$versuffix' ;; *) library_names_spec='$libname$shrext' ;; esac ;; gnu*) library_names_spec='$libname$shrext' ;; haiku*) library_names_spec='$libname$shrext' ;; hpux9* | hpux10* | hpux11*) case $host_cpu in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac library_names_spec='$libname$shrext' ;; interix[3-9]*) library_names_spec='$libname$shrext' ;; irix5* | irix6* | nonstopux*) library_names_spec='$libname$shrext' case "$host_os" in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; *) libsuff= shlibsuff= ;; esac ;; esac ;; linux*oldld* | linux*aout* | linux*coff*) ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) library_names_spec='$libname$shrext' ;; knetbsd*-gnu) library_names_spec='$libname$shrext' ;; netbsd*) library_names_spec='$libname$shrext' ;; newsos6) library_names_spec='$libname$shrext' ;; *nto* | *qnx*) library_names_spec='$libname$shrext' ;; openbsd*) library_names_spec='$libname$shrext$versuffix' ;; os2*) libname_spec='$name' shrext=.dll library_names_spec='$libname.a' ;; osf3* | osf4* | osf5*) library_names_spec='$libname$shrext' ;; rdos*) ;; solaris*) library_names_spec='$libname$shrext' ;; sunos4*) library_names_spec='$libname$shrext$versuffix' ;; sysv4 | sysv4.3*) library_names_spec='$libname$shrext' ;; sysv4*MP*) library_names_spec='$libname$shrext' ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) library_names_spec='$libname$shrext' ;; tpf*) library_names_spec='$libname$shrext' ;; uts4*) library_names_spec='$libname$shrext' ;; esac sed_quote_subst='s/\(["`$\\]\)/\\\1/g' escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` shlibext=`echo "$shrext" | sed -e 's,^\.,,'` escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: libuser-0.60~dfsg/TODO0000644000175000017500000000324012226342567014572 0ustar tzafrirtzafrirEasy: * Make krb5 module return a suitable error when it's only passed crypted passwords ("this password is already hashed -- it is of no use to me"). * Workalikes for various apps on other OSs: http://docs.sun.com/ab2/coll.40.6/REFMAN1/@Ab2PageView/169291 http://docs.sun.com/ab2/coll.40.6/REFMAN1/@Ab2PageView/64438 http://docs.sun.com/ab2/coll.40.6/REFMAN1/@Ab2PageView/64530 http://www.uwsg.iu.edu/usail/man/solaris/logins.1.html Medium: * Add the -o option to luseradd/lusermod/lgroupadd/lgroupmod (bad idea?) * Create variants of the apps that are hard-coded to use files only, for use in batch environments like post-package-install, or maybe add a --local flag, which will be interpreted as "shadow files"/"files".... * Add a shadowGroup schema file if RFC 2307bis doesn't include one, or ask Luke about adding one, and document what we expect an LDAP directory to have in order for the ldap module to not get confused (for now, that's the RFC 2307 schema + inetOrgPerson + TLS). * Make the LDAP module check the server schema for allowed object classes and attributes for new user additions and so on; right now it's kind of a crap shoot to see if the server will reject an operation due to a schema error. Hard: * Figure out how to reconcile lckpwdf() and fcntl() locking when the files being locked may not even be the system's main files. * Write a RADIUS back-end. * Write an NIS or NIS+ back-end using yppasswd.x in glibc, or maybe using the routines declared in /usr/include/rpcsvc/libnis.h * Write a libdbi or ODBC back-end. * Write a hesiod back-end. * Implement an lgpasswd command for local group administration by the group's administrators. libuser-0.60~dfsg/aclocal.m40000644000175000017500000016040212226342573015743 0ustar tzafrirtzafrir# generated automatically by aclocal 1.13.4 -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # PKG_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable pkgconfigdir as the location where a module # should install pkg-config .pc files. By default the directory is # $libdir/pkgconfig, but the default can be changed by passing # DIRECTORY. The user can override through the --with-pkgconfigdir # parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_INSTALLDIR # PKG_NOARCH_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable noarch_pkgconfigdir as the location where a # module should install arch-independent pkg-config .pc files. By # default the directory is $datadir/pkgconfig, but the default can be # changed by passing DIRECTORY. The user can override through the # --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_NOARCH_INSTALLDIR # Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.13' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.13.4], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.13.4])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # Copyright (C) 2011-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_AR([ACT-IF-FAIL]) # ------------------------- # Try to determine the archiver interface, and trigger the ar-lib wrapper # if it is needed. If the detection of archiver interface fails, run # ACT-IF-FAIL (default is to abort configure with a proper error message). AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([ar-lib])dnl AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false]) : ${AR=ar} AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface], [am_cv_ar_interface=ar AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])], [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a ]) ]) case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) m4_default([$1], [AC_MSG_ERROR([could not determine $AR interface])]) ;; esac AC_SUBST([AR])dnl ]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each '.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_CC_C_O # -------------- # Like AC_PROG_CC_C_O, but changed for automake. AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o if test "$am_t" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi dnl Make sure AC_PROG_CC is never called again, or it will override our dnl setting of CC. m4_define([AC_PROG_CC], [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # --------------------------------------------------------------------------- # Adds support for distributing Python modules and packages. To # install modules, copy them to $(pythondir), using the python_PYTHON # automake variable. To install a package with the same name as the # automake package, install to $(pkgpythondir), or use the # pkgpython_PYTHON automake variable. # # The variables $(pyexecdir) and $(pkgpyexecdir) are provided as # locations to install python extension modules (shared libraries). # Another macro is required to find the appropriate flags to compile # extension modules. # # If your package is configured with a different prefix to python, # users will have to add the install directory to the PYTHONPATH # environment variable, or create a .pth file (see the python # documentation for details). # # If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will # cause an error if the version of python installed on the system # doesn't meet the requirement. MINIMUM-VERSION should consist of # numbers and dots only. AC_DEFUN([AM_PATH_PYTHON], [ dnl Find a Python interpreter. Python versions prior to 2.0 are not dnl supported. (2.0 was released on October 16, 2000). m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 dnl python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0]) AC_ARG_VAR([PYTHON], [the Python interpreter]) m4_if([$1],[],[ dnl No version check is needed. # Find any Python interpreter. if test -z "$PYTHON"; then AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) fi am_display_PYTHON=python ], [ dnl A version check is needed. if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. AC_MSG_CHECKING([whether $PYTHON version is >= $1]) AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]) AC_MSG_ERROR([Python interpreter is too old])]) am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. AC_CACHE_CHECK([for a Python interpreter with version >= $1], [am_cv_pathless_PYTHON],[ for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do test "$am_cv_pathless_PYTHON" = none && break AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) done]) # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. if test "$am_cv_pathless_PYTHON" = none; then PYTHON=: else AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) fi am_display_PYTHON=$am_cv_pathless_PYTHON fi ]) if test "$PYTHON" = :; then dnl Run any user-specified action, or abort. m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) else dnl Query Python for its version number. Getting [:3] seems to be dnl the best way to do this; it's what "site.py" does in the standard dnl library. AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`]) AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) dnl Use the values of $prefix and $exec_prefix for the corresponding dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made dnl distinct variables so they can be overridden if need be. However, dnl general consensus is that you shouldn't need this ability. AC_SUBST([PYTHON_PREFIX], ['${prefix}']) AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) dnl At times (like when building shared libraries) you may want dnl to know which OS platform Python thinks this is. AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`]) AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) # Just factor out some code duplication. am_python_setup_sysconfig="\ import sys # Prefer sysconfig over distutils.sysconfig, for better compatibility # with python 3.x. See automake bug#10227. try: import sysconfig except ImportError: can_use_sysconfig = 0 else: can_use_sysconfig = 1 # Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs: # try: from platform import python_implementation if python_implementation() == 'CPython' and sys.version[[:3]] == '2.7': can_use_sysconfig = 0 except ImportError: pass" dnl Set up 4 directories: dnl pythondir -- where to install python scripts. This is the dnl site-packages directory, not the python standard library dnl directory like in previous automake betas. This behavior dnl is more consistent with lispdir.m4 for example. dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON script directory], [am_cv_python_pythondir], [if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pythondir], [$am_cv_python_pythondir]) dnl pkgpythondir -- $PACKAGE directory under pythondir. Was dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is dnl more consistent with the rest of automake. AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) dnl pyexecdir -- directory for installing python extension modules dnl (shared libraries) dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], [am_cv_python_pyexecdir], [if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) dnl Run any user-specified action. $2 fi ]) # AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) # --------------------------------------------------------------------------- # Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. # Run ACTION-IF-FALSE otherwise. # This test uses sys.hexversion instead of the string equivalent (first # word of sys.version), in order to cope with versions such as 2.2c1. # This supports Python 2.0 or higher. (2.0 was released on October 16, 2000). AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]] sys.exit(sys.hexversion < minverhex)" AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/gettext.m4]) m4_include([m4/gtk-doc.m4]) m4_include([m4/iconv.m4]) m4_include([m4/intlmacosx.m4]) m4_include([m4/lib-ld.m4]) m4_include([m4/lib-link.m4]) m4_include([m4/lib-prefix.m4]) m4_include([m4/libtool.m4]) m4_include([m4/ltoptions.m4]) m4_include([m4/ltsugar.m4]) m4_include([m4/ltversion.m4]) m4_include([m4/lt~obsolete.m4]) m4_include([m4/nls.m4]) m4_include([m4/po.m4]) m4_include([m4/progtest.m4]) libuser-0.60~dfsg/ABOUT-NLS0000644000175000017500000026713312226342570015340 0ustar tzafrirtzafrir1 Notes on the Free Translation Project *************************************** Free software is going international! The Free Translation Project is a way to get maintainers of free software, translators, and users all together, so that free software will gradually become able to speak many languages. A few packages already provide translations for their messages. If you found this `ABOUT-NLS' file inside a distribution, you may assume that the distributed package does use GNU `gettext' internally, itself available at your nearest GNU archive site. But you do _not_ need to install GNU `gettext' prior to configuring, installing or using this package with messages translated. Installers will find here some useful hints. These notes also explain how users should proceed for getting the programs to use the available translations. They tell how people wanting to contribute and work on translations can contact the appropriate team. 1.1 INSTALL Matters =================== Some packages are "localizable" when properly installed; the programs they contain can be made to speak your own native language. Most such packages use GNU `gettext'. Other packages have their own ways to internationalization, predating GNU `gettext'. By default, this package will be installed to allow translation of messages. It will automatically detect whether the system already provides the GNU `gettext' functions. Installers may use special options at configuration time for changing the default behaviour. The command: ./configure --disable-nls will _totally_ disable translation of messages. When you already have GNU `gettext' installed on your system and run configure without an option for your new package, `configure' will probably detect the previously built and installed `libintl' library and will decide to use it. If not, you may have to to use the `--with-libintl-prefix' option to tell `configure' where to look for it. Internationalized packages usually have many `po/LL.po' files, where LL gives an ISO 639 two-letter code identifying the language. Unless translations have been forbidden at `configure' time by using the `--disable-nls' switch, all available translations are installed together with the package. However, the environment variable `LINGUAS' may be set, prior to configuration, to limit the installed set. `LINGUAS' should then contain a space separated list of two-letter codes, stating which languages are allowed. 1.2 Using This Package ====================== As a user, if your language has been installed for this package, you only have to set the `LANG' environment variable to the appropriate `LL_CC' combination. If you happen to have the `LC_ALL' or some other `LC_xxx' environment variables set, you should unset them before setting `LANG', otherwise the setting of `LANG' will not have the desired effect. Here `LL' is an ISO 639 two-letter language code, and `CC' is an ISO 3166 two-letter country code. For example, let's suppose that you speak German and live in Germany. At the shell prompt, merely execute `setenv LANG de_DE' (in `csh'), `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). This can be done from your `.login' or `.profile' file, once and for all. You might think that the country code specification is redundant. But in fact, some languages have dialects in different countries. For example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The country code serves to distinguish the dialects. The locale naming convention of `LL_CC', with `LL' denoting the language and `CC' denoting the country, is the one use on systems based on GNU libc. On other systems, some variations of this scheme are used, such as `LL' or `LL_CC.ENCODING'. You can get the list of locales supported by your system for your language by running the command `locale -a | grep '^LL''. Not all programs have translations for all languages. By default, an English message is shown in place of a nonexistent translation. If you understand other languages, you can set up a priority list of languages. This is done through a different environment variable, called `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' for the purpose of message handling, but you still need to have `LANG' set to the primary language; this is required by other parts of the system libraries. For example, some Swedish users who would rather read translations in German than English for when Swedish is not available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. Special advice for Norwegian users: The language code for Norwegian bokma*l changed from `no' to `nb' recently (in 2003). During the transition period, while some message catalogs for this language are installed under `nb' and some older ones under `no', it's recommended for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and older translations are used. In the `LANGUAGE' environment variable, but not in the `LANG' environment variable, `LL_CC' combinations can be abbreviated as `LL' to denote the language's main dialect. For example, `de' is equivalent to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' (Portuguese as spoken in Portugal) in this context. 1.3 Translating Teams ===================== For the Free Translation Project to be a success, we need interested people who like their own language and write it well, and who are also able to synergize with other translators speaking the same language. Each translation team has its own mailing list. The up-to-date list of teams can be found at the Free Translation Project's homepage, `http://translationproject.org/', in the "Teams" area. If you'd like to volunteer to _work_ at translating messages, you should become a member of the translating team for your own language. The subscribing address is _not_ the same as the list itself, it has `-request' appended. For example, speakers of Swedish can send a message to `sv-request@li.org', having this message body: subscribe Keep in mind that team members are expected to participate _actively_ in translations, or at solving translational difficulties, rather than merely lurking around. If your team does not exist yet and you want to start one, or if you are unsure about what to do or how to get started, please write to `coordinator@translationproject.org' to reach the coordinator for all translator teams. The English team is special. It works at improving and uniformizing the terminology in use. Proven linguistic skills are praised more than programming skills, here. 1.4 Available Packages ====================== Languages are not equally supported in all packages. The following matrix shows the current state of internationalization, as of June 2010. The matrix shows, in regard of each package, for which languages PO files have been submitted to translation coordination, with a translation percentage of at least 50%. Ready PO files af am an ar as ast az be be@latin bg bn_IN bs ca +--------------------------------------------------+ a2ps | [] [] | aegis | | ant-phone | | anubis | | aspell | [] [] | bash | | bfd | | bibshelf | [] | binutils | | bison | | bison-runtime | [] | bluez-pin | [] [] | bombono-dvd | | buzztard | | cflow | | clisp | | coreutils | [] [] | cpio | | cppi | | cpplib | [] | cryptsetup | | dfarc | | dialog | [] [] | dico | | diffutils | [] | dink | | doodle | | e2fsprogs | [] | enscript | [] | exif | | fetchmail | [] | findutils | [] | flex | [] | freedink | | gas | | gawk | [] [] | gcal | [] | gcc | | gettext-examples | [] [] [] [] | gettext-runtime | [] [] | gettext-tools | [] [] | gip | [] | gjay | | gliv | [] | glunarclock | [] [] | gnubiff | | gnucash | [] | gnuedu | | gnulib | | gnunet | | gnunet-gtk | | gnutls | | gold | | gpe-aerial | | gpe-beam | | gpe-bluetooth | | gpe-calendar | | gpe-clock | [] | gpe-conf | | gpe-contacts | | gpe-edit | | gpe-filemanager | | gpe-go | | gpe-login | | gpe-ownerinfo | [] | gpe-package | | gpe-sketchbook | | gpe-su | [] | gpe-taskmanager | [] | gpe-timesheet | [] | gpe-today | [] | gpe-todo | | gphoto2 | | gprof | [] | gpsdrive | | gramadoir | | grep | | grub | [] [] | gsasl | | gss | | gst-plugins-bad | [] | gst-plugins-base | [] | gst-plugins-good | [] | gst-plugins-ugly | [] | gstreamer | [] [] [] | gtick | | gtkam | [] | gtkorphan | [] | gtkspell | [] [] [] | gutenprint | | hello | [] | help2man | | hylafax | | idutils | | indent | [] [] | iso_15924 | | iso_3166 | [] [] [] [] [] [] [] | iso_3166_2 | | iso_4217 | | iso_639 | [] [] [] [] | iso_639_3 | | jwhois | | kbd | | keytouch | [] | keytouch-editor | | keytouch-keyboa... | [] | klavaro | [] | latrine | | ld | [] | leafpad | [] [] | libc | [] [] | libexif | () | libextractor | | libgnutls | | libgpewidget | | libgpg-error | | libgphoto2 | | libgphoto2_port | | libgsasl | | libiconv | [] | libidn | | lifelines | | liferea | [] [] | lilypond | | linkdr | [] | lordsawar | | lprng | | lynx | [] | m4 | | mailfromd | | mailutils | | make | | man-db | | man-db-manpages | | minicom | | mkisofs | | myserver | | nano | [] [] | opcodes | | parted | | pies | | popt | | psmisc | | pspp | [] | pwdutils | | radius | [] | recode | [] [] | rosegarden | | rpm | | rush | | sarg | | screem | | scrollkeeper | [] [] [] | sed | [] [] | sharutils | [] [] | shishi | | skencil | | solfege | | solfege-manual | | soundtracker | | sp | | sysstat | | tar | [] | texinfo | | tin | | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] | vice | | vmm | | vorbis-tools | | wastesedge | | wdiff | | wget | [] [] | wyslij-po | | xchat | [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] | +--------------------------------------------------+ af am an ar as ast az be be@latin bg bn_IN bs ca 6 0 1 2 3 19 1 10 3 28 3 1 38 crh cs da de el en en_GB en_ZA eo es et eu fa +-------------------------------------------------+ a2ps | [] [] [] [] [] [] [] | aegis | [] [] [] | ant-phone | [] () | anubis | [] [] | aspell | [] [] [] [] [] | bash | [] [] [] | bfd | [] | bibshelf | [] [] [] | binutils | [] | bison | [] [] | bison-runtime | [] [] [] [] | bluez-pin | [] [] [] [] [] [] | bombono-dvd | [] | buzztard | [] [] [] | cflow | [] [] | clisp | [] [] [] [] | coreutils | [] [] [] [] | cpio | | cppi | | cpplib | [] [] [] | cryptsetup | [] | dfarc | [] [] [] | dialog | [] [] [] [] [] | dico | | diffutils | [] [] [] [] [] [] | dink | [] [] [] | doodle | [] | e2fsprogs | [] [] [] | enscript | [] [] [] | exif | () [] [] | fetchmail | [] [] () [] [] [] | findutils | [] [] [] | flex | [] [] | freedink | [] [] [] | gas | [] | gawk | [] [] [] | gcal | [] | gcc | [] [] | gettext-examples | [] [] [] [] | gettext-runtime | [] [] [] [] | gettext-tools | [] [] [] | gip | [] [] [] [] | gjay | [] | gliv | [] [] [] | glunarclock | [] [] | gnubiff | () | gnucash | [] () () () () | gnuedu | [] [] | gnulib | [] [] | gnunet | | gnunet-gtk | [] | gnutls | [] [] | gold | [] | gpe-aerial | [] [] [] [] | gpe-beam | [] [] [] [] | gpe-bluetooth | [] [] | gpe-calendar | [] | gpe-clock | [] [] [] [] | gpe-conf | [] [] [] | gpe-contacts | [] [] [] | gpe-edit | [] [] | gpe-filemanager | [] [] [] | gpe-go | [] [] [] [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] [] | gpe-package | [] [] [] | gpe-sketchbook | [] [] [] [] | gpe-su | [] [] [] [] | gpe-taskmanager | [] [] [] [] | gpe-timesheet | [] [] [] [] | gpe-today | [] [] [] [] | gpe-todo | [] [] [] | gphoto2 | [] [] () [] [] [] | gprof | [] [] [] | gpsdrive | [] [] [] | gramadoir | [] [] [] | grep | [] | grub | [] [] | gsasl | [] | gss | | gst-plugins-bad | [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] () [] | gtkam | [] [] () [] [] | gtkorphan | [] [] [] [] | gtkspell | [] [] [] [] [] [] [] | gutenprint | [] [] [] | hello | [] [] [] [] | help2man | [] | hylafax | [] [] | idutils | [] [] | indent | [] [] [] [] [] [] [] | iso_15924 | [] () [] [] | iso_3166 | [] [] [] [] () [] [] [] () | iso_3166_2 | () | iso_4217 | [] [] [] () [] [] | iso_639 | [] [] [] [] () [] [] | iso_639_3 | [] | jwhois | [] | kbd | [] [] [] [] [] | keytouch | [] [] | keytouch-editor | [] [] | keytouch-keyboa... | [] | klavaro | [] [] [] [] | latrine | [] () | ld | [] [] | leafpad | [] [] [] [] [] [] | libc | [] [] [] [] | libexif | [] [] () | libextractor | | libgnutls | [] | libgpewidget | [] [] | libgpg-error | [] [] | libgphoto2 | [] () | libgphoto2_port | [] () [] | libgsasl | | libiconv | [] [] [] [] [] | libidn | [] [] [] | lifelines | [] () | liferea | [] [] [] [] [] | lilypond | [] [] [] | linkdr | [] [] [] | lordsawar | [] | lprng | | lynx | [] [] [] [] | m4 | [] [] [] [] | mailfromd | | mailutils | [] | make | [] [] [] | man-db | | man-db-manpages | | minicom | [] [] [] [] | mkisofs | | myserver | | nano | [] [] [] | opcodes | [] [] | parted | [] [] | pies | | popt | [] [] [] [] [] | psmisc | [] [] [] | pspp | [] | pwdutils | [] | radius | [] | recode | [] [] [] [] [] [] | rosegarden | () () () | rpm | [] [] [] | rush | | sarg | | screem | | scrollkeeper | [] [] [] [] [] | sed | [] [] [] [] [] [] | sharutils | [] [] [] [] | shishi | | skencil | [] () [] | solfege | [] [] [] | solfege-manual | [] [] | soundtracker | [] [] [] | sp | [] | sysstat | [] [] [] | tar | [] [] [] [] | texinfo | [] [] [] | tin | [] [] | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] [] [] [] | vice | () () | vmm | [] | vorbis-tools | [] [] | wastesedge | [] | wdiff | [] [] | wget | [] [] [] | wyslij-po | | xchat | [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] [] | +-------------------------------------------------+ crh cs da de el en en_GB en_ZA eo es et eu fa 5 64 105 117 18 1 8 0 28 89 18 19 0 fi fr ga gl gu he hi hr hu hy id is it ja ka kn +----------------------------------------------------+ a2ps | [] [] [] [] | aegis | [] [] | ant-phone | [] [] | anubis | [] [] [] [] | aspell | [] [] [] [] | bash | [] [] [] [] | bfd | [] [] [] | bibshelf | [] [] [] [] [] | binutils | [] [] [] | bison | [] [] [] [] | bison-runtime | [] [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] [] | bombono-dvd | [] | buzztard | [] | cflow | [] [] [] | clisp | [] | coreutils | [] [] [] [] [] | cpio | [] [] [] [] | cppi | [] [] | cpplib | [] [] [] | cryptsetup | [] [] [] | dfarc | [] [] [] | dialog | [] [] [] [] [] [] [] | dico | | diffutils | [] [] [] [] [] [] [] [] [] | dink | [] | doodle | [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] | exif | [] [] [] [] [] [] | fetchmail | [] [] [] [] | findutils | [] [] [] [] [] [] | flex | [] [] [] | freedink | [] [] [] | gas | [] [] | gawk | [] [] [] [] () [] | gcal | [] | gcc | [] | gettext-examples | [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] | gettext-tools | [] [] [] [] | gip | [] [] [] [] [] [] | gjay | [] | gliv | [] () | glunarclock | [] [] [] [] | gnubiff | () [] () | gnucash | () () () () () [] | gnuedu | [] [] | gnulib | [] [] [] [] [] [] | gnunet | | gnunet-gtk | [] | gnutls | [] [] | gold | [] [] | gpe-aerial | [] [] [] | gpe-beam | [] [] [] [] | gpe-bluetooth | [] [] [] [] | gpe-calendar | [] [] | gpe-clock | [] [] [] [] [] | gpe-conf | [] [] [] [] | gpe-contacts | [] [] [] [] | gpe-edit | [] [] [] | gpe-filemanager | [] [] [] [] | gpe-go | [] [] [] [] [] | gpe-login | [] [] [] | gpe-ownerinfo | [] [] [] [] [] | gpe-package | [] [] [] | gpe-sketchbook | [] [] [] [] | gpe-su | [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] | gpe-timesheet | [] [] [] [] [] | gpe-today | [] [] [] [] [] [] [] | gpe-todo | [] [] [] | gphoto2 | [] [] [] [] [] [] | gprof | [] [] [] [] | gpsdrive | [] [] [] | gramadoir | [] [] [] | grep | [] [] | grub | [] [] [] [] | gsasl | [] [] [] [] [] | gss | [] [] [] [] [] | gst-plugins-bad | [] [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] [] [] [] [] | gtkam | [] [] [] [] [] | gtkorphan | [] [] [] | gtkspell | [] [] [] [] [] [] [] [] [] | gutenprint | [] [] [] [] | hello | [] [] [] | help2man | [] [] | hylafax | [] | idutils | [] [] [] [] [] [] | indent | [] [] [] [] [] [] [] [] | iso_15924 | [] () [] [] | iso_3166 | [] () [] [] [] [] [] [] [] [] [] [] | iso_3166_2 | () [] [] [] | iso_4217 | [] () [] [] [] [] | iso_639 | [] () [] [] [] [] [] [] [] | iso_639_3 | () [] [] | jwhois | [] [] [] [] [] | kbd | [] [] | keytouch | [] [] [] [] [] [] | keytouch-editor | [] [] [] [] [] | keytouch-keyboa... | [] [] [] [] [] | klavaro | [] [] | latrine | [] [] [] | ld | [] [] [] [] | leafpad | [] [] [] [] [] [] [] () | libc | [] [] [] [] [] | libexif | [] | libextractor | | libgnutls | [] [] | libgpewidget | [] [] [] [] | libgpg-error | [] [] | libgphoto2 | [] [] [] | libgphoto2_port | [] [] [] | libgsasl | [] [] [] [] [] | libiconv | [] [] [] [] [] [] | libidn | [] [] [] [] | lifelines | () | liferea | [] [] [] [] | lilypond | [] [] | linkdr | [] [] [] [] [] | lordsawar | | lprng | [] | lynx | [] [] [] [] [] | m4 | [] [] [] [] [] [] | mailfromd | | mailutils | [] [] | make | [] [] [] [] [] [] [] [] [] | man-db | [] [] | man-db-manpages | [] | minicom | [] [] [] [] [] | mkisofs | [] [] [] [] | myserver | | nano | [] [] [] [] [] [] | opcodes | [] [] [] [] | parted | [] [] [] [] | pies | | popt | [] [] [] [] [] [] [] [] [] | psmisc | [] [] [] | pspp | | pwdutils | [] [] | radius | [] [] | recode | [] [] [] [] [] [] [] [] | rosegarden | () () () () () | rpm | [] [] | rush | | sarg | [] | screem | [] [] | scrollkeeper | [] [] [] [] | sed | [] [] [] [] [] [] [] [] | sharutils | [] [] [] [] [] [] [] | shishi | [] | skencil | [] | solfege | [] [] [] [] | solfege-manual | [] [] | soundtracker | [] [] | sp | [] () | sysstat | [] [] [] [] [] | tar | [] [] [] [] [] [] [] | texinfo | [] [] [] [] | tin | [] | unicode-han-tra... | | unicode-transla... | [] [] | util-linux-ng | [] [] [] [] [] [] | vice | () () () | vmm | [] | vorbis-tools | [] | wastesedge | () () | wdiff | [] | wget | [] [] [] [] [] [] [] [] | wyslij-po | [] [] [] | xchat | [] [] [] [] [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] [] | +----------------------------------------------------+ fi fr ga gl gu he hi hr hu hy id is it ja ka kn 105 121 53 20 4 8 3 5 53 2 120 5 84 67 0 4 ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne +-----------------------------------------------+ a2ps | [] | aegis | | ant-phone | | anubis | [] [] | aspell | [] | bash | | bfd | | bibshelf | [] [] | binutils | | bison | [] | bison-runtime | [] [] [] [] [] | bluez-pin | [] [] [] [] [] | bombono-dvd | | buzztard | | cflow | | clisp | | coreutils | [] | cpio | | cppi | | cpplib | | cryptsetup | | dfarc | [] | dialog | [] [] [] [] [] | dico | | diffutils | [] [] | dink | | doodle | | e2fsprogs | | enscript | | exif | [] | fetchmail | | findutils | | flex | | freedink | [] | gas | | gawk | | gcal | | gcc | | gettext-examples | [] [] [] [] | gettext-runtime | [] | gettext-tools | [] | gip | [] [] | gjay | | gliv | | glunarclock | [] | gnubiff | | gnucash | () () () () | gnuedu | | gnulib | | gnunet | | gnunet-gtk | | gnutls | [] | gold | | gpe-aerial | [] | gpe-beam | [] | gpe-bluetooth | [] [] | gpe-calendar | [] | gpe-clock | [] [] [] [] [] | gpe-conf | [] [] | gpe-contacts | [] [] | gpe-edit | [] | gpe-filemanager | [] [] | gpe-go | [] [] [] | gpe-login | [] | gpe-ownerinfo | [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] | gpe-su | [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] [] | gpe-timesheet | [] [] | gpe-today | [] [] [] [] | gpe-todo | [] [] | gphoto2 | | gprof | [] | gpsdrive | | gramadoir | | grep | | grub | | gsasl | | gss | | gst-plugins-bad | [] [] [] [] | gst-plugins-base | [] [] | gst-plugins-good | [] [] | gst-plugins-ugly | [] [] [] [] [] | gstreamer | | gtick | | gtkam | [] | gtkorphan | [] [] | gtkspell | [] [] [] [] [] [] [] | gutenprint | | hello | [] [] [] | help2man | | hylafax | | idutils | | indent | | iso_15924 | [] [] | iso_3166 | [] [] () [] [] [] [] [] | iso_3166_2 | | iso_4217 | [] [] | iso_639 | [] [] | iso_639_3 | [] | jwhois | [] | kbd | | keytouch | [] | keytouch-editor | [] | keytouch-keyboa... | [] | klavaro | [] | latrine | [] | ld | | leafpad | [] [] [] | libc | [] | libexif | | libextractor | | libgnutls | [] | libgpewidget | [] [] | libgpg-error | | libgphoto2 | | libgphoto2_port | | libgsasl | | libiconv | | libidn | | lifelines | | liferea | | lilypond | | linkdr | | lordsawar | | lprng | | lynx | | m4 | | mailfromd | | mailutils | | make | [] | man-db | | man-db-manpages | | minicom | [] | mkisofs | | myserver | | nano | [] [] | opcodes | | parted | | pies | | popt | [] [] [] | psmisc | | pspp | | pwdutils | | radius | | recode | | rosegarden | | rpm | | rush | | sarg | | screem | | scrollkeeper | [] [] | sed | | sharutils | | shishi | | skencil | | solfege | [] | solfege-manual | | soundtracker | | sp | | sysstat | [] | tar | [] | texinfo | [] | tin | | unicode-han-tra... | | unicode-transla... | | util-linux-ng | | vice | | vmm | | vorbis-tools | | wastesedge | | wdiff | | wget | [] | wyslij-po | | xchat | [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +-----------------------------------------------+ ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne 20 5 10 1 13 48 4 2 2 4 24 10 20 3 1 nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr +---------------------------------------------------+ a2ps | [] [] [] [] [] [] [] [] | aegis | [] [] [] | ant-phone | [] [] | anubis | [] [] [] | aspell | [] [] [] [] [] | bash | [] [] | bfd | [] | bibshelf | [] [] | binutils | [] [] | bison | [] [] [] | bison-runtime | [] [] [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] [] | bombono-dvd | [] () | buzztard | [] [] | cflow | [] | clisp | [] [] | coreutils | [] [] [] [] [] [] | cpio | [] [] [] | cppi | [] | cpplib | [] | cryptsetup | [] | dfarc | [] | dialog | [] [] [] [] | dico | [] | diffutils | [] [] [] [] [] [] | dink | () | doodle | [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] [] | exif | [] [] [] () [] | fetchmail | [] [] [] [] | findutils | [] [] [] [] [] | flex | [] [] [] [] [] | freedink | [] [] | gas | | gawk | [] [] [] [] | gcal | | gcc | [] | gettext-examples | [] [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] [] [] [] | gettext-tools | [] [] [] [] [] [] | gip | [] [] [] [] [] | gjay | | gliv | [] [] [] [] [] [] | glunarclock | [] [] [] [] [] | gnubiff | [] () | gnucash | [] () () () | gnuedu | [] | gnulib | [] [] [] [] | gnunet | | gnunet-gtk | | gnutls | [] [] | gold | | gpe-aerial | [] [] [] [] [] [] [] | gpe-beam | [] [] [] [] [] [] [] | gpe-bluetooth | [] [] | gpe-calendar | [] [] [] [] | gpe-clock | [] [] [] [] [] [] [] [] | gpe-conf | [] [] [] [] [] [] [] | gpe-contacts | [] [] [] [] [] | gpe-edit | [] [] [] | gpe-filemanager | [] [] [] | gpe-go | [] [] [] [] [] [] [] [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] [] [] [] [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] [] [] [] [] [] | gpe-su | [] [] [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] [] [] [] | gpe-timesheet | [] [] [] [] [] [] [] [] | gpe-today | [] [] [] [] [] [] [] [] | gpe-todo | [] [] [] [] [] | gphoto2 | [] [] [] [] [] [] [] [] | gprof | [] [] [] | gpsdrive | [] [] | gramadoir | [] [] | grep | [] [] [] [] | grub | [] [] [] | gsasl | [] [] [] [] | gss | [] [] [] | gst-plugins-bad | [] [] [] [] [] [] | gst-plugins-base | [] [] [] [] [] | gst-plugins-good | [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] [] [] | gstreamer | [] [] [] [] [] | gtick | [] [] [] | gtkam | [] [] [] [] [] [] | gtkorphan | [] | gtkspell | [] [] [] [] [] [] [] [] [] [] | gutenprint | [] [] | hello | [] [] [] [] | help2man | [] [] | hylafax | [] | idutils | [] [] [] [] [] | indent | [] [] [] [] [] [] [] | iso_15924 | [] [] [] [] | iso_3166 | [] [] [] [] [] () [] [] [] [] [] [] [] [] | iso_3166_2 | [] [] [] | iso_4217 | [] [] [] [] [] [] [] [] | iso_639 | [] [] [] [] [] [] [] [] [] | iso_639_3 | [] [] | jwhois | [] [] [] [] | kbd | [] [] [] | keytouch | [] [] [] | keytouch-editor | [] [] [] | keytouch-keyboa... | [] [] [] | klavaro | [] [] | latrine | [] [] | ld | | leafpad | [] [] [] [] [] [] [] [] [] | libc | [] [] [] [] | libexif | [] [] () [] | libextractor | | libgnutls | [] [] | libgpewidget | [] [] [] | libgpg-error | [] [] | libgphoto2 | [] [] | libgphoto2_port | [] [] [] [] [] | libgsasl | [] [] [] [] [] | libiconv | [] [] [] [] [] | libidn | [] [] | lifelines | [] [] | liferea | [] [] [] [] [] () () [] | lilypond | [] | linkdr | [] [] [] | lordsawar | | lprng | [] | lynx | [] [] [] | m4 | [] [] [] [] [] | mailfromd | [] | mailutils | [] | make | [] [] [] [] | man-db | [] [] [] | man-db-manpages | [] [] [] | minicom | [] [] [] [] | mkisofs | [] [] [] | myserver | | nano | [] [] [] [] | opcodes | [] [] | parted | [] [] [] [] | pies | [] | popt | [] [] [] [] | psmisc | [] [] [] | pspp | [] [] | pwdutils | [] | radius | [] [] [] | recode | [] [] [] [] [] [] [] [] | rosegarden | () () | rpm | [] [] [] | rush | [] [] | sarg | | screem | | scrollkeeper | [] [] [] [] [] [] [] [] | sed | [] [] [] [] [] [] [] [] [] | sharutils | [] [] [] [] | shishi | [] | skencil | [] [] | solfege | [] [] [] [] | solfege-manual | [] [] [] | soundtracker | [] | sp | | sysstat | [] [] [] [] | tar | [] [] [] [] | texinfo | [] [] [] [] | tin | [] | unicode-han-tra... | | unicode-transla... | | util-linux-ng | [] [] [] [] [] | vice | [] | vmm | [] | vorbis-tools | [] [] | wastesedge | [] | wdiff | [] [] | wget | [] [] [] [] [] [] [] | wyslij-po | [] [] [] | xchat | [] [] [] [] [] [] [] [] [] | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | +---------------------------------------------------+ nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr 135 10 4 7 105 1 29 62 47 91 3 54 46 9 37 sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW +---------------------------------------------------+ a2ps | [] [] [] [] [] | 27 aegis | [] | 9 ant-phone | [] [] [] [] | 9 anubis | [] [] [] [] | 15 aspell | [] [] [] | 20 bash | [] [] [] | 12 bfd | [] | 6 bibshelf | [] [] [] | 16 binutils | [] [] | 8 bison | [] [] | 12 bison-runtime | [] [] [] [] [] [] | 29 bluez-pin | [] [] [] [] [] [] [] [] | 37 bombono-dvd | [] | 4 buzztard | [] | 7 cflow | [] [] [] | 9 clisp | | 10 coreutils | [] [] [] [] | 22 cpio | [] [] [] [] [] [] | 13 cppi | [] [] | 5 cpplib | [] [] [] [] [] [] | 14 cryptsetup | [] [] | 7 dfarc | [] | 9 dialog | [] [] [] [] [] [] [] | 30 dico | [] | 2 diffutils | [] [] [] [] [] [] | 30 dink | | 4 doodle | [] [] | 7 e2fsprogs | [] [] [] | 11 enscript | [] [] [] [] | 17 exif | [] [] [] | 16 fetchmail | [] [] [] | 17 findutils | [] [] [] [] [] | 20 flex | [] [] [] [] | 15 freedink | [] | 10 gas | [] | 4 gawk | [] [] [] [] | 18 gcal | [] [] | 5 gcc | [] [] [] | 7 gettext-examples | [] [] [] [] [] [] [] | 34 gettext-runtime | [] [] [] [] [] [] [] | 29 gettext-tools | [] [] [] [] [] [] | 22 gip | [] [] [] [] | 22 gjay | [] | 3 gliv | [] [] [] | 14 glunarclock | [] [] [] [] [] | 19 gnubiff | [] [] | 4 gnucash | () [] () [] () | 10 gnuedu | [] [] | 7 gnulib | [] [] [] [] | 16 gnunet | [] | 1 gnunet-gtk | [] [] [] | 5 gnutls | [] [] [] | 10 gold | [] | 4 gpe-aerial | [] [] [] | 18 gpe-beam | [] [] [] | 19 gpe-bluetooth | [] [] [] | 13 gpe-calendar | [] [] [] [] | 12 gpe-clock | [] [] [] [] [] | 28 gpe-conf | [] [] [] [] | 20 gpe-contacts | [] [] [] | 17 gpe-edit | [] [] [] | 12 gpe-filemanager | [] [] [] [] | 16 gpe-go | [] [] [] [] [] | 25 gpe-login | [] [] [] | 11 gpe-ownerinfo | [] [] [] [] [] | 25 gpe-package | [] [] [] | 13 gpe-sketchbook | [] [] [] | 20 gpe-su | [] [] [] [] [] | 30 gpe-taskmanager | [] [] [] [] [] | 29 gpe-timesheet | [] [] [] [] [] | 25 gpe-today | [] [] [] [] [] [] | 30 gpe-todo | [] [] [] [] | 17 gphoto2 | [] [] [] [] [] | 24 gprof | [] [] [] | 15 gpsdrive | [] [] [] | 11 gramadoir | [] [] [] | 11 grep | [] [] [] | 10 grub | [] [] [] | 14 gsasl | [] [] [] [] | 14 gss | [] [] [] | 11 gst-plugins-bad | [] [] [] [] | 26 gst-plugins-base | [] [] [] [] [] | 24 gst-plugins-good | [] [] [] [] | 24 gst-plugins-ugly | [] [] [] [] [] | 29 gstreamer | [] [] [] [] | 22 gtick | [] [] [] | 13 gtkam | [] [] [] | 20 gtkorphan | [] [] [] | 14 gtkspell | [] [] [] [] [] [] [] [] [] | 45 gutenprint | [] | 10 hello | [] [] [] [] [] [] | 21 help2man | [] [] | 7 hylafax | [] | 5 idutils | [] [] [] [] | 17 indent | [] [] [] [] [] [] | 30 iso_15924 | () [] () [] [] | 16 iso_3166 | [] [] () [] [] () [] [] [] () | 53 iso_3166_2 | () [] () [] | 9 iso_4217 | [] () [] [] () [] [] | 26 iso_639 | [] [] [] () [] () [] [] [] [] | 38 iso_639_3 | [] () | 8 jwhois | [] [] [] [] [] | 16 kbd | [] [] [] [] [] | 15 keytouch | [] [] [] | 16 keytouch-editor | [] [] [] | 14 keytouch-keyboa... | [] [] [] | 14 klavaro | [] | 11 latrine | [] [] [] | 10 ld | [] [] [] [] | 11 leafpad | [] [] [] [] [] [] | 33 libc | [] [] [] [] [] | 21 libexif | [] () | 7 libextractor | [] | 1 libgnutls | [] [] [] | 9 libgpewidget | [] [] [] | 14 libgpg-error | [] [] [] | 9 libgphoto2 | [] [] | 8 libgphoto2_port | [] [] [] [] | 14 libgsasl | [] [] [] | 13 libiconv | [] [] [] [] | 21 libidn | () [] [] | 11 lifelines | [] | 4 liferea | [] [] [] | 21 lilypond | [] | 7 linkdr | [] [] [] [] [] | 17 lordsawar | | 1 lprng | [] | 3 lynx | [] [] [] [] | 17 m4 | [] [] [] [] | 19 mailfromd | [] [] | 3 mailutils | [] | 5 make | [] [] [] [] | 21 man-db | [] [] [] | 8 man-db-manpages | | 4 minicom | [] [] | 16 mkisofs | [] [] | 9 myserver | | 0 nano | [] [] [] [] | 21 opcodes | [] [] [] | 11 parted | [] [] [] [] [] | 15 pies | [] [] | 3 popt | [] [] [] [] [] [] | 27 psmisc | [] [] | 11 pspp | | 4 pwdutils | [] [] | 6 radius | [] [] | 9 recode | [] [] [] [] | 28 rosegarden | () | 0 rpm | [] [] [] | 11 rush | [] [] | 4 sarg | | 1 screem | [] | 3 scrollkeeper | [] [] [] [] [] | 27 sed | [] [] [] [] [] | 30 sharutils | [] [] [] [] [] | 22 shishi | [] | 3 skencil | [] [] | 7 solfege | [] [] [] [] | 16 solfege-manual | [] | 8 soundtracker | [] [] [] | 9 sp | [] | 3 sysstat | [] [] | 15 tar | [] [] [] [] [] [] | 23 texinfo | [] [] [] [] [] | 17 tin | | 4 unicode-han-tra... | | 0 unicode-transla... | | 2 util-linux-ng | [] [] [] [] | 20 vice | () () | 1 vmm | [] | 4 vorbis-tools | [] | 6 wastesedge | | 2 wdiff | [] [] | 7 wget | [] [] [] [] [] | 26 wyslij-po | [] [] | 8 xchat | [] [] [] [] [] [] | 36 xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | 63 xkeyboard-config | [] [] [] | 22 +---------------------------------------------------+ 85 teams sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW 178 domains 119 1 3 3 0 10 65 51 155 17 98 7 41 2618 Some counters in the preceding matrix are higher than the number of visible blocks let us expect. This is because a few extra PO files are used for implementing regional variants of languages, or language dialects. For a PO file in the matrix above to be effective, the package to which it applies should also have been internationalized and distributed as such by its maintainer. There might be an observable lag between the mere existence a PO file and its wide availability in a distribution. If June 2010 seems to be old, you may fetch a more recent copy of this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix with full percentage details can be found at `http://translationproject.org/extra/matrix.html'. 1.5 Using `gettext' in new packages =================================== If you are writing a freely available program and want to internationalize it you are welcome to use GNU `gettext' in your package. Of course you have to respect the GNU Library General Public License which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared library, whereas only free software can use `libintl' as a static library or use modified versions of `libintl'. Once the sources are changed appropriately and the setup can handle the use of `gettext' the only thing missing are the translations. The Free Translation Project is also available for packages which are not developed inside the GNU project. Therefore the information given above applies also for every other Free Software Project. Contact `coordinator@translationproject.org' to make the `.pot' files available to the translation teams.